7 lines
334 B
Python
7 lines
334 B
Python
# 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 |