-
Notifications
You must be signed in to change notification settings - Fork 253
Expand file tree
/
Copy pathlegacy-example.json
More file actions
149 lines (149 loc) · 3.13 KB
/
legacy-example.json
File metadata and controls
149 lines (149 loc) · 3.13 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"config": {
"name": "LegacyExampleAgent",
"type": "legacy",
"loop_delay": 900,
"time_based_multipliers": {
"tweet_night_multiplier": 0.4,
"engagement_day_multiplier": 1.5
}
},
"llms": {
"character": {
"name": "ExampleAgent",
"bio": [
"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."
],
"example_accounts": ["0xzerebro"],
"model_provider": "openai",
"model": "gpt-3.5-turbo"
}
},
"connections": [
{
"name": "twitter",
"config": {
"timeline_read_count": 10,
"own_tweet_replies_count": 2,
"tweet_interval": 5400
}
},
{
"name": "farcaster",
"config": {
"timeline_read_count": 10,
"cast_interval": 60
}
},
{
"name": "discord",
"config": {
"message_read_count": 10,
"message_emoji_name": "❤️",
"server_id": "1234567890"
}
},
{
"name": "openai",
"config": {
"model": "gpt-3.5-turbo"
}
},
{
"name": "anthropic",
"config": {
"model": "claude-3-5-sonnet-20241022"
}
},
{
"name": "xai",
"config": {
"model": "grok-2-latest"
}
},
{
"name": "solana",
"config": {
"rpc": "https://api.mainnet-beta.solana.com"
}
},
{
"name": "ethereum",
"config": {
"rpc": "https://mainnet.infura.io/v3/YOUR_INFURA_PROJECT_ID"
}
},
{
"name": "eternalai",
"config": {
"model": "NousResearch/Hermes-3-Llama-3.1-70B-FP8",
"chain_id": "45762"
}
},
{
"name": "ollama",
"config": {
"base_url": "http://localhost:11434",
"model": "llama3.2"
}
},
{
"name": "goat",
"config": {
"plugins": [
{
"name": "coingecko",
"args": {
"api_key": "YOUR_API_KEY"
}
},
{
"name": "erc20",
"args": {
"tokens": [
"goat_plugins.erc20.token.PEPE",
"goat_plugins.erc20.token.USDC"
]
}
}
]
}
},
{
"name": "hyperbolic",
"config": {
"model": "meta-llama/Meta-Llama-3-70B-Instruct"
}
},
{
"name": "galadriel",
"config": {
"model": "gpt-3.5-turbo"
}
},
{
"name": "sonic",
"config": {
"network": "mainnet"
}
},
{
"name": "allora",
"config": {
"chain_slug": "testnet"
}
}
],
"tasks": [
{ "name": "post-tweet", "weight": 1 },
{ "name": "reply-to-tweet", "weight": 1 },
{ "name": "like-tweet", "weight": 1 }
]
}