Metadata-Version: 2.4
Name: archive-ai
Version: 1.0.0
Summary: A Django app for AI and OCR logic.
Home-page: https://github.com/debeski1/archive-ai-app
Author: Debeski
Author-email: debeski1@gmail.com
License: MIT
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Django>=3.2
Requires-Dist: requests
Requires-Dist: celery
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: summary

# Archive AI

A Django app that provides AI and OCR capabilities.

## Installation

1. Install via pip:
   ```bash
   pip install archive-ai
   ```

2. Add to `INSTALLED_APPS`:
   ```python
   INSTALLED_APPS = [
       ...
       'archive_ai',
   ]
   ```

3. Configure settings:
   ```python
   OCR_API_URL = "http://ocr-service:8000/ocr"
   LLM_API_URL = "http://llm-service:8000/v1/chat/completions"
   LLM_MODEL = "your-model-name"
   ```
