- Fix SSE stream 500: use async_session_maker inside StreamingResponse generator (Depends session closes when endpoint returns, before streaming starts) - Fix template application: store template_name in prepare endpoint so worker uses the selected custom template instead of defaulting to "general" - Fix OverlayLoader: replace loading.gif with HamsterLoader component - Fix parse_mode default: change from "slides" to "layouts" to avoid 70+ layouts - Update Gemini Flash model to gemini-3.1-flash-image-preview - Improve DOCX parsing: python-docx for structured table extraction, OCR enabled - Add vision-based image text extraction via Gemini for uploaded images - Add LayoutParser integration for slide layout structure analysis - Add Phase 4 MVP features: transfer ownership, URL input, follow-up questions, attachment-to-slide mapping, content router Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
51 lines
1.2 KiB
TOML
51 lines
1.2 KiB
TOML
[project]
|
|
name = "oliver-deckforge-backend"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
requires-python = ">=3.11,<3.12"
|
|
dependencies = [
|
|
"aiohttp>=3.12.15",
|
|
"aiomysql>=0.2.0",
|
|
"aiosqlite>=0.21.0",
|
|
"anthropic>=0.60.0",
|
|
"asyncpg>=0.30.0",
|
|
"chromadb>=1.0.15",
|
|
"dirtyjson>=1.0.8",
|
|
"docling>=2.43.0",
|
|
"fastapi[standard]>=0.116.1",
|
|
"fastmcp>=2.11.0",
|
|
"google-genai>=1.28.0",
|
|
"nltk>=3.9.1",
|
|
"openai>=1.98.0",
|
|
"pathvalidate>=3.3.1",
|
|
"pdfplumber>=0.11.7",
|
|
"pytest>=8.4.1",
|
|
"python-docx>=1.1",
|
|
"python-pptx>=1.0.2",
|
|
"layoutparser>=0.3",
|
|
"opencv-python-headless>=4.8",
|
|
"redis>=5.0,<6",
|
|
"sqlmodel>=0.0.24",
|
|
"alembic>=1.15",
|
|
"msal>=1.31",
|
|
"python-jose[cryptography]>=3.3",
|
|
"openpyxl>=3.1",
|
|
"trafilatura>=2.0",
|
|
"arq>=0.26",
|
|
"pytest-asyncio>=0.25",
|
|
"httpx>=0.28",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
testpaths = ["tests"]
|
|
pythonpath = ["."]
|
|
|
|
[[tool.uv.index]]
|
|
name = "pytorch-cpu"
|
|
url = "https://download.pytorch.org/whl/cpu"
|
|
explicit = true
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["api*", "enums*", "models*", "services*", "constants*", "utils*", "scripts*", "workers*", "migrations*"]
|