Initial commit

This commit is contained in:
2026-06-26 16:08:31 +05:30
commit f49193ee73
23 changed files with 6056 additions and 0 deletions

18
agents/__init__.py Normal file
View File

@@ -0,0 +1,18 @@
# Agents module for LogiFlow AI
from agents.order_agent import OrderAgent
from agents.dispatch_agent import DispatchAgent
from agents.fleet_agent import FleetAgent
from agents.hub_agent import HubAgent
from agents.customer_agent import CustomerAgent
from agents.exception_agent import ExceptionAgent
from agents.route_optimizer_agent import RouteOptimizerAgent
__all__ = [
'OrderAgent',
'DispatchAgent',
'FleetAgent',
'HubAgent',
'CustomerAgent',
'ExceptionAgent',
'RouteOptimizerAgent'
]