2a67f4d893
Three endpoints under /kb/*, same X-Api-Key auth as the admin and
SmartAssistant routes:
- POST /kb/search — hybrid search + rerank, returns ranked chunks as JSON.
No LLM in the path, so it's fast enough for a live UI.
- GET /kb/sources — list of active sources (law / regulation / circular)
with basic metadata, for the browse tab.
- GET /kb/source/{id}/chunks — all chunks of one source, ordered, so
the UI can show a document inline with its hierarchical headings.
- POST /kb/ask — full agent loop (same runner as SmartAssistant but with
allowed_toolsets=legal), for the ask-shira mode of the UI.
Dates are serialized to ISO strings so the frontend doesn't have to deal
with Python date objects.
Refs Task Master #2
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
55 lines
1.5 KiB
Python
55 lines
1.5 KiB
Python
"""shira-hermes — FastAPI application."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import os
|
|
import logging
|
|
from pathlib import Path
|
|
|
|
from fastapi import FastAPI
|
|
from fastapi.middleware.cors import CORSMiddleware
|
|
|
|
from api.routes.admin_kb import router as admin_kb_router
|
|
from api.routes.health import router as health_router
|
|
from api.routes.kb_public import router as kb_public_router
|
|
from api.routes.smart_assistant import router as smart_assistant_router
|
|
|
|
logging.basicConfig(
|
|
level=logging.INFO,
|
|
format="%(asctime)s [%(name)s] %(levelname)s: %(message)s",
|
|
)
|
|
|
|
logger = logging.getLogger("shira.app")
|
|
|
|
app = FastAPI(
|
|
title="shira-hermes",
|
|
description="Shira AI Assistant — Hermes Agent backend for EspoCRM SmartAssistant",
|
|
version="0.2.0",
|
|
)
|
|
|
|
app.add_middleware(
|
|
CORSMiddleware,
|
|
allow_origins=["*"],
|
|
allow_methods=["GET", "POST", "OPTIONS"],
|
|
allow_headers=["Content-Type", "X-Api-Key"],
|
|
)
|
|
|
|
app.include_router(health_router)
|
|
app.include_router(smart_assistant_router)
|
|
app.include_router(admin_kb_router)
|
|
app.include_router(kb_public_router)
|
|
|
|
|
|
@app.on_event("startup")
|
|
async def ensure_data_dirs():
|
|
"""Create persistent data directories if they don't exist."""
|
|
data_dir = os.environ.get("SHIRA_DATA_DIR", "/opt/data")
|
|
dirs = [
|
|
f"{data_dir}/skills",
|
|
f"{data_dir}/profiles",
|
|
f"{data_dir}/cases",
|
|
]
|
|
for d in dirs:
|
|
Path(d).mkdir(parents=True, exist_ok=True)
|
|
logger.info("Data directories ready at %s", data_dir)
|