Update ML Intern artifact metadata
Browse files
README.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# Mythos — Multi-Agent Framework
|
| 2 |
|
| 3 |
A Python framework for building dynamic, memory-aware multi-agent systems with formal orchestration.
|
|
@@ -23,3 +27,23 @@ oracle = Oracle(pantheon=pantheon, process="sequential")
|
|
| 23 |
|
| 24 |
result = oracle.run("Write a story about ancient Greece")
|
| 25 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- ml-intern
|
| 4 |
+
---
|
| 5 |
# Mythos — Multi-Agent Framework
|
| 6 |
|
| 7 |
A Python framework for building dynamic, memory-aware multi-agent systems with formal orchestration.
|
|
|
|
| 27 |
|
| 28 |
result = oracle.run("Write a story about ancient Greece")
|
| 29 |
```
|
| 30 |
+
|
| 31 |
+
<!-- ml-intern-provenance -->
|
| 32 |
+
## Generated by ML Intern
|
| 33 |
+
|
| 34 |
+
This model repository was generated by [ML Intern](https://github.com/huggingface/ml-intern), an agent for machine learning research and development on the Hugging Face Hub.
|
| 35 |
+
|
| 36 |
+
- Try ML Intern: https://smolagents-ml-intern.hf.space
|
| 37 |
+
- Source code: https://github.com/huggingface/ml-intern
|
| 38 |
+
|
| 39 |
+
## Usage
|
| 40 |
+
|
| 41 |
+
```python
|
| 42 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 43 |
+
|
| 44 |
+
model_id = "huronvalley21/mythos"
|
| 45 |
+
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 46 |
+
model = AutoModelForCausalLM.from_pretrained(model_id)
|
| 47 |
+
```
|
| 48 |
+
|
| 49 |
+
For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.
|