Initial commit
This commit is contained in:
18
agents/__init__.py
Normal file
18
agents/__init__.py
Normal 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'
|
||||
]
|
||||
Reference in New Issue
Block a user