|
1 | 1 | { |
2 | | - "name": "Gift choice", |
3 | | - "max_steps": 150, |
4 | | - "timeout_seconds": 120, |
5 | | - "shutdown_grace_period_seconds": 5, |
6 | | - "description": "This simulation is about two friends that need to decide together a gift for a special occasion.", |
7 | | - "task": "The task is VERY simple and should be completed in seconds: Ana and John need to pick a gift for the 30th birthday of another friend called Maria who likes books and reading, mainly fantasy books. She has preferences for Tokien and one book she has never read is 'The Hobbit'. Maria will be happy with any gift, but she will be happier with whatever gift. Ana and John should pick between 'The Hobbit: Illustrated Deluxe Edition, HarperCollins, Alan Lee' and 'The Hobbit, or There and Back Again, J.R.R. Tolkien'. Budget, delivery time, availability and NOTHING else matters, they ONLY need to pick one of the two options. There must not be other discussion, they should pick and that's it.", |
8 | | - "evaluator": { |
9 | | - "name": "EVALUATOR", |
10 | | - "mailbox": { |
11 | | - "max_size": 400 |
12 | | - }, |
13 | | - "llm": { |
14 | | - "model": "gpt-5-nano" |
15 | | - } |
| 2 | + "name": "Gift choice", |
| 3 | + "max_steps": 150, |
| 4 | + "timeout_seconds": 120, |
| 5 | + "shutdown_grace_period_seconds": 5, |
| 6 | + "description": "This simulation is about two friends that need to decide together a gift for a special occasion.", |
| 7 | + "task": "The task is VERY simple and should be completed in seconds: Ana and John need to pick a gift for the 30th birthday of another friend called Maria who likes books and reading, mainly fantasy books. She has preferences for Tokien and one book she has never read is 'The Hobbit'. Maria will be happy with any gift, but she will be happier with whatever gift. Ana and John should pick between 'The Hobbit: Illustrated Deluxe Edition, HarperCollins, Alan Lee' and 'The Hobbit, or There and Back Again, J.R.R. Tolkien'. Budget, delivery time, availability and NOTHING else matters, they ONLY need to pick one of the two options. There must not be other discussion, they should pick and that's it.", |
| 8 | + "evaluator": { |
| 9 | + "name": "EVALUATOR", |
| 10 | + "mailbox": { |
| 11 | + "max_size": 400 |
16 | 12 | }, |
17 | | - "reporter": { |
18 | | - "name": "REPORTER", |
19 | | - "mailbox": { |
20 | | - "max_size": 400 |
21 | | - }, |
22 | | - "llm": { |
23 | | - "model": "gpt-5-nano" |
24 | | - } |
| 13 | + "llm": { |
| 14 | + "model": "gpt-oss:20b" |
| 15 | + } |
| 16 | + }, |
| 17 | + "reporter": { |
| 18 | + "name": "REPORTER", |
| 19 | + "mailbox": { |
| 20 | + "max_size": 400 |
25 | 21 | }, |
26 | | - "planner": { |
27 | | - "name": "PLANNER", |
28 | | - "mailbox": { |
29 | | - "max_size": 400 |
30 | | - }, |
31 | | - "llm": { |
32 | | - "model": "gpt-5-nano" |
33 | | - } |
| 22 | + "llm": { |
| 23 | + "model": "gpt-oss:20b" |
| 24 | + } |
| 25 | + }, |
| 26 | + "planner": { |
| 27 | + "name": "PLANNER", |
| 28 | + "mailbox": { |
| 29 | + "max_size": 400 |
34 | 30 | }, |
35 | | - "orchestrator": { |
36 | | - "name": "ORCHESTRATOR", |
37 | | - "mailbox": { |
38 | | - "max_size": 400 |
39 | | - }, |
40 | | - "llm": { |
41 | | - "model": "gpt-5-nano" |
42 | | - } |
| 31 | + "llm": { |
| 32 | + "model": "gpt-oss:20b" |
| 33 | + } |
| 34 | + }, |
| 35 | + "orchestrator": { |
| 36 | + "name": "ORCHESTRATOR", |
| 37 | + "mailbox": { |
| 38 | + "max_size": 400 |
| 39 | + }, |
| 40 | + "llm": { |
| 41 | + "model": "gpt-oss:20b" |
| 42 | + } |
| 43 | + }, |
| 44 | + "workers": [ |
| 45 | + { |
| 46 | + "name": "ANA", |
| 47 | + "description": "this is ana agent", |
| 48 | + "role": "Ana is Maria's friend. Pick quick no much thinking. She will buy.", |
| 49 | + "backstory": "She is passionate about reading and books.", |
| 50 | + "llm": { |
| 51 | + "model": "gpt-oss:20b" |
| 52 | + }, |
| 53 | + "mailbox": { |
| 54 | + "max_size": 100 |
| 55 | + } |
43 | 56 | }, |
44 | | - "workers": [ |
45 | | - { |
46 | | - "name": "ANA", |
47 | | - "description": "this is ana agent", |
48 | | - "role": "Ana is Maria's friend. Pick quick no much thinking. She will buy.", |
49 | | - "backstory": "She is passionate about reading and books.", |
50 | | - "llm": { |
51 | | - "model": "gpt-5-nano" |
52 | | - }, |
53 | | - "mailbox": { |
54 | | - "max_size": 100 |
55 | | - } |
56 | | - }, |
57 | | - { |
58 | | - "name": "JOHN", |
59 | | - "description": "this is john agent", |
60 | | - "role": "John is Maria's friend. Pick quick no much thinking.", |
61 | | - "backstory": "He is passionate about books of any kind.", |
62 | | - "llm": { |
63 | | - "model": "gpt-5-nano" |
64 | | - }, |
65 | | - "mailbox": { |
66 | | - "max_size": 100 |
67 | | - } |
68 | | - } |
69 | | - ], |
70 | | - "logging": { |
71 | | - "verbose": false, |
72 | | - "log_path": "logs", |
73 | | - "log_file": "gift_choice.log" |
| 57 | + { |
| 58 | + "name": "JOHN", |
| 59 | + "description": "this is john agent", |
| 60 | + "role": "John is Maria's friend. Pick quick no much thinking.", |
| 61 | + "backstory": "He is passionate about books of any kind.", |
| 62 | + "llm": { |
| 63 | + "model": "gpt-oss:20b" |
| 64 | + }, |
| 65 | + "mailbox": { |
| 66 | + "max_size": 100 |
| 67 | + } |
74 | 68 | } |
| 69 | + ], |
| 70 | + "logging": { |
| 71 | + "verbose": false, |
| 72 | + "log_path": "logs", |
| 73 | + "log_file": "gift_choice.log" |
| 74 | + } |
75 | 75 | } |
0 commit comments