File tree 12 files changed +262
-339
lines changed
12 files changed +262
-339
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,9 @@ SUPABASE_ANON_KEY=
18
18
# Comma separated list of remote character urls (optional)
19
19
REMOTE_CHARACTER_URLS =
20
20
21
+ # Logging
22
+ LOG_JSON_FORMAT = # Print everything in logger as json; false by default
23
+
21
24
# ##############################
22
25
# ### Client Configurations ####
23
26
# ##############################
@@ -232,8 +235,10 @@ LARGE_ANTHROPIC_MODEL= # Default: claude-3-5-sonnet-20241022
232
235
HEURIST_API_KEY = # Get from https://heurist.ai/dev-access
233
236
SMALL_HEURIST_MODEL = # Default: meta-llama/llama-3-70b-instruct
234
237
MEDIUM_HEURIST_MODEL = # Default: meta-llama/llama-3-70b-instruct
235
- LARGE_HEURIST_MODEL = # Default: meta-llama/llama-3.1-405b-instruct
236
- HEURIST_IMAGE_MODEL = # Default: PepeXL
238
+ LARGE_HEURIST_MODEL = # Default: meta-llama/llama-3.3-70b-instruct
239
+ HEURIST_IMAGE_MODEL = # Default: FLUX.1-dev
240
+ HEURIST_EMBEDDING_MODEL = # Default: BAAI/bge-large-en-v1.5
241
+ USE_HEURIST_EMBEDDING = # Set to TRUE for HEURIST embedding, leave blank for local
237
242
238
243
# Gaianet Configuration
239
244
GAIANET_MODEL =
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @elizaos/agent" ,
3
3
"version" : " 0.1.9-alpha.1" ,
4
- "version" : " 0.1.9-alpha.1" ,
5
4
"main" : " src/index.ts" ,
6
5
"type" : " module" ,
7
6
"scripts" : {
125
124
"ts-node" : " 10.9.2" ,
126
125
"tsup" : " 8.3.5"
127
126
}
128
- }
127
+ }
Original file line number Diff line number Diff line change @@ -770,7 +770,7 @@ export async function createAgent(
770
770
// Validate TEE configuration
771
771
if ( teeMode !== TEEMode . OFF && ! walletSecretSalt ) {
772
772
elizaLogger . error (
773
- "WALLET_SECRET_SALT required when TEE_MODE is enabled"
773
+ "A WALLET_SECRET_SALT required when TEE_MODE is enabled"
774
774
) ;
775
775
throw new Error ( "Invalid TEE configuration" ) ;
776
776
}
Original file line number Diff line number Diff line change 10
10
11
11
### new MemoryCacheAdapter()
12
12
13
- > ** new MemoryCacheAdapter** (` initalData ` ?): [ ` MemoryCacheAdapter ` ] ( MemoryCacheAdapter.md )
13
+ > ** new MemoryCacheAdapter** (` initialData ` ?): [ ` MemoryCacheAdapter ` ] ( MemoryCacheAdapter.md )
14
14
15
15
#### Parameters
16
16
17
- • ** initalData ?** : ` Map ` \< ` string ` , ` string ` \>
17
+ • ** initialData ?** : ` Map ` \< ` string ` , ` string ` \>
18
18
19
19
#### Returns
20
20
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ We can rebuild him
11
11
- ai16z is the biggest holder of degenai (a pumpfun coin)
12
12
- Current plan for ai16z still is buybacks of degenai
13
13
- To-do: We need to surface this better (like a website)
14
- - DegenspartanAI also stacks his own coin as well
14
+ - DegenSpartanAI also stacks his own coin as well
15
15
- Shitposting while trading
16
16
- He might just dump your shit
17
17
- May do psyops like self fuds his own bags
Original file line number Diff line number Diff line change 71
71
"@ai-sdk/openai" : " 1.0.5" ,
72
72
"@anthropic-ai/sdk" : " 0.30.1" ,
73
73
"@fal-ai/client" : " 1.2.0" ,
74
+ "@tavily/core" : " ^0.0.2" ,
74
75
"@types/uuid" : " 10.0.0" ,
75
76
"ai" : " 3.4.33" ,
76
77
"anthropic-vertex-ai" : " 1.0.2" ,
85
86
"langchain" : " 0.3.6" ,
86
87
"ollama-ai-provider" : " 0.16.1" ,
87
88
"openai" : " 4.73.0" ,
88
- "@tavily/core" : " ^0.0.2" ,
89
+ "pino" : " ^9.6.0" ,
90
+ "pino-pretty" : " ^13.0.0" ,
89
91
"tinyld" : " 1.3.4" ,
90
92
"together-ai" : " 0.7.0" ,
91
93
"unique-names-generator" : " 4.7.1" ,
You can’t perform that action at this time.
0 commit comments