Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
tags:
|
| 6 |
+
- agentic-scenarios
|
| 7 |
+
- synthetic-data
|
| 8 |
+
- prompt-dataset
|
| 9 |
+
- hermes
|
| 10 |
+
size_categories:
|
| 11 |
+
- 100<n<1K
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# Talos Scenarios
|
| 15 |
+
|
| 16 |
+
A collection of **602 unique agentic task scenarios/prompts** extracted from the Talos synthetic trace generation pipeline. These scenarios were used to generate the `DJLougen/Talos-kimi-k2.6-Hermes-synthetic` dataset via kimi-k2.6.
|
| 17 |
+
|
| 18 |
+
## Source Dataset
|
| 19 |
+
|
| 20 |
+
These scenarios originate from: **DJLougen/Talos-kimi-k2.6-Hermes-synthetic**
|
| 21 |
+
|
| 22 |
+
## What's Inside
|
| 23 |
+
|
| 24 |
+
| Field | Type | Description |
|
| 25 |
+
|-------|------|-------------|
|
| 26 |
+
| `scenario` | str | The user prompt / task description |
|
| 27 |
+
| `category` | str | Domain tag: `coding`, `reasoning`, `creative`, `tool_use`, `science`, `history`, `business`, `philosophy`, `general` |
|
| 28 |
+
| `complexity` | str | `low` / `medium` / `high` based on word count |
|
| 29 |
+
| `requires_tools` | bool | Whether the scenario likely requires external tool/API access |
|
| 30 |
+
| `word_count` | int | Length of the prompt in words |
|
| 31 |
+
| `source` | str | Parent dataset reference |
|
| 32 |
+
|
| 33 |
+
## Statistics
|
| 34 |
+
|
| 35 |
+
| Category | Count |
|
| 36 |
+
|----------|-------|
|
| 37 |
+
| general | 160 |
|
| 38 |
+
| coding | 115 |
|
| 39 |
+
| history | 115 |
|
| 40 |
+
| science | 83 |
|
| 41 |
+
| tool_use | 54 |
|
| 42 |
+
| creative | 53 |
|
| 43 |
+
| reasoning | 16 |
|
| 44 |
+
| philosophy | 4 |
|
| 45 |
+
| business | 2 |
|
| 46 |
+
|
| 47 |
+
**Total:** 602 unique scenarios
|
| 48 |
+
|
| 49 |
+
## Usage
|
| 50 |
+
|
| 51 |
+
### Load with HuggingFace `datasets`
|
| 52 |
+
|
| 53 |
+
```python
|
| 54 |
+
from datasets import load_dataset
|
| 55 |
+
ds = load_dataset("DJLougen/Talos-Scenarios", split="train")
|
| 56 |
+
print(ds[0]["scenario"])
|
| 57 |
+
```
|
| 58 |
+
|
| 59 |
+
### Filter by category
|
| 60 |
+
|
| 61 |
+
```python
|
| 62 |
+
coding = ds.filter(lambda x: x["category"] == "coding")
|
| 63 |
+
```
|
| 64 |
+
|
| 65 |
+
### Use for synthetic trace generation
|
| 66 |
+
|
| 67 |
+
```python
|
| 68 |
+
for example in ds:
|
| 69 |
+
prompt = example["scenario"]
|
| 70 |
+
# Feed to your LLM to generate agentic traces
|
| 71 |
+
```
|
| 72 |
+
|
| 73 |
+
## License
|
| 74 |
+
MIT — synthetic data generated for training purposes.
|
| 75 |
+
|
| 76 |
+
## Contact
|
| 77 |
+
Created by DJLougen as part of the Talos agentic trace curation pipeline.
|