Skip to content

Commit 12384d7

Browse files
authored
Merge branch 'develop' into develop
2 parents b478965 + 0f6f3ec commit 12384d7

File tree

12 files changed

+262
-339
lines changed

12 files changed

+262
-339
lines changed

.env.example

+7-2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ SUPABASE_ANON_KEY=
1818
# Comma separated list of remote character urls (optional)
1919
REMOTE_CHARACTER_URLS=
2020

21+
# Logging
22+
LOG_JSON_FORMAT= # Print everything in logger as json; false by default
23+
2124
###############################
2225
#### Client Configurations ####
2326
###############################
@@ -232,8 +235,10 @@ LARGE_ANTHROPIC_MODEL= # Default: claude-3-5-sonnet-20241022
232235
HEURIST_API_KEY= # Get from https://heurist.ai/dev-access
233236
SMALL_HEURIST_MODEL= # Default: meta-llama/llama-3-70b-instruct
234237
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
237242

238243
# Gaianet Configuration
239244
GAIANET_MODEL=

agent/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"name": "@elizaos/agent",
33
"version": "0.1.9-alpha.1",
4-
"version": "0.1.9-alpha.1",
54
"main": "src/index.ts",
65
"type": "module",
76
"scripts": {
@@ -125,4 +124,4 @@
125124
"ts-node": "10.9.2",
126125
"tsup": "8.3.5"
127126
}
128-
}
127+
}

agent/src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -770,7 +770,7 @@ export async function createAgent(
770770
// Validate TEE configuration
771771
if (teeMode !== TEEMode.OFF && !walletSecretSalt) {
772772
elizaLogger.error(
773-
"WALLET_SECRET_SALT required when TEE_MODE is enabled"
773+
"A WALLET_SECRET_SALT required when TEE_MODE is enabled"
774774
);
775775
throw new Error("Invalid TEE configuration");
776776
}

docs/api/classes/MemoryCacheAdapter.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010

1111
### new MemoryCacheAdapter()
1212

13-
> **new MemoryCacheAdapter**(`initalData`?): [`MemoryCacheAdapter`](MemoryCacheAdapter.md)
13+
> **new MemoryCacheAdapter**(`initialData`?): [`MemoryCacheAdapter`](MemoryCacheAdapter.md)
1414
1515
#### Parameters
1616

17-
**initalData?**: `Map`\<`string`, `string`\>
17+
**initialData?**: `Map`\<`string`, `string`\>
1818

1919
#### Returns
2020

docs/community/ai16z/degenai/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ We can rebuild him
1111
- ai16z is the biggest holder of degenai (a pumpfun coin)
1212
- Current plan for ai16z still is buybacks of degenai
1313
- 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
1515
- Shitposting while trading
1616
- He might just dump your shit
1717
- May do psyops like self fuds his own bags

packages/core/package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@
7171
"@ai-sdk/openai": "1.0.5",
7272
"@anthropic-ai/sdk": "0.30.1",
7373
"@fal-ai/client": "1.2.0",
74+
"@tavily/core": "^0.0.2",
7475
"@types/uuid": "10.0.0",
7576
"ai": "3.4.33",
7677
"anthropic-vertex-ai": "1.0.2",
@@ -85,7 +86,8 @@
8586
"langchain": "0.3.6",
8687
"ollama-ai-provider": "0.16.1",
8788
"openai": "4.73.0",
88-
"@tavily/core": "^0.0.2",
89+
"pino": "^9.6.0",
90+
"pino-pretty": "^13.0.0",
8991
"tinyld": "1.3.4",
9092
"together-ai": "0.7.0",
9193
"unique-names-generator": "4.7.1",

0 commit comments

Comments
 (0)