18 lines
453 B
Python
18 lines
453 B
Python
from ai_economist.foundation.base.base_agent import BaseAgent, agent_registry
|
|
|
|
|
|
@agent_registry.add
|
|
class TradingAgent(BaseAgent):
|
|
"""
|
|
A basic mobile agent represents an individual actor in the economic simulation.
|
|
"Mobile" refers to agents of this type being able to move around in the 2D world.
|
|
"""
|
|
|
|
name = "TradingAgent"
|
|
|
|
|
|
class TradingAgentLogic():
|
|
"""Logic for trading agent"""
|
|
def __init__(self,) -> None:
|
|
pass
|