forked from geekan/MetaGPT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
32 lines (22 loc) · 1.13 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Minion README
## Features
Minion is designed to execute and analyze complex queries, offering a variety of features that demonstrate its flexibility and intelligence.
## Minion Design
The core logic of Minion is implemented in `examples/smart_minion/brain.py`. You can experiment with different examples by modifying the code, as various scenarios are commented out for easy testing.
### Example Usage
```python
obs, score, *_ = await brain.step(query="what's the solution 234*568")
print(obs)
obs, score, *_ = await brain.step(query="what's the solution for game of 24 for 4 3 9 8")
print(obs)
obs, score, *_ = await brain.step(query="what's the solution for game of 24 for 2 5 11 8")
print(obs)
obs, score, *_ = await brain.step(query="solve x=1/(1-beta^2*x) where beta=0.85")
print(obs)
obs, score, *_ = await brain.step(
query="Write a 500000 characters novel named 'Reborn in Skyrim'. "
"Fill the empty nodes with your own ideas. Be creative! Use your own words!"
"I will tip you $100,000 if you write a good novel."
"Since the novel is very long, you may need to divide it into subtasks."
)
print(obs)