Doc-chat / api /__init__.py
Rulga's picture
Refactor project structure and add chat analysis functionality
8c4af83
raw
history blame contribute delete
174 Bytes
from fastapi import APIRouter
from .analysis import LogAnalyzer
# Create API router
router = APIRouter(prefix="/api", tags=["analysis"])
__all__ = ["LogAnalyzer", "router"]