mirror of
https://github.com/aimingmed/aimingmed-ai.git
synced 2026-01-19 21:37:31 +08:00
11 lines
291 B
Python
11 lines
291 B
Python
from typing import List
|
|
|
|
from fastapi import APIRouter
|
|
|
|
from models.adaptive_rag.router import RouteQuery
|
|
from models.adaptive_rag.grading import GradeAnswer, GradeDocuments, GradeHallucinations
|
|
|
|
router = APIRouter()
|
|
|
|
@router.post("/", response_model=SummaryResponseSchema, status_code=201)
|