feat: Implement core application structure, AI extraction, persistence, and Telegram bot modules with updated configuration and dependencies.

This commit is contained in:
Marco Gallegos
2025-12-18 12:15:04 -06:00
parent 7276e480b0
commit 899482580e
45 changed files with 1157 additions and 225 deletions

14
app/schema/freeform.py Normal file
View File

@@ -0,0 +1,14 @@
"""
Pydantic schemas for unstructured or freeform text entries.
"""
from pydantic import BaseModel
from datetime import datetime
class FreeformEntry(BaseModel):
"""
Represents a piece of text that could not be structured into an expense.
"""
user_id: str
text: str
timestamp: datetime
notes: str = "Could not be automatically categorized."