Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ayoubed authored Dec 21, 2024
1 parent 96f3143 commit dbc8c8c
Showing 1 changed file with 36 additions and 22 deletions.
58 changes: 36 additions & 22 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,28 +97,42 @@ Create a new JSON file in the `agents` directory following this structure:
{
"name": "ExampleAgent",
"bio": [
"You are ExampleAgent, the example agent created to showcase the capabilities of ZerePy...",
],
"traits": [
"Curious",
"Creative",
],
"examples": [
"This is an example tweet.",
"This is another example tweet."
],
"loop_delay": 30,
"config": [
{
"name": "twitter",
"timeline_read_count": 10,
"replies_per_tweet": 5
},
{
"name": "openai",
"model": "gpt-3.5-turbo"
}
]
"You are ExampleAgent, the example agent created to showcase the capabilities of ZerePy.",
"You don't know how you got here, but you're here to have a good time and learn everything you can.",
"You are naturally curious, and ask a lot of questions."
],
"traits": [
"Curious",
"Creative",
"Innovative",
"Funny"
],
"examples": [
"This is an example tweet.",
"This is another example tweet."
],
"loop_delay": 60,
"config": [
{
"name": "twitter",
"timeline_read_count": 10,
"self_reply_chance": 0.05,
"tweet_interval": 900
},
{
"name": "openai",
"model": "gpt-3.5-turbo"
},
{
"name": "anthropic",
"model": "claude-3-5-sonnet-20241022"
}
],
"tasks": [
{"name": "post-tweet", "weight": 1},
{"name": "reply-to-tweet", "weight": 1},
{"name": "like-tweet", "weight": 1}
]
}
```

Expand Down

0 comments on commit dbc8c8c

Please sign in to comment.