adding ai_economist for modding

This commit is contained in:
2023-01-12 16:41:38 +01:00
parent 0479a4f6a4
commit f177f8f0ba
85 changed files with 19373 additions and 2 deletions

11
agents/trading_agent.py Normal file
View File

@@ -0,0 +1,11 @@
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"