b55af1eff0
- Introduced `requirements.docker.txt` for Docker-specific dependencies. - Updated `requirements.txt` to include `psycopg[binary]` and `python-multipart`. - Enhanced test suite in `test_main_endpoints.py` to cover document CRUD operations. - Modified `docker-compose.yml` to include PostgreSQL and frontend services. - Added Nginx configuration for reverse proxying API requests. - Refactored file handling in Vue components to support new document storage backend. - Created new utility functions in `docsApi.js` for document management. - Updated configuration to support new API endpoints for document operations. - Adjusted Vite configuration to proxy API requests to the local backend.
61 lines
1.5 KiB
Bash
61 lines
1.5 KiB
Bash
# OpenAI-compatible endpoint
|
|
LLM_BASE_URL=https://api.openai.com/v1/
|
|
LLM_API_KEY=sk-your-key
|
|
|
|
# Default model for inline completions
|
|
LLM_MODEL=gpt-4.1-mini
|
|
|
|
# Pro-tier model (defaults to LLM_MODEL if unset)
|
|
PRO_LLM_MODEL=gpt-4.1
|
|
|
|
# Vision model for OCR
|
|
VLM_MODEL=gpt-4.1-mini
|
|
|
|
# API key for the FastAPI app (change in production)
|
|
API_KEY=your-secret-key-here
|
|
|
|
# Job backend
|
|
JOB_BACKEND=redis
|
|
REDIS_URL=redis://localhost:6379/0
|
|
DATABASE_URL=postgresql://llm_in_text:llm_in_text_change_me@localhost:5432/llm_in_text
|
|
DOCS_BACKEND=postgres
|
|
JOB_REDIS_PREFIX=llmtext:jobs
|
|
JOB_CONSUMER_NAME=
|
|
JOB_SHARED_TEMP_DIR=/tmp/llm-in-text-jobs
|
|
JOB_STATE_TTL_SECONDS=600
|
|
JOB_EVENT_TTL_SECONDS=600
|
|
JOB_EVENT_STREAM_MAXLEN=512
|
|
JOB_CANCEL_POLL_SECONDS=0.5
|
|
JOB_BUSY_NORMAL_THRESHOLD=0.25
|
|
JOB_BUSY_HIGH_THRESHOLD=0.75
|
|
JOB_BUSY_FULL_THRESHOLD=1.0
|
|
|
|
# Per-queue concurrency and capacity
|
|
JOB_COMPLETION_CONCURRENCY=2
|
|
JOB_COMPLETION_MAX_QUEUE=16
|
|
JOB_PRO_COMPLETION_CONCURRENCY=1
|
|
JOB_PRO_COMPLETION_MAX_QUEUE=8
|
|
JOB_COMPRESS_CONCURRENCY=1
|
|
JOB_COMPRESS_MAX_QUEUE=8
|
|
JOB_OCR_CONCURRENCY=1
|
|
JOB_OCR_MAX_QUEUE=8
|
|
JOB_CONVERT_CONCURRENCY=1
|
|
JOB_CONVERT_MAX_QUEUE=8
|
|
JOB_TTS_CONCURRENCY=1
|
|
JOB_TTS_MAX_QUEUE=4
|
|
JOB_ASR_CONCURRENCY=1
|
|
JOB_ASR_MAX_QUEUE=4
|
|
|
|
# Timeouts (seconds)
|
|
LLM_COMPLETION_TIMEOUT=600
|
|
LLM_OCR_TIMEOUT=600
|
|
|
|
# Compression limit
|
|
DOC_COMPRESS_CONTEXT_LIMIT=128000
|
|
|
|
# Legacy fallback: if LLM_BASE_URL is not set, OLLAMA_HOST will be auto-converted to /v1/ path
|
|
#OLLAMA_HOST=http://localhost:11434
|
|
|
|
# TTS/ASR settings (see README for full list)
|
|
TTS_ASR_DEVICE=auto
|