This commit is contained in:
Team3
2026-06-01 18:22:13 +02:00
parent b591897fd6
commit e7af2b1150
5 changed files with 165 additions and 12 deletions

View File

@@ -90,3 +90,12 @@ class GuideChatRequest(BaseModel):
class GuideChatResponse(BaseModel):
reply: str
class ProgressUpdate(BaseModel):
chapter: str = Field(min_length=1, max_length=100)
done: bool
class ProgressResponse(BaseModel):
chapters: list[str]