Provides an API to input PDF files and convert to Markdown text, with some summarization options. This is useful for chunking PDF for RAG chatbots.
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
Copy the model.json.sample to model.json. In here you can modify the BaseURL to work with any OAI compatible service or use your own local models.
uvicorn main:app --host 0.0.0.0 --port 3009 --reload