Initial commit: VoIdeaAI - voice-first AI idea assistant

This commit is contained in:
2026-05-13 12:51:42 +03:00
commit 688d043dad
421 changed files with 47915 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
"""Bot command schemas."""
from datetime import datetime
from pydantic import BaseModel
class BotCommandResponse(BaseModel):
id: str
name: str
description: str
enabled: bool
requires_auth: bool
created_at: datetime
updated_at: datetime
class BotCommandUpdate(BaseModel):
name: str
enabled: bool