revised README.md
This commit is contained in:
parent
28e6c8d611
commit
e96f23ddc8
107
README.md
107
README.md
|
@ -1,67 +1,76 @@
|
||||||
# AnkiAI
|
# AnkiAI - Automated Anki Deck Creator
|
||||||
|
|
||||||
AnkiAI is a robust system that converts images containing text into structured Anki cards using Optical Character Recognition (OCR) and OpenAI's GPT-4 language model. Users can quickly generate decks of flashcards from their images for effective study.
|
AnkiAI is a tool that leverages OCR (Optical Character Recognition) and GPT-3's powerful natural language processing capabilities to automatically generate Anki decks from images containing text.
|
||||||
|
|
||||||
## Features
|
### Overview
|
||||||
- Converts image content to textual content using OCR.
|
|
||||||
- Uses OpenAI's GPT-4 model to structure the content into Anki decks and cards.
|
|
||||||
- Outputs the structured content as an Anki package.
|
|
||||||
|
|
||||||
## Dependencies
|
- AnkiAI is designed to streamline the process of creating Anki decks from images.
|
||||||
- genanki: Used for creating Anki decks and cards.
|
- The core idea is to use OCR to extract text from images and then use GPT-3 to transform this text into a structured Anki deck format.
|
||||||
- Pillow: Image processing library.
|
- Users can make a POST request to a Flask server endpoint with their images to receive the Anki deck (.apkg file).
|
||||||
- openai: API library for OpenAI's GPT-4 model.
|
|
||||||
- flask: Web server to host the service.
|
|
||||||
|
|
||||||
## Setup and Installation
|
### Directory Structure
|
||||||
|
|
||||||
|
- `.vscode/`: Contains configuration for VSCode debugger for Flask applications.
|
||||||
|
- `ankiai.py`: The main script that drives the creation of Anki decks from images.
|
||||||
|
- `constants.py`: Contains constant variables used across the project.
|
||||||
|
- `deck_creation.py`: Contains logic for communicating with OpenAI's API and deck creation using genanki.
|
||||||
|
- `image_processing.py`: Processes images, converting them for OCR and then performing OCR to extract text.
|
||||||
|
- `logging_config.py`: Logging configuration for the entire project.
|
||||||
|
- `server.py`: Flask server that provides an API endpoint to upload images and get back an Anki deck.
|
||||||
|
|
||||||
|
### Requirements
|
||||||
|
|
||||||
|
To run AnkiAI, you'll need to have the following dependencies installed:
|
||||||
|
|
||||||
|
```
|
||||||
|
genanki==0.8.0
|
||||||
|
Pillow
|
||||||
|
openai
|
||||||
|
flask
|
||||||
|
```
|
||||||
|
|
||||||
|
You can install these via `pip` using the `requirements.txt` file:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
pip install -r requirements.txt
|
||||||
|
```
|
||||||
|
|
||||||
|
### How to Run
|
||||||
|
|
||||||
|
1. **Environment Variables**: Make sure to set the `OPENAI_API_KEY` environment variable to your OpenAI API key.
|
||||||
|
|
||||||
|
2. **Run the Flask server**:
|
||||||
|
|
||||||
1. Clone this repository:
|
|
||||||
```bash
|
```bash
|
||||||
git clone https://git.rudefox.io/bj/anki-json2ankicards.git
|
python server.py
|
||||||
cd json2ankicards
|
|
||||||
```
|
```
|
||||||
|
|
||||||
2. Set up a virtual environment and activate it:
|
This will start the Flask server. You can then make a POST request to `http://localhost:5000/deck-from-images` with your images to get an Anki deck.
|
||||||
|
|
||||||
|
3. **Run Directly**:
|
||||||
|
|
||||||
|
If you prefer not to use the Flask server, you can also run `ankiai.py` directly:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
python3 -m venv venv
|
python ankiai.py <directory_path_containing_images>
|
||||||
source venv/bin/activate
|
|
||||||
```
|
```
|
||||||
|
|
||||||
3. Install the required packages:
|
### How to Debug (VSCode Users)
|
||||||
```bash
|
|
||||||
pip install -r requirements.txt
|
|
||||||
```
|
|
||||||
|
|
||||||
4. Set up the OpenAI API key:
|
- Open the project in VSCode.
|
||||||
```bash
|
- Set up your breakpoints.
|
||||||
export OPENAI_API_KEY=your_openai_api_key
|
- Use the VSCode debugger and select "Python: Flask" to start debugging the Flask server.
|
||||||
```
|
|
||||||
|
|
||||||
5. Run the server:
|
### Important Notes
|
||||||
```bash
|
|
||||||
python server.py
|
|
||||||
```
|
|
||||||
|
|
||||||
## Usage
|
- **API Key**: For the project to work, it is essential to have the `OPENAI_API_KEY` environment variable set.
|
||||||
|
- **Image Types**: Currently, the image processing module supports PNG, JPG, and JPEG formats.
|
||||||
|
- **Output**: The output `.apkg` file (Anki package file) will be named `out.apkg`.
|
||||||
|
|
||||||
1. Start the server as mentioned above.
|
### Acknowledgements
|
||||||
|
|
||||||
2. Use a tool like [Postman](https://www.postman.com/) or `curl` to send images to `http://localhost:5000/deck-from-images` as a multi-part POST request.
|
This project heavily relies on the `openai` library for processing and the `genanki` library for deck generation.
|
||||||
|
|
||||||
3. The server will respond with a downloadable Anki package. Import this into your Anki app and start studying!
|
### Contributions
|
||||||
|
|
||||||
## Modules
|
Contributions are always welcome. Please create a new issue or a pull request for any bug fixes or feature requests.
|
||||||
|
|
||||||
1. **ankiai.py**: The main module that orchestrates the flow.
|
|
||||||
2. **images2text.py**: Converts image content into text using OCR.
|
|
||||||
3. **json2deck.py**: Converts structured JSON data into an Anki package.
|
|
||||||
4. **prompt4cards.py**: Uses OpenAI to structure the content into Anki decks and cards.
|
|
||||||
5. **server.py**: Flask server to host the service.
|
|
||||||
|
|
||||||
## Contributing
|
|
||||||
|
|
||||||
Contributions are welcome! Please submit a pull request or open an issue to discuss changes or fixes.
|
|
||||||
|
|
||||||
## License
|
|
||||||
|
|
||||||
[MIT License](LICENSE)
|
|
||||||
|
|
|
@ -3,16 +3,16 @@ import tempfile
|
||||||
import shutil
|
import shutil
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
from logging_config import setup_logging
|
|
||||||
from flask import Flask, request, send_from_directory, jsonify
|
from flask import Flask, request, send_from_directory, jsonify
|
||||||
from werkzeug.utils import secure_filename
|
from werkzeug.utils import secure_filename
|
||||||
from ankiai import images_to_package
|
from ankiai import images_to_package
|
||||||
from constants import IMAGE_KEY, APKG_FILE, NO_IMAGE_PART_ERROR, NO_SELECTED_FILE_ERROR, INVALID_FILENAME_ERROR
|
from constants import IMAGE_KEY, APKG_FILE, NO_IMAGE_PART_ERROR, NO_SELECTED_FILE_ERROR, INVALID_FILENAME_ERROR
|
||||||
|
|
||||||
|
|
||||||
|
from logging_config import setup_logging
|
||||||
setup_logging()
|
setup_logging()
|
||||||
|
|
||||||
|
|
||||||
from logging_config import setup_logging
|
|
||||||
app = Flask(__name__)
|
app = Flask(__name__)
|
||||||
|
|
||||||
def save_uploaded_images(images, directory):
|
def save_uploaded_images(images, directory):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user