Highlight ✨Just shipped v0.0.4.1

Simulatrex

Simulatrex is a Large Language Model (LLM) based simulation framework designed to run social science and market simulations involving multi-agent structures and hierarchies.

Our library is open-source and in early development.
Sign up to join our waitlist and get notified when our platform launches.

simulation.py
config.json
import asyncio
import dotenv
from simulatrex import SimulationEngine

dotenv.load_dotenv()

async def main():
  engine = SimulationEngine("./data/config.json")
  await engine.run()

if __name__ == "__main__":
  asyncio.run(main())
;