add app set

This commit is contained in:
2025-11-24 16:49:46 +00:00
parent 11214c47f6
commit 0c91c2ea5b
15 changed files with 252 additions and 373 deletions

View File

@@ -55,3 +55,8 @@ async def send(message: Message, stream: bool = False):
else:
response = await services.generate(message.prompt, message.conversation_id)
return response
@app.get("/")
async def health():
return {"status": "ok"}