A Python framework for building dynamic, memory-aware multi-agent systems with formal orchestration.
1from mythos import Agent, Pantheon, Oracle
2
3researcher = Agent(name="Athena", role="Researcher", goal="Find accurate information")
4writer = Agent(name="Homer", role="Writer", goal="Create compelling narratives")
5
6pantheon = Pantheon(agents=[researcher, writer])
7oracle = Oracle(pantheon=pantheon, process="sequential")
8
9result = oracle.run("Write a story about ancient Greece")
This model repository was generated by
ML Intern, an agent for machine learning research and development on the Hugging Face Hub.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "huronvalley21/mythos"
4tokenizer = AutoTokenizer.from_pretrained(model_id)
5model = AutoModelForCausalLM.from_pretrained(model_id)