Init project

This commit is contained in:
Yaojia Wang
2025-08-11 00:07:41 +02:00
parent 840daf2d08
commit 0a80400720
23 changed files with 660 additions and 0 deletions

7
app/agents/__init__.py Normal file
View File

@@ -0,0 +1,7 @@
# app/agents/__init__.py
# This file makes it easy to import all agents from the 'agents' package.
# We are importing the function with its correct name now.
from .classification_agent import agent_classify_document_from_text
from .receipt_agent import agent_extract_receipt_info
from .invoice_agent import agent_extract_invoice_info