更新python后端

This commit is contained in:
BBIT-Kai
2025-09-18 17:18:18 +08:00
parent 2fc209e6e6
commit de6a350da8
45 changed files with 2524 additions and 89 deletions
@@ -0,0 +1,6 @@
from pydantic import BaseModel
from typing import Optional
class KnowledgeAddRequest(BaseModel):
text: str
is_active: Optional[bool] = True
knowledge_base_id: str