Backend:
- Document + MemoryEntry models with Alembic migration (GIN FTS index)
- File upload endpoint with path traversal protection (sanitized filenames)
- Background document text extraction (PyMuPDF)
- Full-text search on extracted_text via PostgreSQL tsvector/tsquery
- Memory CRUD with enum-validated categories/importance, field allow-list
- AI tools: save_memory, search_documents, get_memory (Claude function calling)
- Tool execution loop in stream_ai_response (multi-turn tool use)
- Context assembly: injects critical memory + relevant doc excerpts
- File storage abstraction (local filesystem, S3-swappable)
- Secure file deletion (DB flush before disk delete)
Frontend:
- Document upload dialog (drag-and-drop + file picker)
- Document list with status badges, search, download (via authenticated blob)
- Document viewer with extracted text preview
- Memory list grouped by category with importance color coding
- Memory editor with category/importance dropdowns
- Documents + Memory pages with full CRUD
- Enabled sidebar navigation for both sections
Review fixes applied:
- Sanitized upload filenames (path traversal prevention)
- Download via axios blob (not bare <a href>, preserves auth)
- Route ordering: /search before /{id}/reindex
- Memory update allows is_active=False + field allow-list
- MemoryEditor form resets on mode switch
- Literal enum validation on category/importance schemas
- DB flush before file deletion for data integrity
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
25 lines
837 B
Python
25 lines
837 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.v1.auth import router as auth_router
|
|
from app.api.v1.chats import router as chats_router
|
|
from app.api.v1.admin import router as admin_router
|
|
from app.api.v1.skills import router as skills_router
|
|
from app.api.v1.users import router as users_router
|
|
from app.api.v1.documents import router as documents_router
|
|
from app.api.v1.memory import router as memory_router
|
|
|
|
api_v1_router = APIRouter(prefix="/api/v1")
|
|
|
|
api_v1_router.include_router(auth_router)
|
|
api_v1_router.include_router(chats_router)
|
|
api_v1_router.include_router(admin_router)
|
|
api_v1_router.include_router(skills_router)
|
|
api_v1_router.include_router(users_router)
|
|
api_v1_router.include_router(documents_router)
|
|
api_v1_router.include_router(memory_router)
|
|
|
|
|
|
@api_v1_router.get("/health")
|
|
async def health():
|
|
return {"status": "ok"}
|