Skip to content

Commit

Permalink
Merge branch 'develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
wtfsayo authored Jan 17, 2025
2 parents b478965 + 0f6f3ec commit 12384d7
Show file tree
Hide file tree
Showing 12 changed files with 262 additions and 339 deletions.
9 changes: 7 additions & 2 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ SUPABASE_ANON_KEY=
# Comma separated list of remote character urls (optional)
REMOTE_CHARACTER_URLS=

# Logging
LOG_JSON_FORMAT= # Print everything in logger as json; false by default

###############################
#### Client Configurations ####
###############################
Expand Down Expand Up @@ -232,8 +235,10 @@ LARGE_ANTHROPIC_MODEL= # Default: claude-3-5-sonnet-20241022
HEURIST_API_KEY= # Get from https://heurist.ai/dev-access
SMALL_HEURIST_MODEL= # Default: meta-llama/llama-3-70b-instruct
MEDIUM_HEURIST_MODEL= # Default: meta-llama/llama-3-70b-instruct
LARGE_HEURIST_MODEL= # Default: meta-llama/llama-3.1-405b-instruct
HEURIST_IMAGE_MODEL= # Default: PepeXL
LARGE_HEURIST_MODEL= # Default: meta-llama/llama-3.3-70b-instruct
HEURIST_IMAGE_MODEL= # Default: FLUX.1-dev
HEURIST_EMBEDDING_MODEL= # Default: BAAI/bge-large-en-v1.5
USE_HEURIST_EMBEDDING= # Set to TRUE for HEURIST embedding, leave blank for local

# Gaianet Configuration
GAIANET_MODEL=
Expand Down
3 changes: 1 addition & 2 deletions agent/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"name": "@elizaos/agent",
"version": "0.1.9-alpha.1",
"version": "0.1.9-alpha.1",
"main": "src/index.ts",
"type": "module",
"scripts": {
Expand Down Expand Up @@ -125,4 +124,4 @@
"ts-node": "10.9.2",
"tsup": "8.3.5"
}
}
}
2 changes: 1 addition & 1 deletion agent/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -770,7 +770,7 @@ export async function createAgent(
// Validate TEE configuration
if (teeMode !== TEEMode.OFF && !walletSecretSalt) {
elizaLogger.error(
"WALLET_SECRET_SALT required when TEE_MODE is enabled"
"A WALLET_SECRET_SALT required when TEE_MODE is enabled"
);
throw new Error("Invalid TEE configuration");
}
Expand Down
4 changes: 2 additions & 2 deletions docs/api/classes/MemoryCacheAdapter.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@

### new MemoryCacheAdapter()

> **new MemoryCacheAdapter**(`initalData`?): [`MemoryCacheAdapter`](MemoryCacheAdapter.md)
> **new MemoryCacheAdapter**(`initialData`?): [`MemoryCacheAdapter`](MemoryCacheAdapter.md)
#### Parameters

**initalData?**: `Map`\<`string`, `string`\>
**initialData?**: `Map`\<`string`, `string`\>

#### Returns

Expand Down
2 changes: 1 addition & 1 deletion docs/community/ai16z/degenai/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ We can rebuild him
- ai16z is the biggest holder of degenai (a pumpfun coin)
- Current plan for ai16z still is buybacks of degenai
- To-do: We need to surface this better (like a website)
- DegenspartanAI also stacks his own coin as well
- DegenSpartanAI also stacks his own coin as well
- Shitposting while trading
- He might just dump your shit
- May do psyops like self fuds his own bags
Expand Down
4 changes: 3 additions & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@
"@ai-sdk/openai": "1.0.5",
"@anthropic-ai/sdk": "0.30.1",
"@fal-ai/client": "1.2.0",
"@tavily/core": "^0.0.2",
"@types/uuid": "10.0.0",
"ai": "3.4.33",
"anthropic-vertex-ai": "1.0.2",
Expand All @@ -85,7 +86,8 @@
"langchain": "0.3.6",
"ollama-ai-provider": "0.16.1",
"openai": "4.73.0",
"@tavily/core": "^0.0.2",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"tinyld": "1.3.4",
"together-ai": "0.7.0",
"unique-names-generator": "4.7.1",
Expand Down
Loading

0 comments on commit 12384d7

Please sign in to comment.