modified: backend/llm.py

modified:   src/components/MilkdownEditor.vue
	modified:   src/utils/config.js
	modified:   src/utils/i18n.js
This commit is contained in:
2026-04-05 15:10:23 +08:00
parent 9293d48c1b
commit 818baa349a
4 changed files with 163 additions and 230 deletions
+2 -2
View File
@@ -16,8 +16,8 @@ VLM_MODEL = os.getenv('VLM_MODEL', 'qwen3-vl:30b')
# Timeouts in seconds (10 minutes for large model loading)
COMPLETION_TIMEOUT = 600
OCR_TIMEOUT = 120
CONVERT_TIMEOUT = 60
OCR_TIMEOUT = 600
CONVERT_TIMEOUT = 600
client = ollama.AsyncClient(host=OLLAMA_HOST)
logger = logging.getLogger("llm")