From b7d01dbbe853c97f29f1b9be4f30d1d52e58d51c Mon Sep 17 00:00:00 2001 From: Lucas Pereira Date: Sat, 22 Feb 2025 11:11:29 -0300 Subject: [PATCH 01/30] feat: Add database adapter and plugin adapter types to core types --- packages/core/src/types.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages/core/src/types.ts b/packages/core/src/types.ts index 4b40244193f..2d2620e472f 100644 --- a/packages/core/src/types.ts +++ b/packages/core/src/types.ts @@ -618,6 +618,14 @@ export type Client = { stop: (runtime: IAgentRuntime) => Promise; }; +/** + * Database adapter initialization + */ +export type Adapter = { + /** Initialize the adapter */ + init: (runtime: IAgentRuntime) => IDatabaseAdapter & IDatabaseCacheAdapter; +}; + /** * Plugin for extending agent functionality */ @@ -642,6 +650,9 @@ export type Plugin = { /** Optional clients */ clients?: Client[]; + + /** Optional adapters */ + adapters?: Adapter[]; }; /** From 82e234348a820da6cc43ec0a61d08c82e67ebaf9 Mon Sep 17 00:00:00 2001 From: Odilitime Date: Sun, 23 Feb 2025 19:44:17 -0800 Subject: [PATCH 02/30] remove duplicate Adapter definition --- packages/core/src/types.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/packages/core/src/types.ts b/packages/core/src/types.ts index 9332780ce35..1649a57de5e 100644 --- a/packages/core/src/types.ts +++ b/packages/core/src/types.ts @@ -636,11 +636,6 @@ export type Client = { start: (runtime: IAgentRuntime) => Promise; }; -export type Adapter = { - /** Initialize adapter */ - init: (runtime: IAgentRuntime) => IDatabaseAdapter & IDatabaseCacheAdapter; -}; - /** * Database adapter initialization */ From f2d38395c99db78537956a07e074d6e1aebe3d6a Mon Sep 17 00:00:00 2001 From: Odilitime Date: Sun, 23 Feb 2025 19:51:12 -0800 Subject: [PATCH 03/30] fix bad merge --- packages/core/src/types.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/packages/core/src/types.ts b/packages/core/src/types.ts index 1649a57de5e..a2dbdca23e0 100644 --- a/packages/core/src/types.ts +++ b/packages/core/src/types.ts @@ -676,10 +676,6 @@ export type Plugin = { adapters?: Adapter[]; }; - /** Optional adapters */ - adapters?: Adapter[]; -}; - export interface IAgentConfig { [key: string]: string; } From 8ca7a36f592d78cacb4c66ec028875a4faade8ef Mon Sep 17 00:00:00 2001 From: "clement.l" Date: Mon, 24 Feb 2025 11:52:23 +0800 Subject: [PATCH 04/30] docs: Update plugins.md --- docs/docs/packages/plugins.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/docs/packages/plugins.md b/docs/docs/packages/plugins.md index d29edef7d43..ea5500e218f 100644 --- a/docs/docs/packages/plugins.md +++ b/docs/docs/packages/plugins.md @@ -742,11 +742,11 @@ cargo run --ip-addr : docker run --init -p 127.0.0.1:1350:1350 marlinorg/attestation-server-custom-mock ``` -### 12. Allora Plugin (`@elizaos/allora-plugin`) +#### 12. Allora Plugin (`@elizaos/allora-plugin`) The [Allora Network](https://allora.network) plugin seamlessly empowers Eliza agents with real-time, advanced, self-improving AI inferences, delivering high-performance insights without introducing any additional complexity. -#### Setup and Configuration +**Setup and Configuration** 1. Add the plugin to your character's configuration @@ -761,7 +761,7 @@ The [Allora Network](https://allora.network) plugin seamlessly empowers Eliza ag 2. Set the following environment variables: - `ALLORA_API_KEY`: Create an API key by [creating an account](https://developer.upshot.xyz/signup). -#### Actions +**Actions** - `GET_INFERENCE`: Retrieves predictions for a specific topic. @@ -775,7 +775,7 @@ Agent: "Inference provided by Allora Network on topic ETH 5min Prediction (ID: 1 For detailed information and additional implementation examples, please refer to the [Allora-Eliza integration docs](https://docs.allora.network/marketplace/integrations/eliza-os/implementation). -### 13. Form Plugin (`@elizaos/plugin-form`) +#### 13. Form Plugin (`@elizaos/plugin-form`) The Form chain plugin enables interaction with Form blockchain's unique SocialFi token economics including but not limited to the Bonding Curves tokens. It provides functionality for buying, selling, withdrawing, depositing, and managing curves tokens. From 531b4318cdef33b70bfdf66da73558b29a14caef Mon Sep 17 00:00:00 2001 From: boolkeys Date: Mon, 24 Feb 2025 15:47:53 +0100 Subject: [PATCH 05/30] Fix: Handle short text items in knowledge processing --- packages/core/src/knowledge.ts | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/packages/core/src/knowledge.ts b/packages/core/src/knowledge.ts index 1b4debf3696..3ba27228b36 100644 --- a/packages/core/src/knowledge.ts +++ b/packages/core/src/knowledge.ts @@ -81,6 +81,25 @@ async function set( }); const preprocessed = preprocess(item.content.text); + + // If text is shorter than chunk size, don't split it + if (preprocessed.length <= chunkSize) { + const embedding = await embed(runtime, preprocessed); + await runtime.knowledgeManager.createMemory({ + id: stringToUuid(item.id + preprocessed), + roomId: runtime.agentId, + agentId: runtime.agentId, + userId: runtime.agentId, + createdAt: Date.now(), + content: { + source: item.id, + text: preprocessed, + }, + embedding, + }); + return; + } + const fragments = await splitChunks(preprocessed, chunkSize, bleed); for (const fragment of fragments) { From e160fe8273a6bdb2084f130079571d5a4e501ccc Mon Sep 17 00:00:00 2001 From: Katze <62358895+cryptokatze@users.noreply.github.com> Date: Wed, 26 Feb 2025 02:07:23 +0900 Subject: [PATCH 06/30] Update README_KOR.md Translation change to make it more natural in Korean language. and direct translate on things --- i18n/readme/README_KOR.md | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/i18n/readme/README_KOR.md b/i18n/readme/README_KOR.md index 143d6c00e45..ffb228c6965 100644 --- a/i18n/readme/README_KOR.md +++ b/i18n/readme/README_KOR.md @@ -18,13 +18,12 @@ ## โœจ ๊ธฐ๋Šฅ -- ๐Ÿ›  SNS ์ง€์›: ๋””์Šค์ฝ”๋“œ, ํŠธ์œ„ํ„ฐ, ํ…”๋ ˆ๊ทธ๋žจ ์—ฐ๋™ ์ง€์› -- ๐Ÿ”— ๋‹ค์–‘ํ•œ ๋ชจ๋ธ ์ง€์› (Llama, Grok, OpenAI, Anthropic ๋“ฑ) -- ๐Ÿ‘ฅ ๋‹ค์ค‘ ์ง€์›: ๋‹ค์ค‘ ์—์ด์ „ํŠธ ๋ฐ ์ฑ„ํŒ…๋ฐฉ ์ง€์› -- ๐Ÿ“š ๋†’์€ ์œ ์—ฐ์„ฑ: ๋ฐ์ดํ„ฐ๋ฅผ ์‰ฝ๊ฒŒ ์ถ”๊ฐ€ํ•˜๊ณ  ๋‹ค์–‘ํ•œ ์ƒํ˜ธ์ž‘์šฉ ๊ฐ€๋Šฅ -- ๐Ÿ’พ ๊ฒ€์ƒ‰ ์ง€์›: ๋ฐ์ดํ„ฐ์™€ ์ž‘์—…์„ ์‰ฝ๊ฒŒ ์ฐพ์•„๋ณผ ์ˆ˜ ์žˆ๋„๋ก ๊ฒ€์ƒ‰ ๊ธฐ๋Šฅ ์ง€์› -- ๐Ÿš€ ๋†’์€ ํ™•์žฅ์„ฑ: ์‚ฌ์šฉ์ž ์ •์˜ ๋™์ž‘ ๋ฐ ํด๋ผ์ด์–ธํŠธ ์ƒ์„ฑ ๊ฐ€๋Šฅ -- โ˜๏ธ ๋‹ค์–‘ํ•œ AI ๋ชจ๋ธ ์ง€์›: local Llama, OpenAI, Anthropic, Groq ๋“ฑ ๋‹ค์–‘ํ•œ AI ๋ชจ๋ธ์„ ์ง€์›ํ•ฉ๋‹ˆ๋‹ค +- ๐Ÿ›  SNS ์ง€์› - ๋””์Šค์ฝ”๋“œ, X (๊ตฌ ํŠธ์œ„ํ„ฐ), ํ…”๋ ˆ๊ทธ๋žจ ์—ฐ๋™๊ฐ€๋Šฅ +- ๐Ÿ”— ๋‹ค์–‘ํ•œ ๋ชจ๋ธ ์ง€์› - (Llama, Grok, OpenAI, Anthropic, Gemini ๋“ฑ) +- ๐Ÿ‘ฅ ๋‹ค์ค‘ ์—์ด์ „ํŠธ ๋ฐ ์ฑ„ํŒ…๋ฐฉ ์ง€์› +- ๐Ÿ“š ๋ฐ์ดํ„ฐ๋ฅผ ์‰ฝ๊ฒŒ ์ถ”๊ฐ€ํ•˜๊ณ  ๋‹ค์–‘ํ•œ ์ƒํ˜ธ์ž‘์šฉ ๊ฐ€๋Šฅ +- ๐Ÿ’พ ๋˜๋Œ๋ฆด ์ˆ˜ ์žˆ๋Š” ์ฑ„ํŒ… ๊ธฐ๋ก(๋ฉ”๋ชจ๋ฆฌ), ๊ธฐ์กด ์ž๋ฃŒ ์ €์žฅ ๊ธฐ๋Šฅ +- ๐Ÿš€ ๋†’์€ ํ™•์žฅ์„ฑ - ์‚ฌ์šฉ์ž ์ •์˜ ๋™์ž‘ ๋ฐ ํด๋ผ์ด์–ธํŠธ ์ƒ์„ฑ ๊ฐ€๋Šฅ - ๐Ÿ“ฆ ์ฆ๊ฒ๊ฒŒ ๊ฐœ๋ฐœํ•ด ๋ด์š”! ## ํŠœํ† ๋ฆฌ์–ผ ๋™์˜์ƒ @@ -34,8 +33,8 @@ ## ๐ŸŽฏ ์‚ฌ์šฉ ์‚ฌ๋ก€ - ๐Ÿค– ์ฑ—๋ด‡ -- ๐Ÿ•ต ๏ธ์ž์œจ ์—์ด์ „ํŠธ -- ๐Ÿ“ˆ ์ž๋™ํ™” ํ”„๋กœ์„ธ์Šค +- ๐Ÿ•ต ๏ธ์ž๋™ํ™” ์—์ด์ „ํŠธ +- ๐Ÿ“ˆ ์‚ฌ์—… ์šด์˜ ์ž๋™ํ™” - ๐ŸŽฎ ๋น„๋””์˜ค ๊ฒŒ์ž„ NPC - ๐Ÿง  ํŠธ๋ ˆ์ด๋”ฉ From a4cb8cd598222d9ee98150e7dc399684b0085a7a Mon Sep 17 00:00:00 2001 From: v1xingyue Date: Wed, 26 Feb 2025 05:48:41 +0800 Subject: [PATCH 07/30] feat: checking the plugin is installed and display the result (#3660) * update discord link * checking the plugin is installed and display the result --------- Co-authored-by: Odilitime --- packages/cli/index.js | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/packages/cli/index.js b/packages/cli/index.js index cfaf2032f5c..b8a60ed0bd8 100755 --- a/packages/cli/index.js +++ b/packages/cli/index.js @@ -1,12 +1,26 @@ #!/usr/bin/env node + const { execSync } = require('child_process') const pathUtil = require('path') const fs = require('fs') const { Command } = require('commander') - const program = new Command() const { version } = require('./package.json') + +const pluginPkgPath = (pluginRepo) => { + const parts = pluginRepo.split('/') + const elizaOSroot = pathUtil.resolve(__dirname, '../..') + const pkgPath = elizaOSroot + '/packages/' + parts[1] + return pkgPath +} + +const isPluginInstalled = (pluginRepo) => { + const pkgPath = pluginPkgPath(pluginRepo) + const packageJsonPath = pkgPath + '/package.json' + return fs.existsSync(packageJsonPath) +} + program .name('elizaos') .description('elizaOS CLI - Manage your plugins') @@ -21,6 +35,8 @@ async function getPlugins() { return await resp.json(); } + + plugins .command('list') .alias('l') @@ -36,7 +52,7 @@ plugins console.info("\nAvailable plugins:") for (const plugin of pluginNames) { - console.info(` ${plugin}`) + console.info(` ${isPluginInstalled(plugins[plugin]) ? 'โœ…' : ' '} ${plugin} `) } console.info("") } catch (error) { @@ -59,7 +75,7 @@ plugins return } - const plugins = await getPlugins() + const repoData = plugins[plugin]?.split(':') if (!repoData) { console.error('Plugin', plugin, 'not found') From 5b21cc7b9f216aaa016df17e9ca659d2be3decaf Mon Sep 17 00:00:00 2001 From: leopardracer <136604165+leopardracer@users.noreply.github.com> Date: Tue, 25 Feb 2025 22:51:16 +0100 Subject: [PATCH 08/30] Fix Typographical Errors in Documentation (#3656) * Update contributing.md * Update characterfile.md --- docs/docs/contributing.md | 2 +- docs/docs/core/characterfile.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/contributing.md b/docs/docs/contributing.md index b81690e5bee..72a9b294c0f 100644 --- a/docs/docs/contributing.md +++ b/docs/docs/contributing.md @@ -63,7 +63,7 @@ By contributing to elizaOS, you agree that your contributions will be licensed u This section lists the title prefix we use to help us track and manage pull requests. These prefixes must be lower case - `fix` - Issues that fixes bugs. -- `feat` - New feature, updates or improvemnts. +- `feat` - New feature, updates or improvements. - `docs` - Issues or pull requests related to documentation. - `chore` - General repo maintenance diff --git a/docs/docs/core/characterfile.md b/docs/docs/core/characterfile.md index 634215a8987..90ddfb3edd9 100644 --- a/docs/docs/core/characterfile.md +++ b/docs/docs/core/characterfile.md @@ -7,7 +7,7 @@ Character files are JSON-formatted configurations that define AI agent personas, ```json { - "name": "character_name", // Character's display name for identifcation and in conversations + "name": "character_name", // Character's display name for identification and in conversations "modelProvider": "openai", // AI model provider (e.g., anthropic, openai, groq, mistral, google) "clients": ["discord", "direct"], // Supported client types "plugins": [], // Array of plugins to use From 5aefdc8fa97eebb34c5c559f4ce8933209c5c8e3 Mon Sep 17 00:00:00 2001 From: odilitime Date: Tue, 25 Feb 2025 23:17:17 +0000 Subject: [PATCH 09/30] fix install action --- packages/cli/index.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/cli/index.js b/packages/cli/index.js index b8a60ed0bd8..53333390a2c 100755 --- a/packages/cli/index.js +++ b/packages/cli/index.js @@ -26,7 +26,7 @@ program .description('elizaOS CLI - Manage your plugins') .version(version); -const plugins = new Command() +const pluginsCmd = new Command() .name('plugins') .description('manage elizaOS plugins') @@ -37,7 +37,7 @@ async function getPlugins() { -plugins +pluginsCmd .command('list') .alias('l') .alias('ls') @@ -60,7 +60,7 @@ plugins } }) -plugins +pluginsCmd .command('add') .alias('install') .description('add a plugin') @@ -75,7 +75,7 @@ plugins return } - + const plugins = await getPlugins() const repoData = plugins[plugin]?.split(':') if (!repoData) { console.error('Plugin', plugin, 'not found') @@ -129,7 +129,7 @@ plugins console.log('Remember to add it to your character file\'s plugin field: ["' + plugin + '"]') }) -plugins +pluginsCmd .command('remove') .alias('delete') .alias('del') @@ -172,6 +172,6 @@ plugins }) -program.addCommand(plugins) +program.addCommand(pluginsCmd) program.parse(process.argv) From bdfd5916857fea52fac0fbb665b37f9cee7df24e Mon Sep 17 00:00:00 2001 From: Woolfgm <160153877+Dahka2321@users.noreply.github.com> Date: Wed, 26 Feb 2025 10:37:26 +0100 Subject: [PATCH 10/30] Update agents.md --- docs/docs/core/agents.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/core/agents.md b/docs/docs/core/agents.md index ec87b266476..3e78e6104c6 100644 --- a/docs/docs/core/agents.md +++ b/docs/docs/core/agents.md @@ -23,7 +23,7 @@ The [AgentRuntime](/api/classes/AgentRuntime) class is the primary implementatio | Component | Description | API Reference | Related Files | |---------|-------------|---------------|---------------| -| **Clients** | Supports multiple communication platforms for seamless interaction. | [Clients API](/api/interfaces/IAgentRuntime/#clients) | [`clients.ts`](https://github.com/elizaos/runtime/clients.ts), [`Discord`](https://github.com/elizaos-plugins/client-discord), [`Telegram`](https://github.com/elizaos-plugins/client-telegram), [`Twitter`](https://github.com/elizaos-plugins/client-twitter), [`Farcaster`](https://github.com/elizaos-plugins/client-farcaster), [`Lens`](https://github.com/elizaos-plugins/client-lens), [`Slack`](https://github.com/elizaos-plugins/client-slack), [`Auto`](https://github.com/elizaos-plugins/client-auto), [`GitHub`](https://github.com/elizaos-plugins/client-github) | +| **Clients** | Supports multiple communication platforms for seamless interaction. | [Clients API](/api/interfaces/IAgentRuntime/#clients) | [`clients.ts`](https://github.com/elizaos-plugins/client-discord/blob/main/__tests__/discord-client.test.ts), [`Discord`](https://github.com/elizaos-plugins/client-discord), [`Telegram`](https://github.com/elizaos-plugins/client-telegram), [`Twitter`](https://github.com/elizaos-plugins/client-twitter), [`Farcaster`](https://github.com/elizaos-plugins/client-farcaster), [`Lens`](https://github.com/elizaos-plugins/client-lens), [`Slack`](https://github.com/elizaos-plugins/client-slack), [`Auto`](https://github.com/elizaos-plugins/client-auto), [`GitHub`](https://github.com/elizaos-plugins/client-github) | | **State** | Maintains context for coherent cross-platform interactions, updates dynamically. Also tracks goals, knowledge, and recent interactions | [State API](/api/interfaces/State) | [`state.ts`](https://github.com/elizaos/runtime/state.ts) | | **Plugins** | Dynamic extensions of agent functionalities using custom actions, evaluators, providers, and adapters | [Plugins API](/api/type-aliases/Plugin/) | [`plugins.ts`](https://github.com/elizaos/runtime/plugins.ts), [actions](../actions), [evaluators](../evaluators), [providers](../providers) | | **Services** | Connects with external services for `IMAGE_DESCRIPTION`, `TRANSCRIPTION`, `TEXT_GENERATION`, `SPEECH_GENERATION`, `VIDEO`, `PDF`, `BROWSER`, `WEB_SEARCH`, `EMAIL_AUTOMATION`, and more | [Services API](/api/interfaces/IAgentRuntime/#services) | [`services.ts`](https://github.com/elizaos/runtime/services.ts) | From af250d15725ee588ff0873ad1b4fe8c44725046a Mon Sep 17 00:00:00 2001 From: jin <32600939+madjin@users.noreply.github.com> Date: Wed, 26 Feb 2025 15:51:15 -0500 Subject: [PATCH 11/30] chore: Update docs, adds changelog notes, merges pages, cleanup (#3694) * update jsdocs workflow * add elizaOS config * chore: update pnpm lockfile * tag => maybe develop, options for env config, plugin selection section, character file(s) section * update quickstart * update quickstart and character file page * add video embeds * merge docker setup into quickstart * add script to update changelog with latest release notes * stash infrastructure page until further updates * update api docs --------- Co-authored-by: github-actions[bot] Co-authored-by: odilitime --- docs/api/classes/AgentRuntime.md | 2 +- docs/api/classes/CacheManager.md | 2 +- docs/api/classes/DatabaseAdapter.md | 2 +- docs/api/classes/DbCacheAdapter.md | 2 +- docs/api/classes/FsCacheAdapter.md | 2 +- docs/api/classes/MemoryCacheAdapter.md | 2 +- docs/api/classes/MemoryManager.md | 2 +- docs/api/classes/RAGKnowledgeManager.md | 2 +- docs/api/classes/Service.md | 10 +- docs/api/enumerations/ActionTimelineType.md | 6 +- docs/api/enumerations/CacheKeyPrefix.md | 4 +- docs/api/enumerations/CacheStore.md | 8 +- docs/api/enumerations/GoalStatus.md | 2 +- docs/api/enumerations/IrysDataType.md | 8 +- docs/api/enumerations/IrysMessageType.md | 8 +- docs/api/enumerations/KnowledgeScope.md | 6 +- docs/api/enumerations/LoggingLevel.md | 8 +- docs/api/enumerations/ModelClass.md | 2 +- docs/api/enumerations/ModelProviderName.md | 96 +- docs/api/enumerations/ServiceType.md | 46 +- docs/api/enumerations/TokenizerType.md | 6 +- .../api/enumerations/TranscriptionProvider.md | 8 +- docs/api/functions/addHeader.md | 2 +- docs/api/functions/cleanJsonResponse.md | 2 +- docs/api/functions/composeActionExamples.md | 2 +- docs/api/functions/composeContext.md | 2 +- docs/api/functions/composeRandomUser.md | 2 +- docs/api/functions/configureSettings.md | 2 +- docs/api/functions/createGoal.md | 2 +- docs/api/functions/createRelationship.md | 2 +- docs/api/functions/embed.md | 2 +- docs/api/functions/extractAttributes.md | 2 +- docs/api/functions/findNearestEnvFile.md | 2 +- docs/api/functions/formatActionNames.md | 2 +- docs/api/functions/formatActions.md | 2 +- docs/api/functions/formatActors.md | 2 +- .../formatEvaluatorExampleDescriptions.md | 2 +- docs/api/functions/formatEvaluatorExamples.md | 2 +- docs/api/functions/formatEvaluatorNames.md | 2 +- docs/api/functions/formatEvaluators.md | 2 +- docs/api/functions/formatGoalsAsString.md | 2 +- docs/api/functions/formatMessages.md | 2 +- docs/api/functions/formatPosts.md | 2 +- docs/api/functions/formatRelationships.md | 2 +- docs/api/functions/formatTimestamp.md | 2 +- docs/api/functions/generateCaption.md | 4 +- docs/api/functions/generateImage.md | 4 +- docs/api/functions/generateMessageResponse.md | 4 +- docs/api/functions/generateObject.md | 4 +- docs/api/functions/generateObjectArray.md | 4 +- .../api/functions/generateObjectDeprecated.md | 4 +- docs/api/functions/generateShouldRespond.md | 4 +- docs/api/functions/generateText.md | 4 +- docs/api/functions/generateTextArray.md | 4 +- docs/api/functions/generateTrueOrFalse.md | 4 +- docs/api/functions/generateTweetActions.md | 4 +- docs/api/functions/getActorDetails.md | 2 +- docs/api/functions/getEmbeddingConfig.md | 2 +- .../functions/getEmbeddingModelSettings.md | 4 +- docs/api/functions/getEmbeddingType.md | 2 +- docs/api/functions/getEmbeddingZeroVector.md | 2 +- docs/api/functions/getEndpoint.md | 4 +- docs/api/functions/getEnvVariable.md | 2 +- docs/api/functions/getGoals.md | 2 +- docs/api/functions/getImageModelSettings.md | 4 +- docs/api/functions/getModelSettings.md | 4 +- docs/api/functions/getProviders.md | 2 +- docs/api/functions/getRelationship.md | 2 +- docs/api/functions/getRelationships.md | 2 +- docs/api/functions/handleProvider.md | 4 +- docs/api/functions/hasEnvVariable.md | 2 +- docs/api/functions/loadEnvConfig.md | 2 +- docs/api/functions/normalizeJsonString.md | 2 +- .../functions/parseActionResponseFromText.md | 2 +- docs/api/functions/parseBooleanFromText.md | 2 +- docs/api/functions/parseJSONObjectFromText.md | 2 +- docs/api/functions/parseJsonArrayFromText.md | 2 +- .../functions/parseShouldRespondFromText.md | 2 +- docs/api/functions/splitChunks.md | 8 +- docs/api/functions/splitText.md | 21 + docs/api/functions/stringToUuid.md | 2 +- docs/api/functions/trimTokens.md | 4 +- .../functions/truncateToCompleteSentence.md | 2 +- docs/api/functions/updateGoal.md | 2 +- docs/api/functions/validateCharacterConfig.md | 2 +- docs/api/functions/validateEnv.md | 2 +- docs/api/functions/validateUuid.md | 2 +- docs/api/index.md | 3 +- docs/api/interfaces/Account.md | 14 +- docs/api/interfaces/Action.md | 16 +- docs/api/interfaces/ActionExample.md | 2 +- docs/api/interfaces/ActionResponse.md | 10 +- docs/api/interfaces/Actor.md | 2 +- docs/api/interfaces/ChunkRow.md | 4 +- docs/api/interfaces/Content.md | 2 +- docs/api/interfaces/ConversationExample.md | 2 +- docs/api/interfaces/DataIrysFetchedFromGQL.md | 8 +- docs/api/interfaces/DirectoryItem.md | 6 +- docs/api/interfaces/EvaluationExample.md | 8 +- docs/api/interfaces/Evaluator.md | 16 +- docs/api/interfaces/GenerationOptions.md | 20 +- docs/api/interfaces/Goal.md | 2 +- docs/api/interfaces/GraphQLTag.md | 6 +- docs/api/interfaces/IAgentConfig.md | 2 +- docs/api/interfaces/IAgentRuntime.md | 80 +- docs/api/interfaces/IAwsS3Service.md | 10 +- docs/api/interfaces/IBrowserService.md | 10 +- docs/api/interfaces/ICacheAdapter.md | 2 +- docs/api/interfaces/ICacheManager.md | 8 +- docs/api/interfaces/IDatabaseAdapter.md | 88 +- docs/api/interfaces/IDatabaseCacheAdapter.md | 8 +- .../interfaces/IImageDescriptionService.md | 8 +- docs/api/interfaces/IIrysService.md | 12 +- docs/api/interfaces/IMemoryManager.md | 28 +- docs/api/interfaces/IPdfService.md | 10 +- docs/api/interfaces/IRAGKnowledgeManager.md | 22 +- docs/api/interfaces/ISlackService.md | 8 +- docs/api/interfaces/ISpeechService.md | 10 +- docs/api/interfaces/ITeeLogService.md | 10 +- docs/api/interfaces/ITextGenerationService.md | 14 +- docs/api/interfaces/ITranscriptionService.md | 14 +- docs/api/interfaces/IVideoService.md | 14 +- docs/api/interfaces/IrysTimestamp.md | 6 +- docs/api/interfaces/Memory.md | 20 +- docs/api/interfaces/MessageExample.md | 6 +- docs/api/interfaces/ModelConfiguration.md | 14 +- docs/api/interfaces/Objective.md | 2 +- docs/api/interfaces/Participant.md | 6 +- docs/api/interfaces/Provider.md | 4 +- docs/api/interfaces/RAGKnowledgeItem.md | 16 +- docs/api/interfaces/Relationship.md | 16 +- docs/api/interfaces/Room.md | 6 +- docs/api/interfaces/State.md | 56 +- .../interfaces/TwitterSpaceDecisionOptions.md | 28 +- docs/api/interfaces/UploadIrysResult.md | 10 +- docs/api/type-aliases/Adapter.md | 8 +- docs/api/type-aliases/CacheOptions.md | 4 +- docs/api/type-aliases/Character.md | 4 +- docs/api/type-aliases/CharacterConfig.md | 2 +- docs/api/type-aliases/Client.md | 4 +- docs/api/type-aliases/ClientInstance.md | 4 +- docs/api/type-aliases/EmbeddingConfig.md | 2 +- .../type-aliases/EmbeddingModelSettings.md | 2 +- .../api/type-aliases/EmbeddingProviderType.md | 2 +- docs/api/type-aliases/EnvConfig.md | 2 +- docs/api/type-aliases/Handler.md | 4 +- docs/api/type-aliases/HandlerCallback.md | 4 +- docs/api/type-aliases/ImageModelSettings.md | 2 +- docs/api/type-aliases/KnowledgeItem.md | 4 +- docs/api/type-aliases/Media.md | 4 +- docs/api/type-aliases/Model.md | 2 +- docs/api/type-aliases/ModelSettings.md | 2 +- docs/api/type-aliases/Models.md | 14 +- docs/api/type-aliases/Plugin.md | 4 +- docs/api/type-aliases/TelemetrySettings.md | 4 +- docs/api/type-aliases/TemplateType.md | 4 +- docs/api/type-aliases/UUID.md | 2 +- docs/api/type-aliases/Validator.md | 4 +- docs/api/typedoc-sidebar.cjs | 2 +- docs/api/variables/CharacterSchema.md | 2 +- docs/api/variables/EmbeddingProvider.md | 2 +- docs/api/variables/booleanFooter.md | 2 +- docs/api/variables/elizaLogger.md | 2 +- docs/api/variables/envSchema.md | 2 +- docs/api/variables/evaluationTemplate.md | 2 +- docs/api/variables/knowledge.md | 4 +- docs/api/variables/messageCompletionFooter.md | 2 +- docs/api/variables/models.md | 2 +- .../api/variables/postActionResponseFooter.md | 2 +- docs/api/variables/settings.md | 2 +- docs/api/variables/shouldRespondFooter.md | 2 +- docs/api/variables/stringArrayFooter.md | 2 +- docs/api/variables/uuidSchema.md | 2 +- docs/docs/changelog.md | 3337 +++++++++++++++++ docs/docs/core/characterfile.md | 4 + docs/docs/core/clients.md | 52 +- docs/docs/core/overview.md | 2 +- docs/docs/core/plugins.md | 209 ++ docs/docs/quickstart.md | 398 +- .../tutorials/.nader_tutorial_15min.md.swp | Bin 12288 -> 0 bytes docs/docs/tutorials/nader_tutorial_10min.md | 8 + docs/docs/tutorials/nader_tutorial_15min.md | 9 + docs/docs/tutorials/nader_tutorial_35min.md | 17 +- docs/docs/tutorials/part1.md | 18 + docs/docs/tutorials/part2.md | 11 + docs/docs/tutorials/part3.md | 10 + docs/{docs/packages => notes}/clients.md | 0 .../packages => notes}/database-adapters.md | 0 docs/{docs/guides => notes}/docker-setup.md | 0 .../advanced => notes}/infrastructure.md | 0 docs/notes/packages/clients.md | 606 +++ docs/notes/packages/database-adapters.md | 380 ++ docs/{docs => notes}/packages/plugins.md | 0 docs/notes/plugins.md | 1019 +++++ docs/scripts/get-changelog.py | 259 ++ docs/sidebars.js | 32 +- docs/src/css/custom.css | 19 + docs/static/img/elizagen.png | Bin 0 -> 287294 bytes scripts/jsdoc-automation/src/JsDocCleaner.ts | 79 + 199 files changed, 6806 insertions(+), 875 deletions(-) create mode 100644 docs/api/functions/splitText.md create mode 100644 docs/docs/changelog.md create mode 100644 docs/docs/core/plugins.md delete mode 100644 docs/docs/tutorials/.nader_tutorial_15min.md.swp rename docs/{docs/packages => notes}/clients.md (100%) rename docs/{docs/packages => notes}/database-adapters.md (100%) rename docs/{docs/guides => notes}/docker-setup.md (100%) rename docs/{docs/advanced => notes}/infrastructure.md (100%) create mode 100644 docs/notes/packages/clients.md create mode 100644 docs/notes/packages/database-adapters.md rename docs/{docs => notes}/packages/plugins.md (100%) create mode 100644 docs/notes/plugins.md create mode 100644 docs/scripts/get-changelog.py create mode 100644 docs/static/img/elizagen.png create mode 100644 scripts/jsdoc-automation/src/JsDocCleaner.ts diff --git a/docs/api/classes/AgentRuntime.md b/docs/api/classes/AgentRuntime.md index 9b1499f9636..c76a8265412 100644 --- a/docs/api/classes/AgentRuntime.md +++ b/docs/api/classes/AgentRuntime.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / AgentRuntime +[@elizaos/core v0.25.8](../index.md) / AgentRuntime # Class: AgentRuntime diff --git a/docs/api/classes/CacheManager.md b/docs/api/classes/CacheManager.md index a3c98ef187b..1d31f23288f 100644 --- a/docs/api/classes/CacheManager.md +++ b/docs/api/classes/CacheManager.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / CacheManager +[@elizaos/core v0.25.8](../index.md) / CacheManager # Class: CacheManager\ diff --git a/docs/api/classes/DatabaseAdapter.md b/docs/api/classes/DatabaseAdapter.md index 90f1caed1b1..4fad4200e78 100644 --- a/docs/api/classes/DatabaseAdapter.md +++ b/docs/api/classes/DatabaseAdapter.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / DatabaseAdapter +[@elizaos/core v0.25.8](../index.md) / DatabaseAdapter # Class: `abstract` DatabaseAdapter\ diff --git a/docs/api/classes/DbCacheAdapter.md b/docs/api/classes/DbCacheAdapter.md index 6061c844fc1..0148c24d5e4 100644 --- a/docs/api/classes/DbCacheAdapter.md +++ b/docs/api/classes/DbCacheAdapter.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / DbCacheAdapter +[@elizaos/core v0.25.8](../index.md) / DbCacheAdapter # Class: DbCacheAdapter diff --git a/docs/api/classes/FsCacheAdapter.md b/docs/api/classes/FsCacheAdapter.md index 0a31626c9b6..7b1337745ef 100644 --- a/docs/api/classes/FsCacheAdapter.md +++ b/docs/api/classes/FsCacheAdapter.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / FsCacheAdapter +[@elizaos/core v0.25.8](../index.md) / FsCacheAdapter # Class: FsCacheAdapter diff --git a/docs/api/classes/MemoryCacheAdapter.md b/docs/api/classes/MemoryCacheAdapter.md index 154ba0b3591..e08eb037a14 100644 --- a/docs/api/classes/MemoryCacheAdapter.md +++ b/docs/api/classes/MemoryCacheAdapter.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / MemoryCacheAdapter +[@elizaos/core v0.25.8](../index.md) / MemoryCacheAdapter # Class: MemoryCacheAdapter diff --git a/docs/api/classes/MemoryManager.md b/docs/api/classes/MemoryManager.md index 5d180d325aa..16eb73dc95f 100644 --- a/docs/api/classes/MemoryManager.md +++ b/docs/api/classes/MemoryManager.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / MemoryManager +[@elizaos/core v0.25.8](../index.md) / MemoryManager # Class: MemoryManager diff --git a/docs/api/classes/RAGKnowledgeManager.md b/docs/api/classes/RAGKnowledgeManager.md index 567b1549c9a..52e7d946e1a 100644 --- a/docs/api/classes/RAGKnowledgeManager.md +++ b/docs/api/classes/RAGKnowledgeManager.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / RAGKnowledgeManager +[@elizaos/core v0.25.8](../index.md) / RAGKnowledgeManager # Class: RAGKnowledgeManager diff --git a/docs/api/classes/Service.md b/docs/api/classes/Service.md index 207513909fb..2e2452d82d6 100644 --- a/docs/api/classes/Service.md +++ b/docs/api/classes/Service.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / Service +[@elizaos/core v0.25.8](../index.md) / Service # Class: `abstract` Service @@ -40,7 +40,7 @@ #### Defined in -[packages/core/src/types.ts:1252](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1252) +[packages/core/src/types.ts:1259](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1259) *** @@ -56,7 +56,7 @@ #### Defined in -[packages/core/src/types.ts:1263](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1263) +[packages/core/src/types.ts:1270](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1270) ## Methods @@ -74,7 +74,7 @@ #### Defined in -[packages/core/src/types.ts:1256](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1256) +[packages/core/src/types.ts:1263](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1263) *** @@ -94,4 +94,4 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1268](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1268) +[packages/core/src/types.ts:1275](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1275) diff --git a/docs/api/enumerations/ActionTimelineType.md b/docs/api/enumerations/ActionTimelineType.md index 0f63d9b52cd..2c3eea8a8e8 100644 --- a/docs/api/enumerations/ActionTimelineType.md +++ b/docs/api/enumerations/ActionTimelineType.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / ActionTimelineType +[@elizaos/core v0.25.8](../index.md) / ActionTimelineType # Enumeration: ActionTimelineType @@ -10,7 +10,7 @@ #### Defined in -[packages/core/src/types.ts:1584](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1584) +[packages/core/src/types.ts:1592](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1592) *** @@ -20,4 +20,4 @@ #### Defined in -[packages/core/src/types.ts:1585](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1585) +[packages/core/src/types.ts:1593](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1593) diff --git a/docs/api/enumerations/CacheKeyPrefix.md b/docs/api/enumerations/CacheKeyPrefix.md index 4307e43ef38..20683eaf718 100644 --- a/docs/api/enumerations/CacheKeyPrefix.md +++ b/docs/api/enumerations/CacheKeyPrefix.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / CacheKeyPrefix +[@elizaos/core v0.25.8](../index.md) / CacheKeyPrefix # Enumeration: CacheKeyPrefix @@ -10,4 +10,4 @@ #### Defined in -[packages/core/src/types.ts:1593](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1593) +[packages/core/src/types.ts:1601](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1601) diff --git a/docs/api/enumerations/CacheStore.md b/docs/api/enumerations/CacheStore.md index e05d78993d6..5db5db3399e 100644 --- a/docs/api/enumerations/CacheStore.md +++ b/docs/api/enumerations/CacheStore.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / CacheStore +[@elizaos/core v0.25.8](../index.md) / CacheStore # Enumeration: CacheStore @@ -10,7 +10,7 @@ #### Defined in -[packages/core/src/types.ts:1238](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1238) +[packages/core/src/types.ts:1245](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1245) *** @@ -20,7 +20,7 @@ #### Defined in -[packages/core/src/types.ts:1239](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1239) +[packages/core/src/types.ts:1246](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1246) *** @@ -30,4 +30,4 @@ #### Defined in -[packages/core/src/types.ts:1240](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1240) +[packages/core/src/types.ts:1247](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1247) diff --git a/docs/api/enumerations/GoalStatus.md b/docs/api/enumerations/GoalStatus.md index 78c02b84cb5..82b4e428540 100644 --- a/docs/api/enumerations/GoalStatus.md +++ b/docs/api/enumerations/GoalStatus.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / GoalStatus +[@elizaos/core v0.25.8](../index.md) / GoalStatus # Enumeration: GoalStatus diff --git a/docs/api/enumerations/IrysDataType.md b/docs/api/enumerations/IrysDataType.md index fd0c60ace90..8d82bcfb892 100644 --- a/docs/api/enumerations/IrysDataType.md +++ b/docs/api/enumerations/IrysDataType.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / IrysDataType +[@elizaos/core v0.25.8](../index.md) / IrysDataType # Enumeration: IrysDataType @@ -10,7 +10,7 @@ #### Defined in -[packages/core/src/types.ts:1462](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1462) +[packages/core/src/types.ts:1469](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1469) *** @@ -20,7 +20,7 @@ #### Defined in -[packages/core/src/types.ts:1463](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1463) +[packages/core/src/types.ts:1470](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1470) *** @@ -30,4 +30,4 @@ #### Defined in -[packages/core/src/types.ts:1464](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1464) +[packages/core/src/types.ts:1471](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1471) diff --git a/docs/api/enumerations/IrysMessageType.md b/docs/api/enumerations/IrysMessageType.md index d644645fcdc..3044c590df2 100644 --- a/docs/api/enumerations/IrysMessageType.md +++ b/docs/api/enumerations/IrysMessageType.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / IrysMessageType +[@elizaos/core v0.25.8](../index.md) / IrysMessageType # Enumeration: IrysMessageType @@ -10,7 +10,7 @@ #### Defined in -[packages/core/src/types.ts:1456](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1456) +[packages/core/src/types.ts:1463](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1463) *** @@ -20,7 +20,7 @@ #### Defined in -[packages/core/src/types.ts:1457](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1457) +[packages/core/src/types.ts:1464](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1464) *** @@ -30,4 +30,4 @@ #### Defined in -[packages/core/src/types.ts:1458](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1458) +[packages/core/src/types.ts:1465](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1465) diff --git a/docs/api/enumerations/KnowledgeScope.md b/docs/api/enumerations/KnowledgeScope.md index 3ea72439515..e1f2613def3 100644 --- a/docs/api/enumerations/KnowledgeScope.md +++ b/docs/api/enumerations/KnowledgeScope.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / KnowledgeScope +[@elizaos/core v0.25.8](../index.md) / KnowledgeScope # Enumeration: KnowledgeScope @@ -10,7 +10,7 @@ #### Defined in -[packages/core/src/types.ts:1588](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1588) +[packages/core/src/types.ts:1596](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1596) *** @@ -20,4 +20,4 @@ #### Defined in -[packages/core/src/types.ts:1589](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1589) +[packages/core/src/types.ts:1597](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1597) diff --git a/docs/api/enumerations/LoggingLevel.md b/docs/api/enumerations/LoggingLevel.md index b6dc0e38d32..2dfa1299331 100644 --- a/docs/api/enumerations/LoggingLevel.md +++ b/docs/api/enumerations/LoggingLevel.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / LoggingLevel +[@elizaos/core v0.25.8](../index.md) / LoggingLevel # Enumeration: LoggingLevel @@ -10,7 +10,7 @@ #### Defined in -[packages/core/src/types.ts:1529](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1529) +[packages/core/src/types.ts:1537](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1537) *** @@ -20,7 +20,7 @@ #### Defined in -[packages/core/src/types.ts:1530](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1530) +[packages/core/src/types.ts:1538](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1538) *** @@ -30,4 +30,4 @@ #### Defined in -[packages/core/src/types.ts:1531](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1531) +[packages/core/src/types.ts:1539](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1539) diff --git a/docs/api/enumerations/ModelClass.md b/docs/api/enumerations/ModelClass.md index a4e1823ccf6..6053978bc72 100644 --- a/docs/api/enumerations/ModelClass.md +++ b/docs/api/enumerations/ModelClass.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / ModelClass +[@elizaos/core v0.25.8](../index.md) / ModelClass # Enumeration: ModelClass diff --git a/docs/api/enumerations/ModelProviderName.md b/docs/api/enumerations/ModelProviderName.md index 0d91d1e35a6..1f4334910e1 100644 --- a/docs/api/enumerations/ModelProviderName.md +++ b/docs/api/enumerations/ModelProviderName.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / ModelProviderName +[@elizaos/core v0.25.8](../index.md) / ModelProviderName # Enumeration: ModelProviderName @@ -12,7 +12,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:242](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L242) +[packages/core/src/types.ts:244](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L244) *** @@ -22,7 +22,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:243](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L243) +[packages/core/src/types.ts:245](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L245) *** @@ -32,7 +32,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:244](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L244) +[packages/core/src/types.ts:246](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L246) *** @@ -42,7 +42,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:245](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L245) +[packages/core/src/types.ts:247](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L247) *** @@ -52,7 +52,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:246](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L246) +[packages/core/src/types.ts:248](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L248) *** @@ -62,7 +62,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:247](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L247) +[packages/core/src/types.ts:249](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L249) *** @@ -72,7 +72,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:248](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L248) +[packages/core/src/types.ts:250](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L250) *** @@ -82,7 +82,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:249](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L249) +[packages/core/src/types.ts:251](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L251) *** @@ -92,7 +92,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:250](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L250) +[packages/core/src/types.ts:252](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L252) *** @@ -102,7 +102,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:251](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L251) +[packages/core/src/types.ts:253](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L253) *** @@ -112,7 +112,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:252](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L252) +[packages/core/src/types.ts:254](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L254) *** @@ -122,7 +122,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:253](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L253) +[packages/core/src/types.ts:255](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L255) *** @@ -132,7 +132,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:254](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L254) +[packages/core/src/types.ts:256](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L256) *** @@ -142,7 +142,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:255](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L255) +[packages/core/src/types.ts:257](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L257) *** @@ -152,7 +152,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:256](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L256) +[packages/core/src/types.ts:258](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L258) *** @@ -162,7 +162,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:257](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L257) +[packages/core/src/types.ts:259](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L259) *** @@ -172,7 +172,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:258](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L258) +[packages/core/src/types.ts:260](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L260) *** @@ -182,7 +182,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:259](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L259) +[packages/core/src/types.ts:261](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L261) *** @@ -192,7 +192,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:260](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L260) +[packages/core/src/types.ts:262](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L262) *** @@ -202,7 +202,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:261](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L261) +[packages/core/src/types.ts:263](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L263) *** @@ -212,7 +212,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:262](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L262) +[packages/core/src/types.ts:264](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L264) *** @@ -222,7 +222,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:263](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L263) +[packages/core/src/types.ts:265](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L265) *** @@ -232,7 +232,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:264](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L264) +[packages/core/src/types.ts:266](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L266) *** @@ -242,7 +242,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:265](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L265) +[packages/core/src/types.ts:267](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L267) *** @@ -252,7 +252,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:266](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L266) +[packages/core/src/types.ts:268](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L268) *** @@ -262,7 +262,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:267](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L267) +[packages/core/src/types.ts:269](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L269) *** @@ -272,7 +272,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:268](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L268) +[packages/core/src/types.ts:270](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L270) *** @@ -282,15 +282,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:245](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L245) - -### NEARAI - -> **NEARAI**: `"nearai"` - -#### Defined in - -[packages/core/src/types.ts:242](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L275) +[packages/core/src/types.ts:271](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L271) *** @@ -300,7 +292,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:270](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L270) +[packages/core/src/types.ts:272](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L272) *** @@ -310,7 +302,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:271](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L271) +[packages/core/src/types.ts:273](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L273) *** @@ -320,7 +312,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:272](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L272) +[packages/core/src/types.ts:274](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L274) *** @@ -330,7 +322,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:273](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L273) +[packages/core/src/types.ts:275](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L275) *** @@ -340,4 +332,24 @@ Available model providers #### Defined in -[packages/core/src/types.ts:274](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L274) +[packages/core/src/types.ts:276](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L276) + +*** + +### SECRETAI + +> **SECRETAI**: `"secret_ai"` + +#### Defined in + +[packages/core/src/types.ts:277](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L277) + +*** + +### NEARAI + +> **NEARAI**: `"nearai"` + +#### Defined in + +[packages/core/src/types.ts:278](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L278) diff --git a/docs/api/enumerations/ServiceType.md b/docs/api/enumerations/ServiceType.md index b2542c25696..404b0808ff4 100644 --- a/docs/api/enumerations/ServiceType.md +++ b/docs/api/enumerations/ServiceType.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / ServiceType +[@elizaos/core v0.25.8](../index.md) / ServiceType # Enumeration: ServiceType @@ -10,7 +10,7 @@ #### Defined in -[packages/core/src/types.ts:1509](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1509) +[packages/core/src/types.ts:1516](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1516) *** @@ -20,7 +20,7 @@ #### Defined in -[packages/core/src/types.ts:1510](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1510) +[packages/core/src/types.ts:1517](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1517) *** @@ -30,7 +30,7 @@ #### Defined in -[packages/core/src/types.ts:1511](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1511) +[packages/core/src/types.ts:1518](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1518) *** @@ -40,7 +40,7 @@ #### Defined in -[packages/core/src/types.ts:1512](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1512) +[packages/core/src/types.ts:1519](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1519) *** @@ -50,7 +50,7 @@ #### Defined in -[packages/core/src/types.ts:1513](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1513) +[packages/core/src/types.ts:1520](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1520) *** @@ -60,7 +60,7 @@ #### Defined in -[packages/core/src/types.ts:1514](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1514) +[packages/core/src/types.ts:1521](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1521) *** @@ -70,7 +70,7 @@ #### Defined in -[packages/core/src/types.ts:1515](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1515) +[packages/core/src/types.ts:1522](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1522) *** @@ -80,7 +80,7 @@ #### Defined in -[packages/core/src/types.ts:1516](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1516) +[packages/core/src/types.ts:1523](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1523) *** @@ -90,7 +90,7 @@ #### Defined in -[packages/core/src/types.ts:1517](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1517) +[packages/core/src/types.ts:1524](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1524) *** @@ -100,7 +100,7 @@ #### Defined in -[packages/core/src/types.ts:1518](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1518) +[packages/core/src/types.ts:1525](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1525) *** @@ -110,7 +110,7 @@ #### Defined in -[packages/core/src/types.ts:1519](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1519) +[packages/core/src/types.ts:1526](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1526) *** @@ -120,7 +120,7 @@ #### Defined in -[packages/core/src/types.ts:1520](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1520) +[packages/core/src/types.ts:1527](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1527) *** @@ -130,7 +130,7 @@ #### Defined in -[packages/core/src/types.ts:1521](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1521) +[packages/core/src/types.ts:1528](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1528) *** @@ -140,7 +140,7 @@ #### Defined in -[packages/core/src/types.ts:1522](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1522) +[packages/core/src/types.ts:1529](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1529) *** @@ -150,7 +150,7 @@ #### Defined in -[packages/core/src/types.ts:1523](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1523) +[packages/core/src/types.ts:1530](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1530) *** @@ -160,7 +160,7 @@ #### Defined in -[packages/core/src/types.ts:1524](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1524) +[packages/core/src/types.ts:1531](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1531) *** @@ -170,4 +170,14 @@ #### Defined in -[packages/core/src/types.ts:1525](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1525) +[packages/core/src/types.ts:1532](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1532) + +*** + +### NKN\_CLIENT\_SERVICE + +> **NKN\_CLIENT\_SERVICE**: `"nkn_client_service"` + +#### Defined in + +[packages/core/src/types.ts:1533](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1533) diff --git a/docs/api/enumerations/TokenizerType.md b/docs/api/enumerations/TokenizerType.md index 312400ab32c..1248938de56 100644 --- a/docs/api/enumerations/TokenizerType.md +++ b/docs/api/enumerations/TokenizerType.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / TokenizerType +[@elizaos/core v0.25.8](../index.md) / TokenizerType # Enumeration: TokenizerType @@ -10,7 +10,7 @@ #### Defined in -[packages/core/src/types.ts:1573](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1573) +[packages/core/src/types.ts:1581](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1581) *** @@ -20,4 +20,4 @@ #### Defined in -[packages/core/src/types.ts:1574](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1574) +[packages/core/src/types.ts:1582](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1582) diff --git a/docs/api/enumerations/TranscriptionProvider.md b/docs/api/enumerations/TranscriptionProvider.md index d60362a06a2..0368b04739c 100644 --- a/docs/api/enumerations/TranscriptionProvider.md +++ b/docs/api/enumerations/TranscriptionProvider.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / TranscriptionProvider +[@elizaos/core v0.25.8](../index.md) / TranscriptionProvider # Enumeration: TranscriptionProvider @@ -10,7 +10,7 @@ #### Defined in -[packages/core/src/types.ts:1578](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1578) +[packages/core/src/types.ts:1586](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1586) *** @@ -20,7 +20,7 @@ #### Defined in -[packages/core/src/types.ts:1579](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1579) +[packages/core/src/types.ts:1587](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1587) *** @@ -30,4 +30,4 @@ #### Defined in -[packages/core/src/types.ts:1580](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1580) +[packages/core/src/types.ts:1588](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1588) diff --git a/docs/api/functions/addHeader.md b/docs/api/functions/addHeader.md index 18da059fe96..2911250010b 100644 --- a/docs/api/functions/addHeader.md +++ b/docs/api/functions/addHeader.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / addHeader +[@elizaos/core v0.25.8](../index.md) / addHeader # Function: addHeader() diff --git a/docs/api/functions/cleanJsonResponse.md b/docs/api/functions/cleanJsonResponse.md index 5108a5c09c9..08367dcc38a 100644 --- a/docs/api/functions/cleanJsonResponse.md +++ b/docs/api/functions/cleanJsonResponse.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / cleanJsonResponse +[@elizaos/core v0.25.8](../index.md) / cleanJsonResponse # Function: cleanJsonResponse() diff --git a/docs/api/functions/composeActionExamples.md b/docs/api/functions/composeActionExamples.md index 2c4720d5536..479ffde7cef 100644 --- a/docs/api/functions/composeActionExamples.md +++ b/docs/api/functions/composeActionExamples.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / composeActionExamples +[@elizaos/core v0.25.8](../index.md) / composeActionExamples # Function: composeActionExamples() diff --git a/docs/api/functions/composeContext.md b/docs/api/functions/composeContext.md index 10d0f783c3c..60f74fd3f17 100644 --- a/docs/api/functions/composeContext.md +++ b/docs/api/functions/composeContext.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / composeContext +[@elizaos/core v0.25.8](../index.md) / composeContext # Function: composeContext() diff --git a/docs/api/functions/composeRandomUser.md b/docs/api/functions/composeRandomUser.md index d6975825c78..eb248a3eac5 100644 --- a/docs/api/functions/composeRandomUser.md +++ b/docs/api/functions/composeRandomUser.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / composeRandomUser +[@elizaos/core v0.25.8](../index.md) / composeRandomUser # Function: composeRandomUser() diff --git a/docs/api/functions/configureSettings.md b/docs/api/functions/configureSettings.md index 5e2cb20092f..87f3a00abb5 100644 --- a/docs/api/functions/configureSettings.md +++ b/docs/api/functions/configureSettings.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / configureSettings +[@elizaos/core v0.25.8](../index.md) / configureSettings # Function: configureSettings() diff --git a/docs/api/functions/createGoal.md b/docs/api/functions/createGoal.md index 3688225aab4..8d71860fbd8 100644 --- a/docs/api/functions/createGoal.md +++ b/docs/api/functions/createGoal.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / createGoal +[@elizaos/core v0.25.8](../index.md) / createGoal # Function: createGoal() diff --git a/docs/api/functions/createRelationship.md b/docs/api/functions/createRelationship.md index 9b18805d986..05970a06e59 100644 --- a/docs/api/functions/createRelationship.md +++ b/docs/api/functions/createRelationship.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / createRelationship +[@elizaos/core v0.25.8](../index.md) / createRelationship # Function: createRelationship() diff --git a/docs/api/functions/embed.md b/docs/api/functions/embed.md index 469f2d12fff..c0c7bcb10ca 100644 --- a/docs/api/functions/embed.md +++ b/docs/api/functions/embed.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / embed +[@elizaos/core v0.25.8](../index.md) / embed # Function: embed() diff --git a/docs/api/functions/extractAttributes.md b/docs/api/functions/extractAttributes.md index 5a2975a2692..c38120c00e6 100644 --- a/docs/api/functions/extractAttributes.md +++ b/docs/api/functions/extractAttributes.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / extractAttributes +[@elizaos/core v0.25.8](../index.md) / extractAttributes # Function: extractAttributes() diff --git a/docs/api/functions/findNearestEnvFile.md b/docs/api/functions/findNearestEnvFile.md index 52bdc8eb1eb..0f3ce65894f 100644 --- a/docs/api/functions/findNearestEnvFile.md +++ b/docs/api/functions/findNearestEnvFile.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / findNearestEnvFile +[@elizaos/core v0.25.8](../index.md) / findNearestEnvFile # Function: findNearestEnvFile() diff --git a/docs/api/functions/formatActionNames.md b/docs/api/functions/formatActionNames.md index b5cfee5f88b..9e5d3074c39 100644 --- a/docs/api/functions/formatActionNames.md +++ b/docs/api/functions/formatActionNames.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / formatActionNames +[@elizaos/core v0.25.8](../index.md) / formatActionNames # Function: formatActionNames() diff --git a/docs/api/functions/formatActions.md b/docs/api/functions/formatActions.md index c411b9e0a25..a333e10cd21 100644 --- a/docs/api/functions/formatActions.md +++ b/docs/api/functions/formatActions.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / formatActions +[@elizaos/core v0.25.8](../index.md) / formatActions # Function: formatActions() diff --git a/docs/api/functions/formatActors.md b/docs/api/functions/formatActors.md index eb56b35a984..80dc3167d65 100644 --- a/docs/api/functions/formatActors.md +++ b/docs/api/functions/formatActors.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / formatActors +[@elizaos/core v0.25.8](../index.md) / formatActors # Function: formatActors() diff --git a/docs/api/functions/formatEvaluatorExampleDescriptions.md b/docs/api/functions/formatEvaluatorExampleDescriptions.md index 9d89542dfa0..43b3b840b07 100644 --- a/docs/api/functions/formatEvaluatorExampleDescriptions.md +++ b/docs/api/functions/formatEvaluatorExampleDescriptions.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / formatEvaluatorExampleDescriptions +[@elizaos/core v0.25.8](../index.md) / formatEvaluatorExampleDescriptions # Function: formatEvaluatorExampleDescriptions() diff --git a/docs/api/functions/formatEvaluatorExamples.md b/docs/api/functions/formatEvaluatorExamples.md index 30bb4bd0a29..65546d99d9c 100644 --- a/docs/api/functions/formatEvaluatorExamples.md +++ b/docs/api/functions/formatEvaluatorExamples.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / formatEvaluatorExamples +[@elizaos/core v0.25.8](../index.md) / formatEvaluatorExamples # Function: formatEvaluatorExamples() diff --git a/docs/api/functions/formatEvaluatorNames.md b/docs/api/functions/formatEvaluatorNames.md index e6ded237ffd..596530e98d2 100644 --- a/docs/api/functions/formatEvaluatorNames.md +++ b/docs/api/functions/formatEvaluatorNames.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / formatEvaluatorNames +[@elizaos/core v0.25.8](../index.md) / formatEvaluatorNames # Function: formatEvaluatorNames() diff --git a/docs/api/functions/formatEvaluators.md b/docs/api/functions/formatEvaluators.md index c3de1e61265..d86caf01c12 100644 --- a/docs/api/functions/formatEvaluators.md +++ b/docs/api/functions/formatEvaluators.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / formatEvaluators +[@elizaos/core v0.25.8](../index.md) / formatEvaluators # Function: formatEvaluators() diff --git a/docs/api/functions/formatGoalsAsString.md b/docs/api/functions/formatGoalsAsString.md index 522afaeecce..fa0a692cd5b 100644 --- a/docs/api/functions/formatGoalsAsString.md +++ b/docs/api/functions/formatGoalsAsString.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / formatGoalsAsString +[@elizaos/core v0.25.8](../index.md) / formatGoalsAsString # Function: formatGoalsAsString() diff --git a/docs/api/functions/formatMessages.md b/docs/api/functions/formatMessages.md index 06bf9867427..e94c2292421 100644 --- a/docs/api/functions/formatMessages.md +++ b/docs/api/functions/formatMessages.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / formatMessages +[@elizaos/core v0.25.8](../index.md) / formatMessages # Function: formatMessages() diff --git a/docs/api/functions/formatPosts.md b/docs/api/functions/formatPosts.md index b4e4a512eed..7208791f409 100644 --- a/docs/api/functions/formatPosts.md +++ b/docs/api/functions/formatPosts.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / formatPosts +[@elizaos/core v0.25.8](../index.md) / formatPosts # Function: formatPosts() diff --git a/docs/api/functions/formatRelationships.md b/docs/api/functions/formatRelationships.md index f8c7515fcff..1142090598b 100644 --- a/docs/api/functions/formatRelationships.md +++ b/docs/api/functions/formatRelationships.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / formatRelationships +[@elizaos/core v0.25.8](../index.md) / formatRelationships # Function: formatRelationships() diff --git a/docs/api/functions/formatTimestamp.md b/docs/api/functions/formatTimestamp.md index 478604a9c99..cfbbc11b8a5 100644 --- a/docs/api/functions/formatTimestamp.md +++ b/docs/api/functions/formatTimestamp.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / formatTimestamp +[@elizaos/core v0.25.8](../index.md) / formatTimestamp # Function: formatTimestamp() diff --git a/docs/api/functions/generateCaption.md b/docs/api/functions/generateCaption.md index 025189efb89..f067960a1f2 100644 --- a/docs/api/functions/generateCaption.md +++ b/docs/api/functions/generateCaption.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / generateCaption +[@elizaos/core v0.25.8](../index.md) / generateCaption # Function: generateCaption() @@ -26,4 +26,4 @@ ## Defined in -[packages/core/src/generation.ts:2035](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L2035) +[packages/core/src/generation.ts:2086](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L2086) diff --git a/docs/api/functions/generateImage.md b/docs/api/functions/generateImage.md index d92b56ca87f..81a85d83aad 100644 --- a/docs/api/functions/generateImage.md +++ b/docs/api/functions/generateImage.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / generateImage +[@elizaos/core v0.25.8](../index.md) / generateImage # Function: generateImage() @@ -56,4 +56,4 @@ ## Defined in -[packages/core/src/generation.ts:1647](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L1647) +[packages/core/src/generation.ts:1687](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L1687) diff --git a/docs/api/functions/generateMessageResponse.md b/docs/api/functions/generateMessageResponse.md index 8ba93de5dde..54951bce8fd 100644 --- a/docs/api/functions/generateMessageResponse.md +++ b/docs/api/functions/generateMessageResponse.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / generateMessageResponse +[@elizaos/core v0.25.8](../index.md) / generateMessageResponse # Function: generateMessageResponse() @@ -28,4 +28,4 @@ The completed message. ## Defined in -[packages/core/src/generation.ts:1604](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L1604) +[packages/core/src/generation.ts:1644](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L1644) diff --git a/docs/api/functions/generateObject.md b/docs/api/functions/generateObject.md index 379197d8054..f3c50662b45 100644 --- a/docs/api/functions/generateObject.md +++ b/docs/api/functions/generateObject.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / generateObject +[@elizaos/core v0.25.8](../index.md) / generateObject # Function: generateObject() @@ -24,4 +24,4 @@ Configuration options for generating objects. ## Defined in -[packages/core/src/generation.ts:2097](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L2097) +[packages/core/src/generation.ts:2148](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L2148) diff --git a/docs/api/functions/generateObjectArray.md b/docs/api/functions/generateObjectArray.md index 82d252a6180..a73745d6edb 100644 --- a/docs/api/functions/generateObjectArray.md +++ b/docs/api/functions/generateObjectArray.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / generateObjectArray +[@elizaos/core v0.25.8](../index.md) / generateObjectArray # Function: generateObjectArray() @@ -20,4 +20,4 @@ ## Defined in -[packages/core/src/generation.ts:1556](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L1556) +[packages/core/src/generation.ts:1596](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L1596) diff --git a/docs/api/functions/generateObjectDeprecated.md b/docs/api/functions/generateObjectDeprecated.md index 6548baab764..3e045e483b0 100644 --- a/docs/api/functions/generateObjectDeprecated.md +++ b/docs/api/functions/generateObjectDeprecated.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / generateObjectDeprecated +[@elizaos/core v0.25.8](../index.md) / generateObjectDeprecated # Function: generateObjectDeprecated() @@ -20,4 +20,4 @@ ## Defined in -[packages/core/src/generation.ts:1520](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L1520) +[packages/core/src/generation.ts:1560](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L1560) diff --git a/docs/api/functions/generateShouldRespond.md b/docs/api/functions/generateShouldRespond.md index 9b2d5605844..afd90f65598 100644 --- a/docs/api/functions/generateShouldRespond.md +++ b/docs/api/functions/generateShouldRespond.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / generateShouldRespond +[@elizaos/core v0.25.8](../index.md) / generateShouldRespond # Function: generateShouldRespond() @@ -28,4 +28,4 @@ Promise resolving to "RESPOND", "IGNORE", "STOP" or null ## Defined in -[packages/core/src/generation.ts:1340](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L1340) +[packages/core/src/generation.ts:1371](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L1371) diff --git a/docs/api/functions/generateText.md b/docs/api/functions/generateText.md index a0b7a791135..0a6052369a9 100644 --- a/docs/api/functions/generateText.md +++ b/docs/api/functions/generateText.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / generateText +[@elizaos/core v0.25.8](../index.md) / generateText # Function: generateText() @@ -40,4 +40,4 @@ The completed message. ## Defined in -[packages/core/src/generation.ts:341](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L341) +[packages/core/src/generation.ts:343](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L343) diff --git a/docs/api/functions/generateTextArray.md b/docs/api/functions/generateTextArray.md index f8d556981c5..ef7ffb52914 100644 --- a/docs/api/functions/generateTextArray.md +++ b/docs/api/functions/generateTextArray.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / generateTextArray +[@elizaos/core v0.25.8](../index.md) / generateTextArray # Function: generateTextArray() @@ -28,4 +28,4 @@ Promise resolving to an array of strings parsed from the model's response ## Defined in -[packages/core/src/generation.ts:1484](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L1484) +[packages/core/src/generation.ts:1524](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L1524) diff --git a/docs/api/functions/generateTrueOrFalse.md b/docs/api/functions/generateTrueOrFalse.md index 0d052052ee3..9e1c3126e48 100644 --- a/docs/api/functions/generateTrueOrFalse.md +++ b/docs/api/functions/generateTrueOrFalse.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / generateTrueOrFalse +[@elizaos/core v0.25.8](../index.md) / generateTrueOrFalse # Function: generateTrueOrFalse() @@ -28,4 +28,4 @@ Promise resolving to a boolean value parsed from the model's response ## Defined in -[packages/core/src/generation.ts:1432](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L1432) +[packages/core/src/generation.ts:1472](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L1472) diff --git a/docs/api/functions/generateTweetActions.md b/docs/api/functions/generateTweetActions.md index 772f091ffc6..52ba77fb017 100644 --- a/docs/api/functions/generateTweetActions.md +++ b/docs/api/functions/generateTweetActions.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / generateTweetActions +[@elizaos/core v0.25.8](../index.md) / generateTweetActions # Function: generateTweetActions() @@ -20,4 +20,4 @@ ## Defined in -[packages/core/src/generation.ts:2598](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L2598) +[packages/core/src/generation.ts:2715](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L2715) diff --git a/docs/api/functions/getActorDetails.md b/docs/api/functions/getActorDetails.md index be02bb2d9b3..b9ae46a62ca 100644 --- a/docs/api/functions/getActorDetails.md +++ b/docs/api/functions/getActorDetails.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / getActorDetails +[@elizaos/core v0.25.8](../index.md) / getActorDetails # Function: getActorDetails() diff --git a/docs/api/functions/getEmbeddingConfig.md b/docs/api/functions/getEmbeddingConfig.md index eb7825872ee..1bc3d2ee4e7 100644 --- a/docs/api/functions/getEmbeddingConfig.md +++ b/docs/api/functions/getEmbeddingConfig.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / getEmbeddingConfig +[@elizaos/core v0.25.8](../index.md) / getEmbeddingConfig # Function: getEmbeddingConfig() diff --git a/docs/api/functions/getEmbeddingModelSettings.md b/docs/api/functions/getEmbeddingModelSettings.md index 86975bb8d63..484fecc4905 100644 --- a/docs/api/functions/getEmbeddingModelSettings.md +++ b/docs/api/functions/getEmbeddingModelSettings.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / getEmbeddingModelSettings +[@elizaos/core v0.25.8](../index.md) / getEmbeddingModelSettings # Function: getEmbeddingModelSettings() @@ -14,4 +14,4 @@ ## Defined in -[packages/core/src/models.ts:1171](https://github.com/elizaOS/eliza/blob/main/packages/core/src/models.ts#L1171) +[packages/core/src/models.ts:1241](https://github.com/elizaOS/eliza/blob/main/packages/core/src/models.ts#L1241) diff --git a/docs/api/functions/getEmbeddingType.md b/docs/api/functions/getEmbeddingType.md index f2e14882a2c..6e008ffcdf5 100644 --- a/docs/api/functions/getEmbeddingType.md +++ b/docs/api/functions/getEmbeddingType.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / getEmbeddingType +[@elizaos/core v0.25.8](../index.md) / getEmbeddingType # Function: getEmbeddingType() diff --git a/docs/api/functions/getEmbeddingZeroVector.md b/docs/api/functions/getEmbeddingZeroVector.md index c9fc34851da..b8ea25855bf 100644 --- a/docs/api/functions/getEmbeddingZeroVector.md +++ b/docs/api/functions/getEmbeddingZeroVector.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / getEmbeddingZeroVector +[@elizaos/core v0.25.8](../index.md) / getEmbeddingZeroVector # Function: getEmbeddingZeroVector() diff --git a/docs/api/functions/getEndpoint.md b/docs/api/functions/getEndpoint.md index b0c03fbd084..e8b12a9dbad 100644 --- a/docs/api/functions/getEndpoint.md +++ b/docs/api/functions/getEndpoint.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / getEndpoint +[@elizaos/core v0.25.8](../index.md) / getEndpoint # Function: getEndpoint() @@ -14,4 +14,4 @@ ## Defined in -[packages/core/src/models.ts:1179](https://github.com/elizaOS/eliza/blob/main/packages/core/src/models.ts#L1179) +[packages/core/src/models.ts:1249](https://github.com/elizaOS/eliza/blob/main/packages/core/src/models.ts#L1249) diff --git a/docs/api/functions/getEnvVariable.md b/docs/api/functions/getEnvVariable.md index 8b5e451594a..412c92f1126 100644 --- a/docs/api/functions/getEnvVariable.md +++ b/docs/api/functions/getEnvVariable.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / getEnvVariable +[@elizaos/core v0.25.8](../index.md) / getEnvVariable # Function: getEnvVariable() diff --git a/docs/api/functions/getGoals.md b/docs/api/functions/getGoals.md index 4c8c3205dcc..77768684c67 100644 --- a/docs/api/functions/getGoals.md +++ b/docs/api/functions/getGoals.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / getGoals +[@elizaos/core v0.25.8](../index.md) / getGoals # Function: getGoals() diff --git a/docs/api/functions/getImageModelSettings.md b/docs/api/functions/getImageModelSettings.md index da5e48efdc9..9970b6e8389 100644 --- a/docs/api/functions/getImageModelSettings.md +++ b/docs/api/functions/getImageModelSettings.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / getImageModelSettings +[@elizaos/core v0.25.8](../index.md) / getImageModelSettings # Function: getImageModelSettings() @@ -14,4 +14,4 @@ ## Defined in -[packages/core/src/models.ts:1163](https://github.com/elizaOS/eliza/blob/main/packages/core/src/models.ts#L1163) +[packages/core/src/models.ts:1233](https://github.com/elizaOS/eliza/blob/main/packages/core/src/models.ts#L1233) diff --git a/docs/api/functions/getModelSettings.md b/docs/api/functions/getModelSettings.md index 2e24cb7d686..d8404d859d9 100644 --- a/docs/api/functions/getModelSettings.md +++ b/docs/api/functions/getModelSettings.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / getModelSettings +[@elizaos/core v0.25.8](../index.md) / getModelSettings # Function: getModelSettings() @@ -16,4 +16,4 @@ ## Defined in -[packages/core/src/models.ts:1156](https://github.com/elizaOS/eliza/blob/main/packages/core/src/models.ts#L1156) +[packages/core/src/models.ts:1226](https://github.com/elizaOS/eliza/blob/main/packages/core/src/models.ts#L1226) diff --git a/docs/api/functions/getProviders.md b/docs/api/functions/getProviders.md index 06eb5d86c2c..4986211ed94 100644 --- a/docs/api/functions/getProviders.md +++ b/docs/api/functions/getProviders.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / getProviders +[@elizaos/core v0.25.8](../index.md) / getProviders # Function: getProviders() diff --git a/docs/api/functions/getRelationship.md b/docs/api/functions/getRelationship.md index 09049c3f493..d9f7076505e 100644 --- a/docs/api/functions/getRelationship.md +++ b/docs/api/functions/getRelationship.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / getRelationship +[@elizaos/core v0.25.8](../index.md) / getRelationship # Function: getRelationship() diff --git a/docs/api/functions/getRelationships.md b/docs/api/functions/getRelationships.md index ce8b46264ba..de136f319f1 100644 --- a/docs/api/functions/getRelationships.md +++ b/docs/api/functions/getRelationships.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / getRelationships +[@elizaos/core v0.25.8](../index.md) / getRelationships # Function: getRelationships() diff --git a/docs/api/functions/handleProvider.md b/docs/api/functions/handleProvider.md index af06048a70a..b503ee6f79f 100644 --- a/docs/api/functions/handleProvider.md +++ b/docs/api/functions/handleProvider.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / handleProvider +[@elizaos/core v0.25.8](../index.md) / handleProvider # Function: handleProvider() @@ -20,4 +20,4 @@ Configuration options specific to the provider. ## Defined in -[packages/core/src/generation.ts:2191](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L2191) +[packages/core/src/generation.ts:2242](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L2242) diff --git a/docs/api/functions/hasEnvVariable.md b/docs/api/functions/hasEnvVariable.md index 3355ccc56e9..33178688bf0 100644 --- a/docs/api/functions/hasEnvVariable.md +++ b/docs/api/functions/hasEnvVariable.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / hasEnvVariable +[@elizaos/core v0.25.8](../index.md) / hasEnvVariable # Function: hasEnvVariable() diff --git a/docs/api/functions/loadEnvConfig.md b/docs/api/functions/loadEnvConfig.md index 8d4426edc0b..a56ba64542f 100644 --- a/docs/api/functions/loadEnvConfig.md +++ b/docs/api/functions/loadEnvConfig.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / loadEnvConfig +[@elizaos/core v0.25.8](../index.md) / loadEnvConfig # Function: loadEnvConfig() diff --git a/docs/api/functions/normalizeJsonString.md b/docs/api/functions/normalizeJsonString.md index 54a6aeda1bf..16a7868342d 100644 --- a/docs/api/functions/normalizeJsonString.md +++ b/docs/api/functions/normalizeJsonString.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / normalizeJsonString +[@elizaos/core v0.25.8](../index.md) / normalizeJsonString # Function: normalizeJsonString() diff --git a/docs/api/functions/parseActionResponseFromText.md b/docs/api/functions/parseActionResponseFromText.md index 6ddf6567923..cee668526f9 100644 --- a/docs/api/functions/parseActionResponseFromText.md +++ b/docs/api/functions/parseActionResponseFromText.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / parseActionResponseFromText +[@elizaos/core v0.25.8](../index.md) / parseActionResponseFromText # Function: parseActionResponseFromText() diff --git a/docs/api/functions/parseBooleanFromText.md b/docs/api/functions/parseBooleanFromText.md index 091285a8a6c..806d8987a1f 100644 --- a/docs/api/functions/parseBooleanFromText.md +++ b/docs/api/functions/parseBooleanFromText.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / parseBooleanFromText +[@elizaos/core v0.25.8](../index.md) / parseBooleanFromText # Function: parseBooleanFromText() diff --git a/docs/api/functions/parseJSONObjectFromText.md b/docs/api/functions/parseJSONObjectFromText.md index 8b742dfaccc..cf6fe13f864 100644 --- a/docs/api/functions/parseJSONObjectFromText.md +++ b/docs/api/functions/parseJSONObjectFromText.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / parseJSONObjectFromText +[@elizaos/core v0.25.8](../index.md) / parseJSONObjectFromText # Function: parseJSONObjectFromText() diff --git a/docs/api/functions/parseJsonArrayFromText.md b/docs/api/functions/parseJsonArrayFromText.md index f1ad0afebb2..7f5d9c390ba 100644 --- a/docs/api/functions/parseJsonArrayFromText.md +++ b/docs/api/functions/parseJsonArrayFromText.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / parseJsonArrayFromText +[@elizaos/core v0.25.8](../index.md) / parseJsonArrayFromText # Function: parseJsonArrayFromText() diff --git a/docs/api/functions/parseShouldRespondFromText.md b/docs/api/functions/parseShouldRespondFromText.md index 73ca75dfbb6..4ed1525b88e 100644 --- a/docs/api/functions/parseShouldRespondFromText.md +++ b/docs/api/functions/parseShouldRespondFromText.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / parseShouldRespondFromText +[@elizaos/core v0.25.8](../index.md) / parseShouldRespondFromText # Function: parseShouldRespondFromText() diff --git a/docs/api/functions/splitChunks.md b/docs/api/functions/splitChunks.md index cfdd5347d37..c4108df78d9 100644 --- a/docs/api/functions/splitChunks.md +++ b/docs/api/functions/splitChunks.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / splitChunks +[@elizaos/core v0.25.8](../index.md) / splitChunks # Function: splitChunks() @@ -12,11 +12,11 @@ Splits content into chunks of specified size with optional overlapping bleed sec The text content to split into chunks -โ€ข **chunkSize**: `number` = `512` +โ€ข **chunkSize**: `number` = `1500` The maximum size of each chunk in tokens -โ€ข **bleed**: `number` = `20` +โ€ข **bleed**: `number` = `100` Number of characters to overlap between chunks (default: 100) @@ -28,4 +28,4 @@ Promise resolving to array of text chunks with bleed sections ## Defined in -[packages/core/src/generation.ts:1395](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L1395) +[packages/core/src/generation.ts:1426](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L1426) diff --git a/docs/api/functions/splitText.md b/docs/api/functions/splitText.md new file mode 100644 index 00000000000..579b40e1795 --- /dev/null +++ b/docs/api/functions/splitText.md @@ -0,0 +1,21 @@ +[@elizaos/core v0.25.8](../index.md) / splitText + +# Function: splitText() + +> **splitText**(`content`, `chunkSize`, `bleed`): `string`[] + +## Parameters + +โ€ข **content**: `string` + +โ€ข **chunkSize**: `number` + +โ€ข **bleed**: `number` + +## Returns + +`string`[] + +## Defined in + +[packages/core/src/generation.ts:1445](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L1445) diff --git a/docs/api/functions/stringToUuid.md b/docs/api/functions/stringToUuid.md index 9a9d4748828..4d3c4608674 100644 --- a/docs/api/functions/stringToUuid.md +++ b/docs/api/functions/stringToUuid.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / stringToUuid +[@elizaos/core v0.25.8](../index.md) / stringToUuid # Function: stringToUuid() diff --git a/docs/api/functions/trimTokens.md b/docs/api/functions/trimTokens.md index 34b5110ade4..3c49e187915 100644 --- a/docs/api/functions/trimTokens.md +++ b/docs/api/functions/trimTokens.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / trimTokens +[@elizaos/core v0.25.8](../index.md) / trimTokens # Function: trimTokens() @@ -49,4 +49,4 @@ console.log(trimmedText); // Output will be a truncated version of the input tex ## Defined in -[packages/core/src/generation.ts:82](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L82) +[packages/core/src/generation.ts:84](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L84) diff --git a/docs/api/functions/truncateToCompleteSentence.md b/docs/api/functions/truncateToCompleteSentence.md index 7afe638cd1e..7dc14edc08f 100644 --- a/docs/api/functions/truncateToCompleteSentence.md +++ b/docs/api/functions/truncateToCompleteSentence.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / truncateToCompleteSentence +[@elizaos/core v0.25.8](../index.md) / truncateToCompleteSentence # Function: truncateToCompleteSentence() diff --git a/docs/api/functions/updateGoal.md b/docs/api/functions/updateGoal.md index c1ded61f0e3..6ea60874e63 100644 --- a/docs/api/functions/updateGoal.md +++ b/docs/api/functions/updateGoal.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / updateGoal +[@elizaos/core v0.25.8](../index.md) / updateGoal # Function: updateGoal() diff --git a/docs/api/functions/validateCharacterConfig.md b/docs/api/functions/validateCharacterConfig.md index 412818a52d5..5676699ede7 100644 --- a/docs/api/functions/validateCharacterConfig.md +++ b/docs/api/functions/validateCharacterConfig.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / validateCharacterConfig +[@elizaos/core v0.25.8](../index.md) / validateCharacterConfig # Function: validateCharacterConfig() diff --git a/docs/api/functions/validateEnv.md b/docs/api/functions/validateEnv.md index c8655ef679a..e5de71051f3 100644 --- a/docs/api/functions/validateEnv.md +++ b/docs/api/functions/validateEnv.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / validateEnv +[@elizaos/core v0.25.8](../index.md) / validateEnv # Function: validateEnv() diff --git a/docs/api/functions/validateUuid.md b/docs/api/functions/validateUuid.md index 5d5ce2e5372..001cb29a87c 100644 --- a/docs/api/functions/validateUuid.md +++ b/docs/api/functions/validateUuid.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / validateUuid +[@elizaos/core v0.25.8](../index.md) / validateUuid # Function: validateUuid() diff --git a/docs/api/index.md b/docs/api/index.md index 180b0e799bc..b708224b511 100644 --- a/docs/api/index.md +++ b/docs/api/index.md @@ -1,4 +1,4 @@ -# @elizaos/core v0.25.7 +# @elizaos/core v0.25.8 ## Enumerations @@ -143,6 +143,7 @@ - [generateText](functions/generateText.md) - [generateShouldRespond](functions/generateShouldRespond.md) - [splitChunks](functions/splitChunks.md) +- [splitText](functions/splitText.md) - [generateTrueOrFalse](functions/generateTrueOrFalse.md) - [generateTextArray](functions/generateTextArray.md) - [generateObjectDeprecated](functions/generateObjectDeprecated.md) diff --git a/docs/api/interfaces/Account.md b/docs/api/interfaces/Account.md index 0cc8b99798e..e703a625d23 100644 --- a/docs/api/interfaces/Account.md +++ b/docs/api/interfaces/Account.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / Account +[@elizaos/core v0.25.8](../index.md) / Account # Interface: Account @@ -14,7 +14,7 @@ Unique identifier #### Defined in -[packages/core/src/types.ts:544](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L544) +[packages/core/src/types.ts:548](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L548) *** @@ -26,7 +26,7 @@ Display name #### Defined in -[packages/core/src/types.ts:547](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L547) +[packages/core/src/types.ts:551](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L551) *** @@ -38,7 +38,7 @@ Username #### Defined in -[packages/core/src/types.ts:550](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L550) +[packages/core/src/types.ts:554](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L554) *** @@ -54,7 +54,7 @@ Optional additional details #### Defined in -[packages/core/src/types.ts:553](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L553) +[packages/core/src/types.ts:557](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L557) *** @@ -66,7 +66,7 @@ Optional email #### Defined in -[packages/core/src/types.ts:556](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L556) +[packages/core/src/types.ts:560](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L560) *** @@ -78,4 +78,4 @@ Optional avatar URL #### Defined in -[packages/core/src/types.ts:559](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L559) +[packages/core/src/types.ts:563](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L563) diff --git a/docs/api/interfaces/Action.md b/docs/api/interfaces/Action.md index a869d7ba827..70a6b6eff6f 100644 --- a/docs/api/interfaces/Action.md +++ b/docs/api/interfaces/Action.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / Action +[@elizaos/core v0.25.8](../index.md) / Action # Interface: Action @@ -14,7 +14,7 @@ Similar action descriptions #### Defined in -[packages/core/src/types.ts:440](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L440) +[packages/core/src/types.ts:444](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L444) *** @@ -26,7 +26,7 @@ Detailed description #### Defined in -[packages/core/src/types.ts:443](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L443) +[packages/core/src/types.ts:447](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L447) *** @@ -38,7 +38,7 @@ Example usages #### Defined in -[packages/core/src/types.ts:446](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L446) +[packages/core/src/types.ts:450](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L450) *** @@ -50,7 +50,7 @@ Handler function #### Defined in -[packages/core/src/types.ts:449](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L449) +[packages/core/src/types.ts:453](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L453) *** @@ -62,7 +62,7 @@ Action name #### Defined in -[packages/core/src/types.ts:452](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L452) +[packages/core/src/types.ts:456](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L456) *** @@ -74,7 +74,7 @@ Validation function #### Defined in -[packages/core/src/types.ts:455](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L455) +[packages/core/src/types.ts:459](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L459) *** @@ -86,4 +86,4 @@ Whether to suppress the initial message when this action is used #### Defined in -[packages/core/src/types.ts:458](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L458) +[packages/core/src/types.ts:462](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L462) diff --git a/docs/api/interfaces/ActionExample.md b/docs/api/interfaces/ActionExample.md index d13ca7ed658..3ea0b843d12 100644 --- a/docs/api/interfaces/ActionExample.md +++ b/docs/api/interfaces/ActionExample.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / ActionExample +[@elizaos/core v0.25.8](../index.md) / ActionExample # Interface: ActionExample diff --git a/docs/api/interfaces/ActionResponse.md b/docs/api/interfaces/ActionResponse.md index 07875f661b3..d83d7cf3956 100644 --- a/docs/api/interfaces/ActionResponse.md +++ b/docs/api/interfaces/ActionResponse.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / ActionResponse +[@elizaos/core v0.25.8](../index.md) / ActionResponse # Interface: ActionResponse @@ -10,7 +10,7 @@ #### Defined in -[packages/core/src/types.ts:1562](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1562) +[packages/core/src/types.ts:1570](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1570) *** @@ -20,7 +20,7 @@ #### Defined in -[packages/core/src/types.ts:1563](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1563) +[packages/core/src/types.ts:1571](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1571) *** @@ -30,7 +30,7 @@ #### Defined in -[packages/core/src/types.ts:1564](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1564) +[packages/core/src/types.ts:1572](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1572) *** @@ -40,4 +40,4 @@ #### Defined in -[packages/core/src/types.ts:1565](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1565) +[packages/core/src/types.ts:1573](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1573) diff --git a/docs/api/interfaces/Actor.md b/docs/api/interfaces/Actor.md index 677eea8d198..cb8d0159f36 100644 --- a/docs/api/interfaces/Actor.md +++ b/docs/api/interfaces/Actor.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / Actor +[@elizaos/core v0.25.8](../index.md) / Actor # Interface: Actor diff --git a/docs/api/interfaces/ChunkRow.md b/docs/api/interfaces/ChunkRow.md index c48da024ae7..c6fc9309fea 100644 --- a/docs/api/interfaces/ChunkRow.md +++ b/docs/api/interfaces/ChunkRow.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / ChunkRow +[@elizaos/core v0.25.8](../index.md) / ChunkRow # Interface: ChunkRow @@ -10,4 +10,4 @@ #### Defined in -[packages/core/src/types.ts:1602](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1602) +[packages/core/src/types.ts:1610](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1610) diff --git a/docs/api/interfaces/Content.md b/docs/api/interfaces/Content.md index e8cd9aa6cde..48ba56a92d7 100644 --- a/docs/api/interfaces/Content.md +++ b/docs/api/interfaces/Content.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / Content +[@elizaos/core v0.25.8](../index.md) / Content # Interface: Content diff --git a/docs/api/interfaces/ConversationExample.md b/docs/api/interfaces/ConversationExample.md index 36843bc0d5c..13c761b7975 100644 --- a/docs/api/interfaces/ConversationExample.md +++ b/docs/api/interfaces/ConversationExample.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / ConversationExample +[@elizaos/core v0.25.8](../index.md) / ConversationExample # Interface: ConversationExample diff --git a/docs/api/interfaces/DataIrysFetchedFromGQL.md b/docs/api/interfaces/DataIrysFetchedFromGQL.md index bc2948b5d41..3e8a171b2bb 100644 --- a/docs/api/interfaces/DataIrysFetchedFromGQL.md +++ b/docs/api/interfaces/DataIrysFetchedFromGQL.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / DataIrysFetchedFromGQL +[@elizaos/core v0.25.8](../index.md) / DataIrysFetchedFromGQL # Interface: DataIrysFetchedFromGQL @@ -10,7 +10,7 @@ #### Defined in -[packages/core/src/types.ts:1445](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1445) +[packages/core/src/types.ts:1452](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1452) *** @@ -20,7 +20,7 @@ #### Defined in -[packages/core/src/types.ts:1446](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1446) +[packages/core/src/types.ts:1453](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1453) *** @@ -30,4 +30,4 @@ #### Defined in -[packages/core/src/types.ts:1447](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1447) +[packages/core/src/types.ts:1454](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1454) diff --git a/docs/api/interfaces/DirectoryItem.md b/docs/api/interfaces/DirectoryItem.md index 8ebcf3b76d1..dd2875c0454 100644 --- a/docs/api/interfaces/DirectoryItem.md +++ b/docs/api/interfaces/DirectoryItem.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / DirectoryItem +[@elizaos/core v0.25.8](../index.md) / DirectoryItem # Interface: DirectoryItem @@ -10,7 +10,7 @@ #### Defined in -[packages/core/src/types.ts:1597](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1597) +[packages/core/src/types.ts:1605](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1605) *** @@ -20,4 +20,4 @@ #### Defined in -[packages/core/src/types.ts:1598](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1598) +[packages/core/src/types.ts:1606](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1606) diff --git a/docs/api/interfaces/EvaluationExample.md b/docs/api/interfaces/EvaluationExample.md index a7bd00b84c4..78009451f1c 100644 --- a/docs/api/interfaces/EvaluationExample.md +++ b/docs/api/interfaces/EvaluationExample.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / EvaluationExample +[@elizaos/core v0.25.8](../index.md) / EvaluationExample # Interface: EvaluationExample @@ -14,7 +14,7 @@ Evaluation context #### Defined in -[packages/core/src/types.ts:466](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L466) +[packages/core/src/types.ts:470](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L470) *** @@ -26,7 +26,7 @@ Example messages #### Defined in -[packages/core/src/types.ts:469](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L469) +[packages/core/src/types.ts:473](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L473) *** @@ -38,4 +38,4 @@ Expected outcome #### Defined in -[packages/core/src/types.ts:472](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L472) +[packages/core/src/types.ts:476](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L476) diff --git a/docs/api/interfaces/Evaluator.md b/docs/api/interfaces/Evaluator.md index 788f5339994..a060dfd4061 100644 --- a/docs/api/interfaces/Evaluator.md +++ b/docs/api/interfaces/Evaluator.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / Evaluator +[@elizaos/core v0.25.8](../index.md) / Evaluator # Interface: Evaluator @@ -14,7 +14,7 @@ Whether to always run #### Defined in -[packages/core/src/types.ts:480](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L480) +[packages/core/src/types.ts:484](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L484) *** @@ -26,7 +26,7 @@ Detailed description #### Defined in -[packages/core/src/types.ts:483](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L483) +[packages/core/src/types.ts:487](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L487) *** @@ -38,7 +38,7 @@ Similar evaluator descriptions #### Defined in -[packages/core/src/types.ts:486](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L486) +[packages/core/src/types.ts:490](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L490) *** @@ -50,7 +50,7 @@ Example evaluations #### Defined in -[packages/core/src/types.ts:489](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L489) +[packages/core/src/types.ts:493](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L493) *** @@ -62,7 +62,7 @@ Handler function #### Defined in -[packages/core/src/types.ts:492](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L492) +[packages/core/src/types.ts:496](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L496) *** @@ -74,7 +74,7 @@ Evaluator name #### Defined in -[packages/core/src/types.ts:495](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L495) +[packages/core/src/types.ts:499](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L499) *** @@ -86,4 +86,4 @@ Validation function #### Defined in -[packages/core/src/types.ts:498](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L498) +[packages/core/src/types.ts:502](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L502) diff --git a/docs/api/interfaces/GenerationOptions.md b/docs/api/interfaces/GenerationOptions.md index 355e61e4d5d..b7cc7238776 100644 --- a/docs/api/interfaces/GenerationOptions.md +++ b/docs/api/interfaces/GenerationOptions.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / GenerationOptions +[@elizaos/core v0.25.8](../index.md) / GenerationOptions # Interface: GenerationOptions @@ -12,7 +12,7 @@ Configuration options for generating objects with a model. #### Defined in -[packages/core/src/generation.ts:2063](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L2063) +[packages/core/src/generation.ts:2114](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L2114) *** @@ -22,7 +22,7 @@ Configuration options for generating objects with a model. #### Defined in -[packages/core/src/generation.ts:2064](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L2064) +[packages/core/src/generation.ts:2115](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L2115) *** @@ -32,7 +32,7 @@ Configuration options for generating objects with a model. #### Defined in -[packages/core/src/generation.ts:2065](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L2065) +[packages/core/src/generation.ts:2116](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L2116) *** @@ -42,7 +42,7 @@ Configuration options for generating objects with a model. #### Defined in -[packages/core/src/generation.ts:2066](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L2066) +[packages/core/src/generation.ts:2117](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L2117) *** @@ -52,7 +52,7 @@ Configuration options for generating objects with a model. #### Defined in -[packages/core/src/generation.ts:2067](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L2067) +[packages/core/src/generation.ts:2118](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L2118) *** @@ -62,7 +62,7 @@ Configuration options for generating objects with a model. #### Defined in -[packages/core/src/generation.ts:2068](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L2068) +[packages/core/src/generation.ts:2119](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L2119) *** @@ -72,7 +72,7 @@ Configuration options for generating objects with a model. #### Defined in -[packages/core/src/generation.ts:2069](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L2069) +[packages/core/src/generation.ts:2120](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L2120) *** @@ -82,7 +82,7 @@ Configuration options for generating objects with a model. #### Defined in -[packages/core/src/generation.ts:2070](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L2070) +[packages/core/src/generation.ts:2121](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L2121) *** @@ -92,4 +92,4 @@ Configuration options for generating objects with a model. #### Defined in -[packages/core/src/generation.ts:2071](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L2071) +[packages/core/src/generation.ts:2122](https://github.com/elizaOS/eliza/blob/main/packages/core/src/generation.ts#L2122) diff --git a/docs/api/interfaces/Goal.md b/docs/api/interfaces/Goal.md index 173144681d6..82076da4425 100644 --- a/docs/api/interfaces/Goal.md +++ b/docs/api/interfaces/Goal.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / Goal +[@elizaos/core v0.25.8](../index.md) / Goal # Interface: Goal diff --git a/docs/api/interfaces/GraphQLTag.md b/docs/api/interfaces/GraphQLTag.md index 531ae62c928..7137fb59ede 100644 --- a/docs/api/interfaces/GraphQLTag.md +++ b/docs/api/interfaces/GraphQLTag.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / GraphQLTag +[@elizaos/core v0.25.8](../index.md) / GraphQLTag # Interface: GraphQLTag @@ -10,7 +10,7 @@ #### Defined in -[packages/core/src/types.ts:1451](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1451) +[packages/core/src/types.ts:1458](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1458) *** @@ -20,4 +20,4 @@ #### Defined in -[packages/core/src/types.ts:1452](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1452) +[packages/core/src/types.ts:1459](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1459) diff --git a/docs/api/interfaces/IAgentConfig.md b/docs/api/interfaces/IAgentConfig.md index ed157a4f885..c37179c6c0b 100644 --- a/docs/api/interfaces/IAgentConfig.md +++ b/docs/api/interfaces/IAgentConfig.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / IAgentConfig +[@elizaos/core v0.25.8](../index.md) / IAgentConfig # Interface: IAgentConfig diff --git a/docs/api/interfaces/IAgentRuntime.md b/docs/api/interfaces/IAgentRuntime.md index 3d799bccb7e..56feadcffc9 100644 --- a/docs/api/interfaces/IAgentRuntime.md +++ b/docs/api/interfaces/IAgentRuntime.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / IAgentRuntime +[@elizaos/core v0.25.8](../index.md) / IAgentRuntime # Interface: IAgentRuntime @@ -12,7 +12,7 @@ Properties #### Defined in -[packages/core/src/types.ts:1273](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1273) +[packages/core/src/types.ts:1280](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1280) *** @@ -22,7 +22,7 @@ Properties #### Defined in -[packages/core/src/types.ts:1274](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1274) +[packages/core/src/types.ts:1281](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1281) *** @@ -32,7 +32,7 @@ Properties #### Defined in -[packages/core/src/types.ts:1275](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1275) +[packages/core/src/types.ts:1282](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1282) *** @@ -42,7 +42,7 @@ Properties #### Defined in -[packages/core/src/types.ts:1276](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1276) +[packages/core/src/types.ts:1283](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1283) *** @@ -52,7 +52,7 @@ Properties #### Defined in -[packages/core/src/types.ts:1277](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1277) +[packages/core/src/types.ts:1284](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1284) *** @@ -62,7 +62,7 @@ Properties #### Defined in -[packages/core/src/types.ts:1278](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1278) +[packages/core/src/types.ts:1285](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1285) *** @@ -72,7 +72,7 @@ Properties #### Defined in -[packages/core/src/types.ts:1279](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1279) +[packages/core/src/types.ts:1286](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1286) *** @@ -82,7 +82,7 @@ Properties #### Defined in -[packages/core/src/types.ts:1280](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1280) +[packages/core/src/types.ts:1287](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1287) *** @@ -92,7 +92,7 @@ Properties #### Defined in -[packages/core/src/types.ts:1281](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1281) +[packages/core/src/types.ts:1288](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1288) *** @@ -102,7 +102,7 @@ Properties #### Defined in -[packages/core/src/types.ts:1282](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1282) +[packages/core/src/types.ts:1289](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1289) *** @@ -112,7 +112,7 @@ Properties #### Defined in -[packages/core/src/types.ts:1283](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1283) +[packages/core/src/types.ts:1290](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1290) *** @@ -122,7 +122,7 @@ Properties #### Defined in -[packages/core/src/types.ts:1284](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1284) +[packages/core/src/types.ts:1291](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1291) *** @@ -154,7 +154,7 @@ Properties #### Defined in -[packages/core/src/types.ts:1286](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1286) +[packages/core/src/types.ts:1293](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1293) *** @@ -164,7 +164,7 @@ Properties #### Defined in -[packages/core/src/types.ts:1288](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1288) +[packages/core/src/types.ts:1295](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1295) *** @@ -174,7 +174,7 @@ Properties #### Defined in -[packages/core/src/types.ts:1289](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1289) +[packages/core/src/types.ts:1296](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1296) *** @@ -184,7 +184,7 @@ Properties #### Defined in -[packages/core/src/types.ts:1290](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1290) +[packages/core/src/types.ts:1297](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1297) *** @@ -194,7 +194,7 @@ Properties #### Defined in -[packages/core/src/types.ts:1291](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1291) +[packages/core/src/types.ts:1298](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1298) *** @@ -204,7 +204,7 @@ Properties #### Defined in -[packages/core/src/types.ts:1292](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1292) +[packages/core/src/types.ts:1299](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1299) *** @@ -214,7 +214,7 @@ Properties #### Defined in -[packages/core/src/types.ts:1293](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1293) +[packages/core/src/types.ts:1300](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1300) *** @@ -224,7 +224,7 @@ Properties #### Defined in -[packages/core/src/types.ts:1295](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1295) +[packages/core/src/types.ts:1302](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1302) *** @@ -234,7 +234,7 @@ Properties #### Defined in -[packages/core/src/types.ts:1297](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1297) +[packages/core/src/types.ts:1304](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1304) *** @@ -244,7 +244,7 @@ Properties #### Defined in -[packages/core/src/types.ts:1298](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1298) +[packages/core/src/types.ts:1305](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1305) ## Methods @@ -260,7 +260,7 @@ verifiableInferenceAdapter?: IVerifiableInferenceAdapter | null; #### Defined in -[packages/core/src/types.ts:1302](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1302) +[packages/core/src/types.ts:1309](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1309) *** @@ -278,7 +278,7 @@ verifiableInferenceAdapter?: IVerifiableInferenceAdapter | null; #### Defined in -[packages/core/src/types.ts:1304](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1304) +[packages/core/src/types.ts:1311](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1311) *** @@ -296,7 +296,7 @@ verifiableInferenceAdapter?: IVerifiableInferenceAdapter | null; #### Defined in -[packages/core/src/types.ts:1306](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1306) +[packages/core/src/types.ts:1313](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1313) *** @@ -318,7 +318,7 @@ verifiableInferenceAdapter?: IVerifiableInferenceAdapter | null; #### Defined in -[packages/core/src/types.ts:1308](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1308) +[packages/core/src/types.ts:1315](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1315) *** @@ -336,7 +336,7 @@ verifiableInferenceAdapter?: IVerifiableInferenceAdapter | null; #### Defined in -[packages/core/src/types.ts:1310](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1310) +[packages/core/src/types.ts:1317](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1317) *** @@ -354,7 +354,7 @@ verifiableInferenceAdapter?: IVerifiableInferenceAdapter | null; #### Defined in -[packages/core/src/types.ts:1312](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1312) +[packages/core/src/types.ts:1319](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1319) *** @@ -370,7 +370,7 @@ Methods #### Defined in -[packages/core/src/types.ts:1315](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1315) +[packages/core/src/types.ts:1322](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1322) *** @@ -394,7 +394,7 @@ Methods #### Defined in -[packages/core/src/types.ts:1317](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1317) +[packages/core/src/types.ts:1324](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1324) *** @@ -418,7 +418,7 @@ Methods #### Defined in -[packages/core/src/types.ts:1324](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1324) +[packages/core/src/types.ts:1331](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1331) *** @@ -438,7 +438,7 @@ Methods #### Defined in -[packages/core/src/types.ts:1331](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1331) +[packages/core/src/types.ts:1338](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1338) *** @@ -462,7 +462,7 @@ Methods #### Defined in -[packages/core/src/types.ts:1333](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1333) +[packages/core/src/types.ts:1340](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1340) *** @@ -480,7 +480,7 @@ Methods #### Defined in -[packages/core/src/types.ts:1340](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1340) +[packages/core/src/types.ts:1347](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1347) *** @@ -506,7 +506,7 @@ Methods #### Defined in -[packages/core/src/types.ts:1342](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1342) +[packages/core/src/types.ts:1349](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1349) *** @@ -526,7 +526,7 @@ Methods #### Defined in -[packages/core/src/types.ts:1350](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1350) +[packages/core/src/types.ts:1357](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1357) *** @@ -544,7 +544,7 @@ Methods #### Defined in -[packages/core/src/types.ts:1352](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1352) +[packages/core/src/types.ts:1359](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1359) *** @@ -564,7 +564,7 @@ Methods #### Defined in -[packages/core/src/types.ts:1354](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1354) +[packages/core/src/types.ts:1361](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1361) *** @@ -582,4 +582,4 @@ Methods #### Defined in -[packages/core/src/types.ts:1359](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1359) +[packages/core/src/types.ts:1366](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1366) diff --git a/docs/api/interfaces/IAwsS3Service.md b/docs/api/interfaces/IAwsS3Service.md index 0c23a846a4e..9bca956772a 100644 --- a/docs/api/interfaces/IAwsS3Service.md +++ b/docs/api/interfaces/IAwsS3Service.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / IAwsS3Service +[@elizaos/core v0.25.8](../index.md) / IAwsS3Service # Interface: IAwsS3Service @@ -24,7 +24,7 @@ #### Defined in -[packages/core/src/types.ts:1263](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1263) +[packages/core/src/types.ts:1270](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1270) ## Methods @@ -48,7 +48,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1268](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1268) +[packages/core/src/types.ts:1275](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1275) *** @@ -84,7 +84,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1424](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1424) +[packages/core/src/types.ts:1431](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1431) *** @@ -104,4 +104,4 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1434](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1434) +[packages/core/src/types.ts:1441](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1441) diff --git a/docs/api/interfaces/IBrowserService.md b/docs/api/interfaces/IBrowserService.md index 573200d0dd1..fc3ac7c5daa 100644 --- a/docs/api/interfaces/IBrowserService.md +++ b/docs/api/interfaces/IBrowserService.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / IBrowserService +[@elizaos/core v0.25.8](../index.md) / IBrowserService # Interface: IBrowserService @@ -24,7 +24,7 @@ #### Defined in -[packages/core/src/types.ts:1263](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1263) +[packages/core/src/types.ts:1270](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1270) ## Methods @@ -48,7 +48,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1268](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1268) +[packages/core/src/types.ts:1275](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1275) *** @@ -62,7 +62,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1406](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1406) +[packages/core/src/types.ts:1413](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1413) *** @@ -94,4 +94,4 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1407](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1407) +[packages/core/src/types.ts:1414](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1414) diff --git a/docs/api/interfaces/ICacheAdapter.md b/docs/api/interfaces/ICacheAdapter.md index e620059bab4..6fb6d82553d 100644 --- a/docs/api/interfaces/ICacheAdapter.md +++ b/docs/api/interfaces/ICacheAdapter.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / ICacheAdapter +[@elizaos/core v0.25.8](../index.md) / ICacheAdapter # Interface: ICacheAdapter diff --git a/docs/api/interfaces/ICacheManager.md b/docs/api/interfaces/ICacheManager.md index e38699b590e..d45a3707f38 100644 --- a/docs/api/interfaces/ICacheManager.md +++ b/docs/api/interfaces/ICacheManager.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / ICacheManager +[@elizaos/core v0.25.8](../index.md) / ICacheManager # Interface: ICacheManager @@ -22,7 +22,7 @@ #### Defined in -[packages/core/src/types.ts:1244](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1244) +[packages/core/src/types.ts:1251](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1251) *** @@ -48,7 +48,7 @@ #### Defined in -[packages/core/src/types.ts:1245](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1245) +[packages/core/src/types.ts:1252](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1252) *** @@ -66,4 +66,4 @@ #### Defined in -[packages/core/src/types.ts:1246](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1246) +[packages/core/src/types.ts:1253](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1253) diff --git a/docs/api/interfaces/IDatabaseAdapter.md b/docs/api/interfaces/IDatabaseAdapter.md index ca1f69acc78..900fa5ea225 100644 --- a/docs/api/interfaces/IDatabaseAdapter.md +++ b/docs/api/interfaces/IDatabaseAdapter.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / IDatabaseAdapter +[@elizaos/core v0.25.8](../index.md) / IDatabaseAdapter # Interface: IDatabaseAdapter @@ -14,7 +14,7 @@ Database instance #### Defined in -[packages/core/src/types.ts:972](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L972) +[packages/core/src/types.ts:979](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L979) ## Methods @@ -30,7 +30,7 @@ Optional initialization #### Defined in -[packages/core/src/types.ts:975](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L975) +[packages/core/src/types.ts:982](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L982) *** @@ -46,7 +46,7 @@ Close database connection #### Defined in -[packages/core/src/types.ts:978](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L978) +[packages/core/src/types.ts:985](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L985) *** @@ -66,7 +66,7 @@ Get account by ID #### Defined in -[packages/core/src/types.ts:981](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L981) +[packages/core/src/types.ts:988](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L988) *** @@ -86,7 +86,7 @@ Create new account #### Defined in -[packages/core/src/types.ts:984](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L984) +[packages/core/src/types.ts:991](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L991) *** @@ -120,7 +120,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:987](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L987) +[packages/core/src/types.ts:994](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L994) *** @@ -138,7 +138,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:997](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L997) +[packages/core/src/types.ts:1004](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1004) *** @@ -158,7 +158,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:999](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L999) +[packages/core/src/types.ts:1006](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1006) *** @@ -184,7 +184,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:1001](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1001) +[packages/core/src/types.ts:1008](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1008) *** @@ -214,7 +214,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:1008](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1008) +[packages/core/src/types.ts:1015](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1015) *** @@ -240,7 +240,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:1017](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1017) +[packages/core/src/types.ts:1024](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1024) *** @@ -260,7 +260,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:1024](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1024) +[packages/core/src/types.ts:1031](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1031) *** @@ -292,7 +292,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:1026](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1026) +[packages/core/src/types.ts:1033](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1033) *** @@ -314,7 +314,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:1036](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1036) +[packages/core/src/types.ts:1043](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1043) *** @@ -346,7 +346,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:1041](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1041) +[packages/core/src/types.ts:1048](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1048) *** @@ -368,7 +368,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:1053](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1053) +[packages/core/src/types.ts:1060](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1060) *** @@ -388,7 +388,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:1059](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1059) +[packages/core/src/types.ts:1066](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1066) *** @@ -408,7 +408,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:1061](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1061) +[packages/core/src/types.ts:1068](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1068) *** @@ -430,7 +430,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:1063](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1063) +[packages/core/src/types.ts:1070](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1070) *** @@ -458,7 +458,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:1069](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1069) +[packages/core/src/types.ts:1076](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1076) *** @@ -476,7 +476,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:1077](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1077) +[packages/core/src/types.ts:1084](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1084) *** @@ -494,7 +494,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:1079](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1079) +[packages/core/src/types.ts:1086](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1086) *** @@ -512,7 +512,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:1081](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1081) +[packages/core/src/types.ts:1088](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1088) *** @@ -530,7 +530,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:1083](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1083) +[packages/core/src/types.ts:1090](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1090) *** @@ -548,7 +548,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:1085](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1085) +[packages/core/src/types.ts:1092](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1092) *** @@ -566,7 +566,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:1087](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1087) +[packages/core/src/types.ts:1094](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1094) *** @@ -584,7 +584,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:1089](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1089) +[packages/core/src/types.ts:1096](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1096) *** @@ -602,7 +602,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:1091](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1091) +[packages/core/src/types.ts:1098](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1098) *** @@ -620,7 +620,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:1093](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1093) +[packages/core/src/types.ts:1100](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1100) *** @@ -640,7 +640,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:1095](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1095) +[packages/core/src/types.ts:1102](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1102) *** @@ -660,7 +660,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:1097](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1097) +[packages/core/src/types.ts:1104](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1104) *** @@ -678,7 +678,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:1099](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1099) +[packages/core/src/types.ts:1106](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1106) *** @@ -696,7 +696,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:1101](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1101) +[packages/core/src/types.ts:1108](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1108) *** @@ -716,7 +716,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:1103](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1103) +[packages/core/src/types.ts:1110](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1110) *** @@ -738,7 +738,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:1108](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1108) +[packages/core/src/types.ts:1115](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1115) *** @@ -760,7 +760,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:1114](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1114) +[packages/core/src/types.ts:1121](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1121) *** @@ -782,7 +782,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:1116](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1116) +[packages/core/src/types.ts:1123](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1123) *** @@ -802,7 +802,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:1121](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1121) +[packages/core/src/types.ts:1128](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1128) *** @@ -830,7 +830,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:1123](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1123) +[packages/core/src/types.ts:1130](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1130) *** @@ -858,7 +858,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:1131](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1131) +[packages/core/src/types.ts:1138](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1138) *** @@ -876,7 +876,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:1139](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1139) +[packages/core/src/types.ts:1146](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1146) *** @@ -894,7 +894,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:1140](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1140) +[packages/core/src/types.ts:1147](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1147) *** @@ -914,4 +914,4 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:1141](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1141) +[packages/core/src/types.ts:1148](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1148) diff --git a/docs/api/interfaces/IDatabaseCacheAdapter.md b/docs/api/interfaces/IDatabaseCacheAdapter.md index 6f668f0a77a..07b3158c8a5 100644 --- a/docs/api/interfaces/IDatabaseCacheAdapter.md +++ b/docs/api/interfaces/IDatabaseCacheAdapter.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / IDatabaseCacheAdapter +[@elizaos/core v0.25.8](../index.md) / IDatabaseCacheAdapter # Interface: IDatabaseCacheAdapter @@ -22,7 +22,7 @@ #### Defined in -[packages/core/src/types.ts:1145](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1145) +[packages/core/src/types.ts:1152](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1152) *** @@ -46,7 +46,7 @@ #### Defined in -[packages/core/src/types.ts:1150](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1150) +[packages/core/src/types.ts:1157](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1157) *** @@ -68,4 +68,4 @@ #### Defined in -[packages/core/src/types.ts:1156](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1156) +[packages/core/src/types.ts:1163](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1163) diff --git a/docs/api/interfaces/IImageDescriptionService.md b/docs/api/interfaces/IImageDescriptionService.md index d7bfb5e4552..acef632d9ca 100644 --- a/docs/api/interfaces/IImageDescriptionService.md +++ b/docs/api/interfaces/IImageDescriptionService.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / IImageDescriptionService +[@elizaos/core v0.25.8](../index.md) / IImageDescriptionService # Interface: IImageDescriptionService @@ -24,7 +24,7 @@ #### Defined in -[packages/core/src/types.ts:1263](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1263) +[packages/core/src/types.ts:1270](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1270) ## Methods @@ -48,7 +48,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1268](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1268) +[packages/core/src/types.ts:1275](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1275) *** @@ -74,4 +74,4 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1363](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1363) +[packages/core/src/types.ts:1370](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1370) diff --git a/docs/api/interfaces/IIrysService.md b/docs/api/interfaces/IIrysService.md index aed951bd43e..aa57349ebae 100644 --- a/docs/api/interfaces/IIrysService.md +++ b/docs/api/interfaces/IIrysService.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / IIrysService +[@elizaos/core v0.25.8](../index.md) / IIrysService # Interface: IIrysService @@ -24,7 +24,7 @@ #### Defined in -[packages/core/src/types.ts:1263](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1263) +[packages/core/src/types.ts:1270](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1270) ## Methods @@ -48,7 +48,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1268](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1268) +[packages/core/src/types.ts:1275](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1275) *** @@ -70,7 +70,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1473](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1473) +[packages/core/src/types.ts:1480](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1480) *** @@ -104,7 +104,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1478](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1478) +[packages/core/src/types.ts:1485](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1485) *** @@ -128,4 +128,4 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1489](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1489) +[packages/core/src/types.ts:1496](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1496) diff --git a/docs/api/interfaces/IMemoryManager.md b/docs/api/interfaces/IMemoryManager.md index d4ac25dd635..7cb15f3e368 100644 --- a/docs/api/interfaces/IMemoryManager.md +++ b/docs/api/interfaces/IMemoryManager.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / IMemoryManager +[@elizaos/core v0.25.8](../index.md) / IMemoryManager # Interface: IMemoryManager @@ -10,7 +10,7 @@ #### Defined in -[packages/core/src/types.ts:1160](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1160) +[packages/core/src/types.ts:1167](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1167) *** @@ -20,7 +20,7 @@ #### Defined in -[packages/core/src/types.ts:1161](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1161) +[packages/core/src/types.ts:1168](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1168) *** @@ -30,7 +30,7 @@ #### Defined in -[packages/core/src/types.ts:1162](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1162) +[packages/core/src/types.ts:1169](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1169) ## Methods @@ -48,7 +48,7 @@ #### Defined in -[packages/core/src/types.ts:1164](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1164) +[packages/core/src/types.ts:1171](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1171) *** @@ -76,7 +76,7 @@ #### Defined in -[packages/core/src/types.ts:1166](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1166) +[packages/core/src/types.ts:1173](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1173) *** @@ -94,7 +94,7 @@ #### Defined in -[packages/core/src/types.ts:1174](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1174) +[packages/core/src/types.ts:1181](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1181) *** @@ -112,7 +112,7 @@ #### Defined in -[packages/core/src/types.ts:1178](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1178) +[packages/core/src/types.ts:1185](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1185) *** @@ -134,7 +134,7 @@ #### Defined in -[packages/core/src/types.ts:1179](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1179) +[packages/core/src/types.ts:1186](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1186) *** @@ -162,7 +162,7 @@ #### Defined in -[packages/core/src/types.ts:1183](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1183) +[packages/core/src/types.ts:1190](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1190) *** @@ -182,7 +182,7 @@ #### Defined in -[packages/core/src/types.ts:1193](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1193) +[packages/core/src/types.ts:1200](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1200) *** @@ -200,7 +200,7 @@ #### Defined in -[packages/core/src/types.ts:1195](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1195) +[packages/core/src/types.ts:1202](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1202) *** @@ -218,7 +218,7 @@ #### Defined in -[packages/core/src/types.ts:1197](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1197) +[packages/core/src/types.ts:1204](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1204) *** @@ -238,4 +238,4 @@ #### Defined in -[packages/core/src/types.ts:1199](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1199) +[packages/core/src/types.ts:1206](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1206) diff --git a/docs/api/interfaces/IPdfService.md b/docs/api/interfaces/IPdfService.md index deb0c831589..9b6c36822db 100644 --- a/docs/api/interfaces/IPdfService.md +++ b/docs/api/interfaces/IPdfService.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / IPdfService +[@elizaos/core v0.25.8](../index.md) / IPdfService # Interface: IPdfService @@ -24,7 +24,7 @@ #### Defined in -[packages/core/src/types.ts:1263](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1263) +[packages/core/src/types.ts:1270](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1270) ## Methods @@ -48,7 +48,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1268](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1268) +[packages/core/src/types.ts:1275](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1275) *** @@ -62,7 +62,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1419](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1419) +[packages/core/src/types.ts:1426](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1426) *** @@ -80,4 +80,4 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1420](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1420) +[packages/core/src/types.ts:1427](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1427) diff --git a/docs/api/interfaces/IRAGKnowledgeManager.md b/docs/api/interfaces/IRAGKnowledgeManager.md index 7285b3fd6fa..d8351cd6c80 100644 --- a/docs/api/interfaces/IRAGKnowledgeManager.md +++ b/docs/api/interfaces/IRAGKnowledgeManager.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / IRAGKnowledgeManager +[@elizaos/core v0.25.8](../index.md) / IRAGKnowledgeManager # Interface: IRAGKnowledgeManager @@ -10,7 +10,7 @@ #### Defined in -[packages/core/src/types.ts:1203](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1203) +[packages/core/src/types.ts:1210](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1210) *** @@ -20,7 +20,7 @@ #### Defined in -[packages/core/src/types.ts:1204](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1204) +[packages/core/src/types.ts:1211](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1211) ## Methods @@ -48,7 +48,7 @@ #### Defined in -[packages/core/src/types.ts:1206](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1206) +[packages/core/src/types.ts:1213](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1213) *** @@ -66,7 +66,7 @@ #### Defined in -[packages/core/src/types.ts:1213](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1213) +[packages/core/src/types.ts:1220](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1220) *** @@ -84,7 +84,7 @@ #### Defined in -[packages/core/src/types.ts:1214](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1214) +[packages/core/src/types.ts:1221](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1221) *** @@ -112,7 +112,7 @@ #### Defined in -[packages/core/src/types.ts:1215](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1215) +[packages/core/src/types.ts:1222](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1222) *** @@ -130,7 +130,7 @@ #### Defined in -[packages/core/src/types.ts:1222](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1222) +[packages/core/src/types.ts:1229](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1229) *** @@ -156,7 +156,7 @@ #### Defined in -[packages/core/src/types.ts:1223](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1223) +[packages/core/src/types.ts:1230](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1230) *** @@ -170,7 +170,7 @@ #### Defined in -[packages/core/src/types.ts:1229](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1229) +[packages/core/src/types.ts:1236](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1236) *** @@ -190,4 +190,4 @@ #### Defined in -[packages/core/src/types.ts:1230](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1230) +[packages/core/src/types.ts:1237](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1237) diff --git a/docs/api/interfaces/ISlackService.md b/docs/api/interfaces/ISlackService.md index ab124671b88..f87772bb9c4 100644 --- a/docs/api/interfaces/ISlackService.md +++ b/docs/api/interfaces/ISlackService.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / ISlackService +[@elizaos/core v0.25.8](../index.md) / ISlackService # Interface: ISlackService @@ -14,7 +14,7 @@ #### Defined in -[packages/core/src/types.ts:1569](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1569) +[packages/core/src/types.ts:1577](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1577) ## Accessors @@ -34,7 +34,7 @@ #### Defined in -[packages/core/src/types.ts:1263](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1263) +[packages/core/src/types.ts:1270](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1270) ## Methods @@ -58,4 +58,4 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1268](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1268) +[packages/core/src/types.ts:1275](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1275) diff --git a/docs/api/interfaces/ISpeechService.md b/docs/api/interfaces/ISpeechService.md index 99067cfdf27..9f5f704c195 100644 --- a/docs/api/interfaces/ISpeechService.md +++ b/docs/api/interfaces/ISpeechService.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / ISpeechService +[@elizaos/core v0.25.8](../index.md) / ISpeechService # Interface: ISpeechService @@ -24,7 +24,7 @@ #### Defined in -[packages/core/src/types.ts:1263](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1263) +[packages/core/src/types.ts:1270](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1270) ## Methods @@ -48,7 +48,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1268](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1268) +[packages/core/src/types.ts:1275](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1275) *** @@ -62,7 +62,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1414](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1414) +[packages/core/src/types.ts:1421](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1421) *** @@ -82,4 +82,4 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1415](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1415) +[packages/core/src/types.ts:1422](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1422) diff --git a/docs/api/interfaces/ITeeLogService.md b/docs/api/interfaces/ITeeLogService.md index c3e98ba87f8..96fb2f758c4 100644 --- a/docs/api/interfaces/ITeeLogService.md +++ b/docs/api/interfaces/ITeeLogService.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / ITeeLogService +[@elizaos/core v0.25.8](../index.md) / ITeeLogService # Interface: ITeeLogService @@ -24,7 +24,7 @@ #### Defined in -[packages/core/src/types.ts:1263](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1263) +[packages/core/src/types.ts:1270](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1270) ## Methods @@ -48,7 +48,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1268](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1268) +[packages/core/src/types.ts:1275](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1275) *** @@ -62,7 +62,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1498](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1498) +[packages/core/src/types.ts:1505](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1505) *** @@ -88,4 +88,4 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1499](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1499) +[packages/core/src/types.ts:1506](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1506) diff --git a/docs/api/interfaces/ITextGenerationService.md b/docs/api/interfaces/ITextGenerationService.md index 1f465546dc5..f26828918fd 100644 --- a/docs/api/interfaces/ITextGenerationService.md +++ b/docs/api/interfaces/ITextGenerationService.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / ITextGenerationService +[@elizaos/core v0.25.8](../index.md) / ITextGenerationService # Interface: ITextGenerationService @@ -24,7 +24,7 @@ #### Defined in -[packages/core/src/types.ts:1263](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1263) +[packages/core/src/types.ts:1270](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1270) ## Methods @@ -48,7 +48,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1268](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1268) +[packages/core/src/types.ts:1275](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1275) *** @@ -62,7 +62,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1385](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1385) +[packages/core/src/types.ts:1392](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1392) *** @@ -90,7 +90,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1386](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1386) +[packages/core/src/types.ts:1393](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1393) *** @@ -118,7 +118,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1394](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1394) +[packages/core/src/types.ts:1401](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1401) *** @@ -136,4 +136,4 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1402](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1402) +[packages/core/src/types.ts:1409](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1409) diff --git a/docs/api/interfaces/ITranscriptionService.md b/docs/api/interfaces/ITranscriptionService.md index 15c45e5062e..85a2e87167b 100644 --- a/docs/api/interfaces/ITranscriptionService.md +++ b/docs/api/interfaces/ITranscriptionService.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / ITranscriptionService +[@elizaos/core v0.25.8](../index.md) / ITranscriptionService # Interface: ITranscriptionService @@ -24,7 +24,7 @@ #### Defined in -[packages/core/src/types.ts:1263](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1263) +[packages/core/src/types.ts:1270](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1270) ## Methods @@ -48,7 +48,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1268](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1268) +[packages/core/src/types.ts:1275](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1275) *** @@ -66,7 +66,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1369](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1369) +[packages/core/src/types.ts:1376](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1376) *** @@ -84,7 +84,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1370](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1370) +[packages/core/src/types.ts:1377](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1377) *** @@ -102,7 +102,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1373](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1373) +[packages/core/src/types.ts:1380](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1380) *** @@ -120,4 +120,4 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1374](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1374) +[packages/core/src/types.ts:1381](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1381) diff --git a/docs/api/interfaces/IVideoService.md b/docs/api/interfaces/IVideoService.md index 3e8aa9f34e4..8bdb8c288b0 100644 --- a/docs/api/interfaces/IVideoService.md +++ b/docs/api/interfaces/IVideoService.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / IVideoService +[@elizaos/core v0.25.8](../index.md) / IVideoService # Interface: IVideoService @@ -24,7 +24,7 @@ #### Defined in -[packages/core/src/types.ts:1263](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1263) +[packages/core/src/types.ts:1270](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1270) ## Methods @@ -48,7 +48,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1268](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1268) +[packages/core/src/types.ts:1275](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1275) *** @@ -66,7 +66,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1378](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1378) +[packages/core/src/types.ts:1385](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1385) *** @@ -84,7 +84,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1379](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1379) +[packages/core/src/types.ts:1386](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1386) *** @@ -102,7 +102,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1380](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1380) +[packages/core/src/types.ts:1387](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1387) *** @@ -122,4 +122,4 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1381](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1381) +[packages/core/src/types.ts:1388](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1388) diff --git a/docs/api/interfaces/IrysTimestamp.md b/docs/api/interfaces/IrysTimestamp.md index 591e1d93692..19e54cf9f63 100644 --- a/docs/api/interfaces/IrysTimestamp.md +++ b/docs/api/interfaces/IrysTimestamp.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / IrysTimestamp +[@elizaos/core v0.25.8](../index.md) / IrysTimestamp # Interface: IrysTimestamp @@ -10,7 +10,7 @@ #### Defined in -[packages/core/src/types.ts:1468](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1468) +[packages/core/src/types.ts:1475](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1475) *** @@ -20,4 +20,4 @@ #### Defined in -[packages/core/src/types.ts:1469](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1469) +[packages/core/src/types.ts:1476](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1476) diff --git a/docs/api/interfaces/Memory.md b/docs/api/interfaces/Memory.md index ac7503b7619..2a888ec5618 100644 --- a/docs/api/interfaces/Memory.md +++ b/docs/api/interfaces/Memory.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / Memory +[@elizaos/core v0.25.8](../index.md) / Memory # Interface: Memory @@ -14,7 +14,7 @@ Optional unique identifier #### Defined in -[packages/core/src/types.ts:369](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L369) +[packages/core/src/types.ts:373](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L373) *** @@ -26,7 +26,7 @@ Associated user ID #### Defined in -[packages/core/src/types.ts:372](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L372) +[packages/core/src/types.ts:376](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L376) *** @@ -38,7 +38,7 @@ Associated agent ID #### Defined in -[packages/core/src/types.ts:375](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L375) +[packages/core/src/types.ts:379](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L379) *** @@ -50,7 +50,7 @@ Optional creation timestamp #### Defined in -[packages/core/src/types.ts:378](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L378) +[packages/core/src/types.ts:382](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L382) *** @@ -62,7 +62,7 @@ Memory content #### Defined in -[packages/core/src/types.ts:381](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L381) +[packages/core/src/types.ts:385](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L385) *** @@ -74,7 +74,7 @@ Optional embedding vector #### Defined in -[packages/core/src/types.ts:384](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L384) +[packages/core/src/types.ts:388](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L388) *** @@ -86,7 +86,7 @@ Associated room ID #### Defined in -[packages/core/src/types.ts:387](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L387) +[packages/core/src/types.ts:391](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L391) *** @@ -98,7 +98,7 @@ Whether memory is unique #### Defined in -[packages/core/src/types.ts:390](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L390) +[packages/core/src/types.ts:394](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L394) *** @@ -110,4 +110,4 @@ Embedding similarity score #### Defined in -[packages/core/src/types.ts:393](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L393) +[packages/core/src/types.ts:397](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L397) diff --git a/docs/api/interfaces/MessageExample.md b/docs/api/interfaces/MessageExample.md index 86936186fad..da5bb1112b1 100644 --- a/docs/api/interfaces/MessageExample.md +++ b/docs/api/interfaces/MessageExample.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / MessageExample +[@elizaos/core v0.25.8](../index.md) / MessageExample # Interface: MessageExample @@ -14,7 +14,7 @@ Associated user #### Defined in -[packages/core/src/types.ts:401](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L401) +[packages/core/src/types.ts:405](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L405) *** @@ -26,4 +26,4 @@ Message content #### Defined in -[packages/core/src/types.ts:404](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L404) +[packages/core/src/types.ts:408](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L408) diff --git a/docs/api/interfaces/ModelConfiguration.md b/docs/api/interfaces/ModelConfiguration.md index 2c3d8722e56..14b19b7b444 100644 --- a/docs/api/interfaces/ModelConfiguration.md +++ b/docs/api/interfaces/ModelConfiguration.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / ModelConfiguration +[@elizaos/core v0.25.8](../index.md) / ModelConfiguration # Interface: ModelConfiguration @@ -10,7 +10,7 @@ #### Defined in -[packages/core/src/types.ts:702](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L702) +[packages/core/src/types.ts:709](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L709) *** @@ -20,7 +20,7 @@ #### Defined in -[packages/core/src/types.ts:703](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L703) +[packages/core/src/types.ts:710](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L710) *** @@ -30,7 +30,7 @@ #### Defined in -[packages/core/src/types.ts:704](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L704) +[packages/core/src/types.ts:711](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L711) *** @@ -40,7 +40,7 @@ #### Defined in -[packages/core/src/types.ts:705](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L705) +[packages/core/src/types.ts:712](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L712) *** @@ -50,7 +50,7 @@ #### Defined in -[packages/core/src/types.ts:706](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L706) +[packages/core/src/types.ts:713](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L713) *** @@ -60,4 +60,4 @@ #### Defined in -[packages/core/src/types.ts:707](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L707) +[packages/core/src/types.ts:714](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L714) diff --git a/docs/api/interfaces/Objective.md b/docs/api/interfaces/Objective.md index 206b19b062f..58bd9142e5b 100644 --- a/docs/api/interfaces/Objective.md +++ b/docs/api/interfaces/Objective.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / Objective +[@elizaos/core v0.25.8](../index.md) / Objective # Interface: Objective diff --git a/docs/api/interfaces/Participant.md b/docs/api/interfaces/Participant.md index 5224b3e3874..6fbab79a423 100644 --- a/docs/api/interfaces/Participant.md +++ b/docs/api/interfaces/Participant.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / Participant +[@elizaos/core v0.25.8](../index.md) / Participant # Interface: Participant @@ -14,7 +14,7 @@ Unique identifier #### Defined in -[packages/core/src/types.ts:567](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L567) +[packages/core/src/types.ts:571](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L571) *** @@ -26,4 +26,4 @@ Associated account #### Defined in -[packages/core/src/types.ts:570](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L570) +[packages/core/src/types.ts:574](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L574) diff --git a/docs/api/interfaces/Provider.md b/docs/api/interfaces/Provider.md index 892a3b232b5..b660f684bea 100644 --- a/docs/api/interfaces/Provider.md +++ b/docs/api/interfaces/Provider.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / Provider +[@elizaos/core v0.25.8](../index.md) / Provider # Interface: Provider @@ -26,4 +26,4 @@ Data retrieval function #### Defined in -[packages/core/src/types.ts:506](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L506) +[packages/core/src/types.ts:510](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L510) diff --git a/docs/api/interfaces/RAGKnowledgeItem.md b/docs/api/interfaces/RAGKnowledgeItem.md index 8b17cd3e4a6..68eebb7080b 100644 --- a/docs/api/interfaces/RAGKnowledgeItem.md +++ b/docs/api/interfaces/RAGKnowledgeItem.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / RAGKnowledgeItem +[@elizaos/core v0.25.8](../index.md) / RAGKnowledgeItem # Interface: RAGKnowledgeItem @@ -10,7 +10,7 @@ #### Defined in -[packages/core/src/types.ts:1540](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1540) +[packages/core/src/types.ts:1548](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1548) *** @@ -20,7 +20,7 @@ #### Defined in -[packages/core/src/types.ts:1541](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1541) +[packages/core/src/types.ts:1549](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1549) *** @@ -70,7 +70,7 @@ #### Defined in -[packages/core/src/types.ts:1542](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1542) +[packages/core/src/types.ts:1550](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1550) *** @@ -80,7 +80,7 @@ #### Defined in -[packages/core/src/types.ts:1555](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1555) +[packages/core/src/types.ts:1563](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1563) *** @@ -90,7 +90,7 @@ #### Defined in -[packages/core/src/types.ts:1556](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1556) +[packages/core/src/types.ts:1564](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1564) *** @@ -100,7 +100,7 @@ #### Defined in -[packages/core/src/types.ts:1557](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1557) +[packages/core/src/types.ts:1565](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1565) *** @@ -110,4 +110,4 @@ #### Defined in -[packages/core/src/types.ts:1558](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1558) +[packages/core/src/types.ts:1566](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1566) diff --git a/docs/api/interfaces/Relationship.md b/docs/api/interfaces/Relationship.md index a9ba5e61091..3e7f30b862e 100644 --- a/docs/api/interfaces/Relationship.md +++ b/docs/api/interfaces/Relationship.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / Relationship +[@elizaos/core v0.25.8](../index.md) / Relationship # Interface: Relationship @@ -14,7 +14,7 @@ Unique identifier #### Defined in -[packages/core/src/types.ts:518](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L518) +[packages/core/src/types.ts:522](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L522) *** @@ -26,7 +26,7 @@ First user ID #### Defined in -[packages/core/src/types.ts:521](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L521) +[packages/core/src/types.ts:525](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L525) *** @@ -38,7 +38,7 @@ Second user ID #### Defined in -[packages/core/src/types.ts:524](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L524) +[packages/core/src/types.ts:528](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L528) *** @@ -50,7 +50,7 @@ Primary user ID #### Defined in -[packages/core/src/types.ts:527](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L527) +[packages/core/src/types.ts:531](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L531) *** @@ -62,7 +62,7 @@ Associated room ID #### Defined in -[packages/core/src/types.ts:530](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L530) +[packages/core/src/types.ts:534](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L534) *** @@ -74,7 +74,7 @@ Relationship status #### Defined in -[packages/core/src/types.ts:533](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L533) +[packages/core/src/types.ts:537](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L537) *** @@ -86,4 +86,4 @@ Optional creation timestamp #### Defined in -[packages/core/src/types.ts:536](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L536) +[packages/core/src/types.ts:540](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L540) diff --git a/docs/api/interfaces/Room.md b/docs/api/interfaces/Room.md index c108588d8f6..21204f7a70f 100644 --- a/docs/api/interfaces/Room.md +++ b/docs/api/interfaces/Room.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / Room +[@elizaos/core v0.25.8](../index.md) / Room # Interface: Room @@ -14,7 +14,7 @@ Unique identifier #### Defined in -[packages/core/src/types.ts:578](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L578) +[packages/core/src/types.ts:582](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L582) *** @@ -26,4 +26,4 @@ Room participants #### Defined in -[packages/core/src/types.ts:581](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L581) +[packages/core/src/types.ts:585](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L585) diff --git a/docs/api/interfaces/State.md b/docs/api/interfaces/State.md index b2e016450c4..dd7b3fcc990 100644 --- a/docs/api/interfaces/State.md +++ b/docs/api/interfaces/State.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / State +[@elizaos/core v0.25.8](../index.md) / State # Interface: State @@ -18,7 +18,7 @@ ID of user who sent current message #### Defined in -[packages/core/src/types.ts:282](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L282) +[packages/core/src/types.ts:286](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L286) *** @@ -30,7 +30,7 @@ ID of agent in conversation #### Defined in -[packages/core/src/types.ts:285](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L285) +[packages/core/src/types.ts:289](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L289) *** @@ -42,7 +42,7 @@ Agent's biography #### Defined in -[packages/core/src/types.ts:288](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L288) +[packages/core/src/types.ts:292](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L292) *** @@ -54,7 +54,7 @@ Agent's background lore #### Defined in -[packages/core/src/types.ts:291](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L291) +[packages/core/src/types.ts:295](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L295) *** @@ -66,7 +66,7 @@ Message handling directions #### Defined in -[packages/core/src/types.ts:294](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L294) +[packages/core/src/types.ts:298](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L298) *** @@ -78,7 +78,7 @@ Post handling directions #### Defined in -[packages/core/src/types.ts:297](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L297) +[packages/core/src/types.ts:301](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L301) *** @@ -90,7 +90,7 @@ Current room/conversation ID #### Defined in -[packages/core/src/types.ts:300](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L300) +[packages/core/src/types.ts:304](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L304) *** @@ -102,7 +102,7 @@ Optional agent name #### Defined in -[packages/core/src/types.ts:303](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L303) +[packages/core/src/types.ts:307](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L307) *** @@ -114,7 +114,7 @@ Optional message sender name #### Defined in -[packages/core/src/types.ts:306](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L306) +[packages/core/src/types.ts:310](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L310) *** @@ -126,7 +126,7 @@ String representation of conversation actors #### Defined in -[packages/core/src/types.ts:309](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L309) +[packages/core/src/types.ts:313](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L313) *** @@ -138,7 +138,7 @@ Optional array of actor objects #### Defined in -[packages/core/src/types.ts:312](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L312) +[packages/core/src/types.ts:316](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L316) *** @@ -150,7 +150,7 @@ Optional string representation of goals #### Defined in -[packages/core/src/types.ts:315](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L315) +[packages/core/src/types.ts:319](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L319) *** @@ -162,7 +162,7 @@ Optional array of goal objects #### Defined in -[packages/core/src/types.ts:318](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L318) +[packages/core/src/types.ts:322](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L322) *** @@ -174,7 +174,7 @@ Recent message history as string #### Defined in -[packages/core/src/types.ts:321](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L321) +[packages/core/src/types.ts:325](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L325) *** @@ -186,7 +186,7 @@ Recent message objects #### Defined in -[packages/core/src/types.ts:324](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L324) +[packages/core/src/types.ts:328](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L328) *** @@ -198,7 +198,7 @@ Optional valid action names #### Defined in -[packages/core/src/types.ts:327](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L327) +[packages/core/src/types.ts:331](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L331) *** @@ -210,7 +210,7 @@ Optional action descriptions #### Defined in -[packages/core/src/types.ts:330](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L330) +[packages/core/src/types.ts:334](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L334) *** @@ -222,7 +222,7 @@ Optional action objects #### Defined in -[packages/core/src/types.ts:333](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L333) +[packages/core/src/types.ts:337](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L337) *** @@ -234,7 +234,7 @@ Optional action examples #### Defined in -[packages/core/src/types.ts:336](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L336) +[packages/core/src/types.ts:340](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L340) *** @@ -246,7 +246,7 @@ Optional provider descriptions #### Defined in -[packages/core/src/types.ts:339](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L339) +[packages/core/src/types.ts:343](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L343) *** @@ -258,7 +258,7 @@ Optional response content #### Defined in -[packages/core/src/types.ts:342](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L342) +[packages/core/src/types.ts:346](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L346) *** @@ -270,7 +270,7 @@ Optional recent interaction objects #### Defined in -[packages/core/src/types.ts:345](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L345) +[packages/core/src/types.ts:349](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L349) *** @@ -282,7 +282,7 @@ Optional recent interactions string #### Defined in -[packages/core/src/types.ts:348](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L348) +[packages/core/src/types.ts:352](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L352) *** @@ -294,7 +294,7 @@ Optional formatted conversation #### Defined in -[packages/core/src/types.ts:351](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L351) +[packages/core/src/types.ts:355](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L355) *** @@ -306,7 +306,7 @@ Optional formatted knowledge #### Defined in -[packages/core/src/types.ts:354](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L354) +[packages/core/src/types.ts:358](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L358) *** @@ -318,7 +318,7 @@ Optional knowledge data #### Defined in -[packages/core/src/types.ts:356](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L356) +[packages/core/src/types.ts:360](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L360) *** @@ -330,4 +330,4 @@ Optional knowledge data #### Defined in -[packages/core/src/types.ts:358](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L358) +[packages/core/src/types.ts:362](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L362) diff --git a/docs/api/interfaces/TwitterSpaceDecisionOptions.md b/docs/api/interfaces/TwitterSpaceDecisionOptions.md index 162c606a4f8..4b8251fbc24 100644 --- a/docs/api/interfaces/TwitterSpaceDecisionOptions.md +++ b/docs/api/interfaces/TwitterSpaceDecisionOptions.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / TwitterSpaceDecisionOptions +[@elizaos/core v0.25.8](../index.md) / TwitterSpaceDecisionOptions # Interface: TwitterSpaceDecisionOptions @@ -10,7 +10,7 @@ #### Defined in -[packages/core/src/types.ts:952](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L952) +[packages/core/src/types.ts:959](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L959) *** @@ -20,7 +20,7 @@ #### Defined in -[packages/core/src/types.ts:953](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L953) +[packages/core/src/types.ts:960](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L960) *** @@ -30,7 +30,7 @@ #### Defined in -[packages/core/src/types.ts:954](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L954) +[packages/core/src/types.ts:961](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L961) *** @@ -40,7 +40,7 @@ #### Defined in -[packages/core/src/types.ts:955](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L955) +[packages/core/src/types.ts:962](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L962) *** @@ -50,7 +50,7 @@ #### Defined in -[packages/core/src/types.ts:956](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L956) +[packages/core/src/types.ts:963](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L963) *** @@ -60,7 +60,7 @@ #### Defined in -[packages/core/src/types.ts:957](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L957) +[packages/core/src/types.ts:964](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L964) *** @@ -70,7 +70,7 @@ #### Defined in -[packages/core/src/types.ts:958](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L958) +[packages/core/src/types.ts:965](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L965) *** @@ -80,7 +80,7 @@ #### Defined in -[packages/core/src/types.ts:959](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L959) +[packages/core/src/types.ts:966](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L966) *** @@ -90,7 +90,7 @@ #### Defined in -[packages/core/src/types.ts:960](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L960) +[packages/core/src/types.ts:967](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L967) *** @@ -100,7 +100,7 @@ #### Defined in -[packages/core/src/types.ts:961](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L961) +[packages/core/src/types.ts:968](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L968) *** @@ -110,7 +110,7 @@ #### Defined in -[packages/core/src/types.ts:962](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L962) +[packages/core/src/types.ts:969](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L969) *** @@ -120,7 +120,7 @@ #### Defined in -[packages/core/src/types.ts:963](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L963) +[packages/core/src/types.ts:970](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L970) *** @@ -130,4 +130,4 @@ #### Defined in -[packages/core/src/types.ts:964](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L964) +[packages/core/src/types.ts:971](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L971) diff --git a/docs/api/interfaces/UploadIrysResult.md b/docs/api/interfaces/UploadIrysResult.md index fcd8dc6506f..3f3465b653b 100644 --- a/docs/api/interfaces/UploadIrysResult.md +++ b/docs/api/interfaces/UploadIrysResult.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / UploadIrysResult +[@elizaos/core v0.25.8](../index.md) / UploadIrysResult # Interface: UploadIrysResult @@ -10,7 +10,7 @@ #### Defined in -[packages/core/src/types.ts:1438](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1438) +[packages/core/src/types.ts:1445](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1445) *** @@ -20,7 +20,7 @@ #### Defined in -[packages/core/src/types.ts:1439](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1439) +[packages/core/src/types.ts:1446](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1446) *** @@ -30,7 +30,7 @@ #### Defined in -[packages/core/src/types.ts:1440](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1440) +[packages/core/src/types.ts:1447](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1447) *** @@ -40,4 +40,4 @@ #### Defined in -[packages/core/src/types.ts:1441](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1441) +[packages/core/src/types.ts:1448](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1448) diff --git a/docs/api/type-aliases/Adapter.md b/docs/api/type-aliases/Adapter.md index 7f2e9e1a88d..6c39c44b130 100644 --- a/docs/api/type-aliases/Adapter.md +++ b/docs/api/type-aliases/Adapter.md @@ -1,16 +1,18 @@ -[@elizaos/core v0.25.7](../index.md) / Adapter +[@elizaos/core v0.25.8](../index.md) / Adapter # Type Alias: Adapter > **Adapter**: `object` +Database adapter initialization + ## Type declaration ### init() > **init**: (`runtime`) => [`IDatabaseAdapter`](../interfaces/IDatabaseAdapter.md) & [`IDatabaseCacheAdapter`](../interfaces/IDatabaseCacheAdapter.md) -Initialize adapter +Initialize the adapter #### Parameters @@ -22,4 +24,4 @@ Initialize adapter ## Defined in -[packages/core/src/types.ts:635](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L635) +[packages/core/src/types.ts:642](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L642) diff --git a/docs/api/type-aliases/CacheOptions.md b/docs/api/type-aliases/CacheOptions.md index 06d2fbb9ce8..93d80d51566 100644 --- a/docs/api/type-aliases/CacheOptions.md +++ b/docs/api/type-aliases/CacheOptions.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / CacheOptions +[@elizaos/core v0.25.8](../index.md) / CacheOptions # Type Alias: CacheOptions @@ -12,4 +12,4 @@ ## Defined in -[packages/core/src/types.ts:1233](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1233) +[packages/core/src/types.ts:1240](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1240) diff --git a/docs/api/type-aliases/Character.md b/docs/api/type-aliases/Character.md index 93e4f287bd6..4b39b98d665 100644 --- a/docs/api/type-aliases/Character.md +++ b/docs/api/type-aliases/Character.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / Character +[@elizaos/core v0.25.8](../index.md) / Character # Type Alias: Character @@ -712,4 +712,4 @@ Optinal Parent characters to inherit information from ## Defined in -[packages/core/src/types.ts:715](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L715) +[packages/core/src/types.ts:722](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L722) diff --git a/docs/api/type-aliases/CharacterConfig.md b/docs/api/type-aliases/CharacterConfig.md index 93d3ea12da2..63711ed32aa 100644 --- a/docs/api/type-aliases/CharacterConfig.md +++ b/docs/api/type-aliases/CharacterConfig.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / CharacterConfig +[@elizaos/core v0.25.8](../index.md) / CharacterConfig # Type Alias: CharacterConfig diff --git a/docs/api/type-aliases/Client.md b/docs/api/type-aliases/Client.md index f6a8a06adbb..77493e4e774 100644 --- a/docs/api/type-aliases/Client.md +++ b/docs/api/type-aliases/Client.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / Client +[@elizaos/core v0.25.8](../index.md) / Client # Type Alias: Client @@ -40,4 +40,4 @@ Start client connection ## Defined in -[packages/core/src/types.ts:624](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L624) +[packages/core/src/types.ts:628](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L628) diff --git a/docs/api/type-aliases/ClientInstance.md b/docs/api/type-aliases/ClientInstance.md index 7d020a62522..897b7db2326 100644 --- a/docs/api/type-aliases/ClientInstance.md +++ b/docs/api/type-aliases/ClientInstance.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / ClientInstance +[@elizaos/core v0.25.8](../index.md) / ClientInstance # Type Alias: ClientInstance @@ -24,4 +24,4 @@ Stop client connection ## Defined in -[packages/core/src/types.ts:613](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L613) +[packages/core/src/types.ts:617](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L617) diff --git a/docs/api/type-aliases/EmbeddingConfig.md b/docs/api/type-aliases/EmbeddingConfig.md index 8e68ef6c31d..8616101f044 100644 --- a/docs/api/type-aliases/EmbeddingConfig.md +++ b/docs/api/type-aliases/EmbeddingConfig.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / EmbeddingConfig +[@elizaos/core v0.25.8](../index.md) / EmbeddingConfig # Type Alias: EmbeddingConfig diff --git a/docs/api/type-aliases/EmbeddingModelSettings.md b/docs/api/type-aliases/EmbeddingModelSettings.md index b3e68a95d4a..4d85333ae83 100644 --- a/docs/api/type-aliases/EmbeddingModelSettings.md +++ b/docs/api/type-aliases/EmbeddingModelSettings.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / EmbeddingModelSettings +[@elizaos/core v0.25.8](../index.md) / EmbeddingModelSettings # Type Alias: EmbeddingModelSettings diff --git a/docs/api/type-aliases/EmbeddingProviderType.md b/docs/api/type-aliases/EmbeddingProviderType.md index b803ddf8c90..0f98d23d10b 100644 --- a/docs/api/type-aliases/EmbeddingProviderType.md +++ b/docs/api/type-aliases/EmbeddingProviderType.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / EmbeddingProviderType +[@elizaos/core v0.25.8](../index.md) / EmbeddingProviderType # Type Alias: EmbeddingProviderType diff --git a/docs/api/type-aliases/EnvConfig.md b/docs/api/type-aliases/EnvConfig.md index 9b1d9500227..d04701eb613 100644 --- a/docs/api/type-aliases/EnvConfig.md +++ b/docs/api/type-aliases/EnvConfig.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / EnvConfig +[@elizaos/core v0.25.8](../index.md) / EnvConfig # Type Alias: EnvConfig diff --git a/docs/api/type-aliases/Handler.md b/docs/api/type-aliases/Handler.md index a99b4596c29..7a7c26efe5e 100644 --- a/docs/api/type-aliases/Handler.md +++ b/docs/api/type-aliases/Handler.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / Handler +[@elizaos/core v0.25.8](../index.md) / Handler # Type Alias: Handler() @@ -24,4 +24,4 @@ Handler function type for processing messages ## Defined in -[packages/core/src/types.ts:410](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L410) +[packages/core/src/types.ts:414](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L414) diff --git a/docs/api/type-aliases/HandlerCallback.md b/docs/api/type-aliases/HandlerCallback.md index cac07d8f7f7..e725ca74c0f 100644 --- a/docs/api/type-aliases/HandlerCallback.md +++ b/docs/api/type-aliases/HandlerCallback.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / HandlerCallback +[@elizaos/core v0.25.8](../index.md) / HandlerCallback # Type Alias: HandlerCallback() @@ -18,4 +18,4 @@ Callback function type for handlers ## Defined in -[packages/core/src/types.ts:421](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L421) +[packages/core/src/types.ts:425](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L425) diff --git a/docs/api/type-aliases/ImageModelSettings.md b/docs/api/type-aliases/ImageModelSettings.md index 3a7ec3a2f88..3225ea93b5d 100644 --- a/docs/api/type-aliases/ImageModelSettings.md +++ b/docs/api/type-aliases/ImageModelSettings.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / ImageModelSettings +[@elizaos/core v0.25.8](../index.md) / ImageModelSettings # Type Alias: ImageModelSettings diff --git a/docs/api/type-aliases/KnowledgeItem.md b/docs/api/type-aliases/KnowledgeItem.md index 9094c90df0b..661695da7e3 100644 --- a/docs/api/type-aliases/KnowledgeItem.md +++ b/docs/api/type-aliases/KnowledgeItem.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / KnowledgeItem +[@elizaos/core v0.25.8](../index.md) / KnowledgeItem # Type Alias: KnowledgeItem @@ -16,4 +16,4 @@ ## Defined in -[packages/core/src/types.ts:1534](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1534) +[packages/core/src/types.ts:1542](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L1542) diff --git a/docs/api/type-aliases/Media.md b/docs/api/type-aliases/Media.md index 0217c878b26..b322a97a138 100644 --- a/docs/api/type-aliases/Media.md +++ b/docs/api/type-aliases/Media.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / Media +[@elizaos/core v0.25.8](../index.md) / Media # Type Alias: Media @@ -52,4 +52,4 @@ Content type ## Defined in -[packages/core/src/types.ts:587](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L587) +[packages/core/src/types.ts:591](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L591) diff --git a/docs/api/type-aliases/Model.md b/docs/api/type-aliases/Model.md index 183113f63ab..f7390e2bcb3 100644 --- a/docs/api/type-aliases/Model.md +++ b/docs/api/type-aliases/Model.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / Model +[@elizaos/core v0.25.8](../index.md) / Model # Type Alias: Model diff --git a/docs/api/type-aliases/ModelSettings.md b/docs/api/type-aliases/ModelSettings.md index c680243af78..f5408dcaedc 100644 --- a/docs/api/type-aliases/ModelSettings.md +++ b/docs/api/type-aliases/ModelSettings.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / ModelSettings +[@elizaos/core v0.25.8](../index.md) / ModelSettings # Type Alias: ModelSettings diff --git a/docs/api/type-aliases/Models.md b/docs/api/type-aliases/Models.md index 48ed186d2c2..e5b2ed23912 100644 --- a/docs/api/type-aliases/Models.md +++ b/docs/api/type-aliases/Models.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / Models +[@elizaos/core v0.25.8](../index.md) / Models # Type Alias: Models @@ -120,10 +120,6 @@ Model configurations by provider > **livepeer**: [`Model`](Model.md) -### nearai - -> **nearai**: [`Model`](Model.md) - ### deepseek > **deepseek**: [`Model`](Model.md) @@ -140,6 +136,14 @@ Model configurations by provider > **atoma**: [`Model`](Model.md) +### secret\_ai + +> **secret\_ai**: [`Model`](Model.md) + +### nearai + +> **nearai**: [`Model`](Model.md) + ## Defined in [packages/core/src/types.ts:203](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L203) diff --git a/docs/api/type-aliases/Plugin.md b/docs/api/type-aliases/Plugin.md index 2030582135b..6ddf1dc1145 100644 --- a/docs/api/type-aliases/Plugin.md +++ b/docs/api/type-aliases/Plugin.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / Plugin +[@elizaos/core v0.25.8](../index.md) / Plugin # Type Alias: Plugin @@ -68,4 +68,4 @@ Optional adapters ## Defined in -[packages/core/src/types.ts:643](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L643) +[packages/core/src/types.ts:650](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L650) diff --git a/docs/api/type-aliases/TelemetrySettings.md b/docs/api/type-aliases/TelemetrySettings.md index 83eb2915808..596f9e2196e 100644 --- a/docs/api/type-aliases/TelemetrySettings.md +++ b/docs/api/type-aliases/TelemetrySettings.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / TelemetrySettings +[@elizaos/core v0.25.8](../index.md) / TelemetrySettings # Type Alias: TelemetrySettings @@ -38,4 +38,4 @@ Identifier for this function. Used to group telemetry data by function. ## Defined in -[packages/core/src/types.ts:676](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L676) +[packages/core/src/types.ts:683](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L683) diff --git a/docs/api/type-aliases/TemplateType.md b/docs/api/type-aliases/TemplateType.md index ce9cbd36804..78b082c3fa4 100644 --- a/docs/api/type-aliases/TemplateType.md +++ b/docs/api/type-aliases/TemplateType.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / TemplateType +[@elizaos/core v0.25.8](../index.md) / TemplateType # Type Alias: TemplateType @@ -6,4 +6,4 @@ ## Defined in -[packages/core/src/types.ts:710](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L710) +[packages/core/src/types.ts:717](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L717) diff --git a/docs/api/type-aliases/UUID.md b/docs/api/type-aliases/UUID.md index 2ff409ce08f..5ca10540bbc 100644 --- a/docs/api/type-aliases/UUID.md +++ b/docs/api/type-aliases/UUID.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / UUID +[@elizaos/core v0.25.8](../index.md) / UUID # Type Alias: UUID diff --git a/docs/api/type-aliases/Validator.md b/docs/api/type-aliases/Validator.md index 7fff430162b..5262088828d 100644 --- a/docs/api/type-aliases/Validator.md +++ b/docs/api/type-aliases/Validator.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / Validator +[@elizaos/core v0.25.8](../index.md) / Validator # Type Alias: Validator() @@ -20,4 +20,4 @@ Validator function type for actions/evaluators ## Defined in -[packages/core/src/types.ts:429](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L429) +[packages/core/src/types.ts:433](https://github.com/elizaOS/eliza/blob/main/packages/core/src/types.ts#L433) diff --git a/docs/api/typedoc-sidebar.cjs b/docs/api/typedoc-sidebar.cjs index a9aca0ea476..ec1a8460890 100644 --- a/docs/api/typedoc-sidebar.cjs +++ b/docs/api/typedoc-sidebar.cjs @@ -1,4 +1,4 @@ // @ts-check /** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */ -const typedocSidebar = { items: [{"type":"category","label":"Enumerations","items":[{"type":"doc","id":"enumerations/GoalStatus","label":"GoalStatus"},{"type":"doc","id":"enumerations/ModelClass","label":"ModelClass"},{"type":"doc","id":"enumerations/ModelProviderName","label":"ModelProviderName"},{"type":"doc","id":"enumerations/CacheStore","label":"CacheStore"},{"type":"doc","id":"enumerations/IrysMessageType","label":"IrysMessageType"},{"type":"doc","id":"enumerations/IrysDataType","label":"IrysDataType"},{"type":"doc","id":"enumerations/ServiceType","label":"ServiceType"},{"type":"doc","id":"enumerations/LoggingLevel","label":"LoggingLevel"},{"type":"doc","id":"enumerations/TokenizerType","label":"TokenizerType"},{"type":"doc","id":"enumerations/TranscriptionProvider","label":"TranscriptionProvider"},{"type":"doc","id":"enumerations/ActionTimelineType","label":"ActionTimelineType"},{"type":"doc","id":"enumerations/KnowledgeScope","label":"KnowledgeScope"},{"type":"doc","id":"enumerations/CacheKeyPrefix","label":"CacheKeyPrefix"}]},{"type":"category","label":"Classes","items":[{"type":"doc","id":"classes/MemoryCacheAdapter","label":"MemoryCacheAdapter"},{"type":"doc","id":"classes/FsCacheAdapter","label":"FsCacheAdapter"},{"type":"doc","id":"classes/DbCacheAdapter","label":"DbCacheAdapter"},{"type":"doc","id":"classes/CacheManager","label":"CacheManager"},{"type":"doc","id":"classes/DatabaseAdapter","label":"DatabaseAdapter"},{"type":"doc","id":"classes/MemoryManager","label":"MemoryManager"},{"type":"doc","id":"classes/RAGKnowledgeManager","label":"RAGKnowledgeManager"},{"type":"doc","id":"classes/AgentRuntime","label":"AgentRuntime"},{"type":"doc","id":"classes/Service","label":"Service"}]},{"type":"category","label":"Interfaces","items":[{"type":"doc","id":"interfaces/ICacheAdapter","label":"ICacheAdapter"},{"type":"doc","id":"interfaces/GenerationOptions","label":"GenerationOptions"},{"type":"doc","id":"interfaces/Content","label":"Content"},{"type":"doc","id":"interfaces/ActionExample","label":"ActionExample"},{"type":"doc","id":"interfaces/ConversationExample","label":"ConversationExample"},{"type":"doc","id":"interfaces/Actor","label":"Actor"},{"type":"doc","id":"interfaces/Objective","label":"Objective"},{"type":"doc","id":"interfaces/Goal","label":"Goal"},{"type":"doc","id":"interfaces/State","label":"State"},{"type":"doc","id":"interfaces/Memory","label":"Memory"},{"type":"doc","id":"interfaces/MessageExample","label":"MessageExample"},{"type":"doc","id":"interfaces/Action","label":"Action"},{"type":"doc","id":"interfaces/EvaluationExample","label":"EvaluationExample"},{"type":"doc","id":"interfaces/Evaluator","label":"Evaluator"},{"type":"doc","id":"interfaces/Provider","label":"Provider"},{"type":"doc","id":"interfaces/Relationship","label":"Relationship"},{"type":"doc","id":"interfaces/Account","label":"Account"},{"type":"doc","id":"interfaces/Participant","label":"Participant"},{"type":"doc","id":"interfaces/Room","label":"Room"},{"type":"doc","id":"interfaces/IAgentConfig","label":"IAgentConfig"},{"type":"doc","id":"interfaces/ModelConfiguration","label":"ModelConfiguration"},{"type":"doc","id":"interfaces/TwitterSpaceDecisionOptions","label":"TwitterSpaceDecisionOptions"},{"type":"doc","id":"interfaces/IDatabaseAdapter","label":"IDatabaseAdapter"},{"type":"doc","id":"interfaces/IDatabaseCacheAdapter","label":"IDatabaseCacheAdapter"},{"type":"doc","id":"interfaces/IMemoryManager","label":"IMemoryManager"},{"type":"doc","id":"interfaces/IRAGKnowledgeManager","label":"IRAGKnowledgeManager"},{"type":"doc","id":"interfaces/ICacheManager","label":"ICacheManager"},{"type":"doc","id":"interfaces/IAgentRuntime","label":"IAgentRuntime"},{"type":"doc","id":"interfaces/IImageDescriptionService","label":"IImageDescriptionService"},{"type":"doc","id":"interfaces/ITranscriptionService","label":"ITranscriptionService"},{"type":"doc","id":"interfaces/IVideoService","label":"IVideoService"},{"type":"doc","id":"interfaces/ITextGenerationService","label":"ITextGenerationService"},{"type":"doc","id":"interfaces/IBrowserService","label":"IBrowserService"},{"type":"doc","id":"interfaces/ISpeechService","label":"ISpeechService"},{"type":"doc","id":"interfaces/IPdfService","label":"IPdfService"},{"type":"doc","id":"interfaces/IAwsS3Service","label":"IAwsS3Service"},{"type":"doc","id":"interfaces/UploadIrysResult","label":"UploadIrysResult"},{"type":"doc","id":"interfaces/DataIrysFetchedFromGQL","label":"DataIrysFetchedFromGQL"},{"type":"doc","id":"interfaces/GraphQLTag","label":"GraphQLTag"},{"type":"doc","id":"interfaces/IrysTimestamp","label":"IrysTimestamp"},{"type":"doc","id":"interfaces/IIrysService","label":"IIrysService"},{"type":"doc","id":"interfaces/ITeeLogService","label":"ITeeLogService"},{"type":"doc","id":"interfaces/RAGKnowledgeItem","label":"RAGKnowledgeItem"},{"type":"doc","id":"interfaces/ActionResponse","label":"ActionResponse"},{"type":"doc","id":"interfaces/ISlackService","label":"ISlackService"},{"type":"doc","id":"interfaces/DirectoryItem","label":"DirectoryItem"},{"type":"doc","id":"interfaces/ChunkRow","label":"ChunkRow"}]},{"type":"category","label":"Type Aliases","items":[{"type":"doc","id":"type-aliases/EmbeddingProviderType","label":"EmbeddingProviderType"},{"type":"doc","id":"type-aliases/EmbeddingConfig","label":"EmbeddingConfig"},{"type":"doc","id":"type-aliases/EnvConfig","label":"EnvConfig"},{"type":"doc","id":"type-aliases/CharacterConfig","label":"CharacterConfig"},{"type":"doc","id":"type-aliases/UUID","label":"UUID"},{"type":"doc","id":"type-aliases/ModelSettings","label":"ModelSettings"},{"type":"doc","id":"type-aliases/ImageModelSettings","label":"ImageModelSettings"},{"type":"doc","id":"type-aliases/EmbeddingModelSettings","label":"EmbeddingModelSettings"},{"type":"doc","id":"type-aliases/Model","label":"Model"},{"type":"doc","id":"type-aliases/Models","label":"Models"},{"type":"doc","id":"type-aliases/Handler","label":"Handler"},{"type":"doc","id":"type-aliases/HandlerCallback","label":"HandlerCallback"},{"type":"doc","id":"type-aliases/Validator","label":"Validator"},{"type":"doc","id":"type-aliases/Media","label":"Media"},{"type":"doc","id":"type-aliases/ClientInstance","label":"ClientInstance"},{"type":"doc","id":"type-aliases/Client","label":"Client"},{"type":"doc","id":"type-aliases/Adapter","label":"Adapter"},{"type":"doc","id":"type-aliases/Plugin","label":"Plugin"},{"type":"doc","id":"type-aliases/TelemetrySettings","label":"TelemetrySettings"},{"type":"doc","id":"type-aliases/TemplateType","label":"TemplateType"},{"type":"doc","id":"type-aliases/Character","label":"Character"},{"type":"doc","id":"type-aliases/CacheOptions","label":"CacheOptions"},{"type":"doc","id":"type-aliases/KnowledgeItem","label":"KnowledgeItem"}]},{"type":"category","label":"Variables","items":[{"type":"doc","id":"variables/EmbeddingProvider","label":"EmbeddingProvider"},{"type":"doc","id":"variables/envSchema","label":"envSchema"},{"type":"doc","id":"variables/CharacterSchema","label":"CharacterSchema"},{"type":"doc","id":"variables/evaluationTemplate","label":"evaluationTemplate"},{"type":"doc","id":"variables/knowledge","label":"knowledge"},{"type":"doc","id":"variables/elizaLogger","label":"elizaLogger"},{"type":"doc","id":"variables/models","label":"models"},{"type":"doc","id":"variables/messageCompletionFooter","label":"messageCompletionFooter"},{"type":"doc","id":"variables/shouldRespondFooter","label":"shouldRespondFooter"},{"type":"doc","id":"variables/booleanFooter","label":"booleanFooter"},{"type":"doc","id":"variables/stringArrayFooter","label":"stringArrayFooter"},{"type":"doc","id":"variables/postActionResponseFooter","label":"postActionResponseFooter"},{"type":"doc","id":"variables/settings","label":"settings"},{"type":"doc","id":"variables/uuidSchema","label":"uuidSchema"}]},{"type":"category","label":"Functions","items":[{"type":"doc","id":"functions/composeActionExamples","label":"composeActionExamples"},{"type":"doc","id":"functions/formatActionNames","label":"formatActionNames"},{"type":"doc","id":"functions/formatActions","label":"formatActions"},{"type":"doc","id":"functions/composeContext","label":"composeContext"},{"type":"doc","id":"functions/addHeader","label":"addHeader"},{"type":"doc","id":"functions/composeRandomUser","label":"composeRandomUser"},{"type":"doc","id":"functions/getEmbeddingConfig","label":"getEmbeddingConfig"},{"type":"doc","id":"functions/getEmbeddingType","label":"getEmbeddingType"},{"type":"doc","id":"functions/getEmbeddingZeroVector","label":"getEmbeddingZeroVector"},{"type":"doc","id":"functions/embed","label":"embed"},{"type":"doc","id":"functions/validateEnv","label":"validateEnv"},{"type":"doc","id":"functions/validateCharacterConfig","label":"validateCharacterConfig"},{"type":"doc","id":"functions/formatEvaluatorNames","label":"formatEvaluatorNames"},{"type":"doc","id":"functions/formatEvaluators","label":"formatEvaluators"},{"type":"doc","id":"functions/formatEvaluatorExamples","label":"formatEvaluatorExamples"},{"type":"doc","id":"functions/formatEvaluatorExampleDescriptions","label":"formatEvaluatorExampleDescriptions"},{"type":"doc","id":"functions/trimTokens","label":"trimTokens"},{"type":"doc","id":"functions/generateText","label":"generateText"},{"type":"doc","id":"functions/generateShouldRespond","label":"generateShouldRespond"},{"type":"doc","id":"functions/splitChunks","label":"splitChunks"},{"type":"doc","id":"functions/generateTrueOrFalse","label":"generateTrueOrFalse"},{"type":"doc","id":"functions/generateTextArray","label":"generateTextArray"},{"type":"doc","id":"functions/generateObjectDeprecated","label":"generateObjectDeprecated"},{"type":"doc","id":"functions/generateObjectArray","label":"generateObjectArray"},{"type":"doc","id":"functions/generateMessageResponse","label":"generateMessageResponse"},{"type":"doc","id":"functions/generateImage","label":"generateImage"},{"type":"doc","id":"functions/generateCaption","label":"generateCaption"},{"type":"doc","id":"functions/generateObject","label":"generateObject"},{"type":"doc","id":"functions/handleProvider","label":"handleProvider"},{"type":"doc","id":"functions/generateTweetActions","label":"generateTweetActions"},{"type":"doc","id":"functions/getGoals","label":"getGoals"},{"type":"doc","id":"functions/formatGoalsAsString","label":"formatGoalsAsString"},{"type":"doc","id":"functions/updateGoal","label":"updateGoal"},{"type":"doc","id":"functions/createGoal","label":"createGoal"},{"type":"doc","id":"functions/getActorDetails","label":"getActorDetails"},{"type":"doc","id":"functions/formatActors","label":"formatActors"},{"type":"doc","id":"functions/formatMessages","label":"formatMessages"},{"type":"doc","id":"functions/formatTimestamp","label":"formatTimestamp"},{"type":"doc","id":"functions/getModelSettings","label":"getModelSettings"},{"type":"doc","id":"functions/getImageModelSettings","label":"getImageModelSettings"},{"type":"doc","id":"functions/getEmbeddingModelSettings","label":"getEmbeddingModelSettings"},{"type":"doc","id":"functions/getEndpoint","label":"getEndpoint"},{"type":"doc","id":"functions/parseShouldRespondFromText","label":"parseShouldRespondFromText"},{"type":"doc","id":"functions/parseBooleanFromText","label":"parseBooleanFromText"},{"type":"doc","id":"functions/parseJsonArrayFromText","label":"parseJsonArrayFromText"},{"type":"doc","id":"functions/parseJSONObjectFromText","label":"parseJSONObjectFromText"},{"type":"doc","id":"functions/extractAttributes","label":"extractAttributes"},{"type":"doc","id":"functions/normalizeJsonString","label":"normalizeJsonString"},{"type":"doc","id":"functions/cleanJsonResponse","label":"cleanJsonResponse"},{"type":"doc","id":"functions/parseActionResponseFromText","label":"parseActionResponseFromText"},{"type":"doc","id":"functions/truncateToCompleteSentence","label":"truncateToCompleteSentence"},{"type":"doc","id":"functions/formatPosts","label":"formatPosts"},{"type":"doc","id":"functions/getProviders","label":"getProviders"},{"type":"doc","id":"functions/createRelationship","label":"createRelationship"},{"type":"doc","id":"functions/getRelationship","label":"getRelationship"},{"type":"doc","id":"functions/getRelationships","label":"getRelationships"},{"type":"doc","id":"functions/formatRelationships","label":"formatRelationships"},{"type":"doc","id":"functions/findNearestEnvFile","label":"findNearestEnvFile"},{"type":"doc","id":"functions/configureSettings","label":"configureSettings"},{"type":"doc","id":"functions/loadEnvConfig","label":"loadEnvConfig"},{"type":"doc","id":"functions/getEnvVariable","label":"getEnvVariable"},{"type":"doc","id":"functions/hasEnvVariable","label":"hasEnvVariable"},{"type":"doc","id":"functions/validateUuid","label":"validateUuid"},{"type":"doc","id":"functions/stringToUuid","label":"stringToUuid"}]}]}; +const typedocSidebar = { items: [{"type":"category","label":"Enumerations","items":[{"type":"doc","id":"enumerations/GoalStatus","label":"GoalStatus"},{"type":"doc","id":"enumerations/ModelClass","label":"ModelClass"},{"type":"doc","id":"enumerations/ModelProviderName","label":"ModelProviderName"},{"type":"doc","id":"enumerations/CacheStore","label":"CacheStore"},{"type":"doc","id":"enumerations/IrysMessageType","label":"IrysMessageType"},{"type":"doc","id":"enumerations/IrysDataType","label":"IrysDataType"},{"type":"doc","id":"enumerations/ServiceType","label":"ServiceType"},{"type":"doc","id":"enumerations/LoggingLevel","label":"LoggingLevel"},{"type":"doc","id":"enumerations/TokenizerType","label":"TokenizerType"},{"type":"doc","id":"enumerations/TranscriptionProvider","label":"TranscriptionProvider"},{"type":"doc","id":"enumerations/ActionTimelineType","label":"ActionTimelineType"},{"type":"doc","id":"enumerations/KnowledgeScope","label":"KnowledgeScope"},{"type":"doc","id":"enumerations/CacheKeyPrefix","label":"CacheKeyPrefix"}]},{"type":"category","label":"Classes","items":[{"type":"doc","id":"classes/MemoryCacheAdapter","label":"MemoryCacheAdapter"},{"type":"doc","id":"classes/FsCacheAdapter","label":"FsCacheAdapter"},{"type":"doc","id":"classes/DbCacheAdapter","label":"DbCacheAdapter"},{"type":"doc","id":"classes/CacheManager","label":"CacheManager"},{"type":"doc","id":"classes/DatabaseAdapter","label":"DatabaseAdapter"},{"type":"doc","id":"classes/MemoryManager","label":"MemoryManager"},{"type":"doc","id":"classes/RAGKnowledgeManager","label":"RAGKnowledgeManager"},{"type":"doc","id":"classes/AgentRuntime","label":"AgentRuntime"},{"type":"doc","id":"classes/Service","label":"Service"}]},{"type":"category","label":"Interfaces","items":[{"type":"doc","id":"interfaces/ICacheAdapter","label":"ICacheAdapter"},{"type":"doc","id":"interfaces/GenerationOptions","label":"GenerationOptions"},{"type":"doc","id":"interfaces/Content","label":"Content"},{"type":"doc","id":"interfaces/ActionExample","label":"ActionExample"},{"type":"doc","id":"interfaces/ConversationExample","label":"ConversationExample"},{"type":"doc","id":"interfaces/Actor","label":"Actor"},{"type":"doc","id":"interfaces/Objective","label":"Objective"},{"type":"doc","id":"interfaces/Goal","label":"Goal"},{"type":"doc","id":"interfaces/State","label":"State"},{"type":"doc","id":"interfaces/Memory","label":"Memory"},{"type":"doc","id":"interfaces/MessageExample","label":"MessageExample"},{"type":"doc","id":"interfaces/Action","label":"Action"},{"type":"doc","id":"interfaces/EvaluationExample","label":"EvaluationExample"},{"type":"doc","id":"interfaces/Evaluator","label":"Evaluator"},{"type":"doc","id":"interfaces/Provider","label":"Provider"},{"type":"doc","id":"interfaces/Relationship","label":"Relationship"},{"type":"doc","id":"interfaces/Account","label":"Account"},{"type":"doc","id":"interfaces/Participant","label":"Participant"},{"type":"doc","id":"interfaces/Room","label":"Room"},{"type":"doc","id":"interfaces/IAgentConfig","label":"IAgentConfig"},{"type":"doc","id":"interfaces/ModelConfiguration","label":"ModelConfiguration"},{"type":"doc","id":"interfaces/TwitterSpaceDecisionOptions","label":"TwitterSpaceDecisionOptions"},{"type":"doc","id":"interfaces/IDatabaseAdapter","label":"IDatabaseAdapter"},{"type":"doc","id":"interfaces/IDatabaseCacheAdapter","label":"IDatabaseCacheAdapter"},{"type":"doc","id":"interfaces/IMemoryManager","label":"IMemoryManager"},{"type":"doc","id":"interfaces/IRAGKnowledgeManager","label":"IRAGKnowledgeManager"},{"type":"doc","id":"interfaces/ICacheManager","label":"ICacheManager"},{"type":"doc","id":"interfaces/IAgentRuntime","label":"IAgentRuntime"},{"type":"doc","id":"interfaces/IImageDescriptionService","label":"IImageDescriptionService"},{"type":"doc","id":"interfaces/ITranscriptionService","label":"ITranscriptionService"},{"type":"doc","id":"interfaces/IVideoService","label":"IVideoService"},{"type":"doc","id":"interfaces/ITextGenerationService","label":"ITextGenerationService"},{"type":"doc","id":"interfaces/IBrowserService","label":"IBrowserService"},{"type":"doc","id":"interfaces/ISpeechService","label":"ISpeechService"},{"type":"doc","id":"interfaces/IPdfService","label":"IPdfService"},{"type":"doc","id":"interfaces/IAwsS3Service","label":"IAwsS3Service"},{"type":"doc","id":"interfaces/UploadIrysResult","label":"UploadIrysResult"},{"type":"doc","id":"interfaces/DataIrysFetchedFromGQL","label":"DataIrysFetchedFromGQL"},{"type":"doc","id":"interfaces/GraphQLTag","label":"GraphQLTag"},{"type":"doc","id":"interfaces/IrysTimestamp","label":"IrysTimestamp"},{"type":"doc","id":"interfaces/IIrysService","label":"IIrysService"},{"type":"doc","id":"interfaces/ITeeLogService","label":"ITeeLogService"},{"type":"doc","id":"interfaces/RAGKnowledgeItem","label":"RAGKnowledgeItem"},{"type":"doc","id":"interfaces/ActionResponse","label":"ActionResponse"},{"type":"doc","id":"interfaces/ISlackService","label":"ISlackService"},{"type":"doc","id":"interfaces/DirectoryItem","label":"DirectoryItem"},{"type":"doc","id":"interfaces/ChunkRow","label":"ChunkRow"}]},{"type":"category","label":"Type Aliases","items":[{"type":"doc","id":"type-aliases/EmbeddingProviderType","label":"EmbeddingProviderType"},{"type":"doc","id":"type-aliases/EmbeddingConfig","label":"EmbeddingConfig"},{"type":"doc","id":"type-aliases/EnvConfig","label":"EnvConfig"},{"type":"doc","id":"type-aliases/CharacterConfig","label":"CharacterConfig"},{"type":"doc","id":"type-aliases/UUID","label":"UUID"},{"type":"doc","id":"type-aliases/ModelSettings","label":"ModelSettings"},{"type":"doc","id":"type-aliases/ImageModelSettings","label":"ImageModelSettings"},{"type":"doc","id":"type-aliases/EmbeddingModelSettings","label":"EmbeddingModelSettings"},{"type":"doc","id":"type-aliases/Model","label":"Model"},{"type":"doc","id":"type-aliases/Models","label":"Models"},{"type":"doc","id":"type-aliases/Handler","label":"Handler"},{"type":"doc","id":"type-aliases/HandlerCallback","label":"HandlerCallback"},{"type":"doc","id":"type-aliases/Validator","label":"Validator"},{"type":"doc","id":"type-aliases/Media","label":"Media"},{"type":"doc","id":"type-aliases/ClientInstance","label":"ClientInstance"},{"type":"doc","id":"type-aliases/Client","label":"Client"},{"type":"doc","id":"type-aliases/Adapter","label":"Adapter"},{"type":"doc","id":"type-aliases/Plugin","label":"Plugin"},{"type":"doc","id":"type-aliases/TelemetrySettings","label":"TelemetrySettings"},{"type":"doc","id":"type-aliases/TemplateType","label":"TemplateType"},{"type":"doc","id":"type-aliases/Character","label":"Character"},{"type":"doc","id":"type-aliases/CacheOptions","label":"CacheOptions"},{"type":"doc","id":"type-aliases/KnowledgeItem","label":"KnowledgeItem"}]},{"type":"category","label":"Variables","items":[{"type":"doc","id":"variables/EmbeddingProvider","label":"EmbeddingProvider"},{"type":"doc","id":"variables/envSchema","label":"envSchema"},{"type":"doc","id":"variables/CharacterSchema","label":"CharacterSchema"},{"type":"doc","id":"variables/evaluationTemplate","label":"evaluationTemplate"},{"type":"doc","id":"variables/knowledge","label":"knowledge"},{"type":"doc","id":"variables/elizaLogger","label":"elizaLogger"},{"type":"doc","id":"variables/models","label":"models"},{"type":"doc","id":"variables/messageCompletionFooter","label":"messageCompletionFooter"},{"type":"doc","id":"variables/shouldRespondFooter","label":"shouldRespondFooter"},{"type":"doc","id":"variables/booleanFooter","label":"booleanFooter"},{"type":"doc","id":"variables/stringArrayFooter","label":"stringArrayFooter"},{"type":"doc","id":"variables/postActionResponseFooter","label":"postActionResponseFooter"},{"type":"doc","id":"variables/settings","label":"settings"},{"type":"doc","id":"variables/uuidSchema","label":"uuidSchema"}]},{"type":"category","label":"Functions","items":[{"type":"doc","id":"functions/composeActionExamples","label":"composeActionExamples"},{"type":"doc","id":"functions/formatActionNames","label":"formatActionNames"},{"type":"doc","id":"functions/formatActions","label":"formatActions"},{"type":"doc","id":"functions/composeContext","label":"composeContext"},{"type":"doc","id":"functions/addHeader","label":"addHeader"},{"type":"doc","id":"functions/composeRandomUser","label":"composeRandomUser"},{"type":"doc","id":"functions/getEmbeddingConfig","label":"getEmbeddingConfig"},{"type":"doc","id":"functions/getEmbeddingType","label":"getEmbeddingType"},{"type":"doc","id":"functions/getEmbeddingZeroVector","label":"getEmbeddingZeroVector"},{"type":"doc","id":"functions/embed","label":"embed"},{"type":"doc","id":"functions/validateEnv","label":"validateEnv"},{"type":"doc","id":"functions/validateCharacterConfig","label":"validateCharacterConfig"},{"type":"doc","id":"functions/formatEvaluatorNames","label":"formatEvaluatorNames"},{"type":"doc","id":"functions/formatEvaluators","label":"formatEvaluators"},{"type":"doc","id":"functions/formatEvaluatorExamples","label":"formatEvaluatorExamples"},{"type":"doc","id":"functions/formatEvaluatorExampleDescriptions","label":"formatEvaluatorExampleDescriptions"},{"type":"doc","id":"functions/trimTokens","label":"trimTokens"},{"type":"doc","id":"functions/generateText","label":"generateText"},{"type":"doc","id":"functions/generateShouldRespond","label":"generateShouldRespond"},{"type":"doc","id":"functions/splitChunks","label":"splitChunks"},{"type":"doc","id":"functions/splitText","label":"splitText"},{"type":"doc","id":"functions/generateTrueOrFalse","label":"generateTrueOrFalse"},{"type":"doc","id":"functions/generateTextArray","label":"generateTextArray"},{"type":"doc","id":"functions/generateObjectDeprecated","label":"generateObjectDeprecated"},{"type":"doc","id":"functions/generateObjectArray","label":"generateObjectArray"},{"type":"doc","id":"functions/generateMessageResponse","label":"generateMessageResponse"},{"type":"doc","id":"functions/generateImage","label":"generateImage"},{"type":"doc","id":"functions/generateCaption","label":"generateCaption"},{"type":"doc","id":"functions/generateObject","label":"generateObject"},{"type":"doc","id":"functions/handleProvider","label":"handleProvider"},{"type":"doc","id":"functions/generateTweetActions","label":"generateTweetActions"},{"type":"doc","id":"functions/getGoals","label":"getGoals"},{"type":"doc","id":"functions/formatGoalsAsString","label":"formatGoalsAsString"},{"type":"doc","id":"functions/updateGoal","label":"updateGoal"},{"type":"doc","id":"functions/createGoal","label":"createGoal"},{"type":"doc","id":"functions/getActorDetails","label":"getActorDetails"},{"type":"doc","id":"functions/formatActors","label":"formatActors"},{"type":"doc","id":"functions/formatMessages","label":"formatMessages"},{"type":"doc","id":"functions/formatTimestamp","label":"formatTimestamp"},{"type":"doc","id":"functions/getModelSettings","label":"getModelSettings"},{"type":"doc","id":"functions/getImageModelSettings","label":"getImageModelSettings"},{"type":"doc","id":"functions/getEmbeddingModelSettings","label":"getEmbeddingModelSettings"},{"type":"doc","id":"functions/getEndpoint","label":"getEndpoint"},{"type":"doc","id":"functions/parseShouldRespondFromText","label":"parseShouldRespondFromText"},{"type":"doc","id":"functions/parseBooleanFromText","label":"parseBooleanFromText"},{"type":"doc","id":"functions/parseJsonArrayFromText","label":"parseJsonArrayFromText"},{"type":"doc","id":"functions/parseJSONObjectFromText","label":"parseJSONObjectFromText"},{"type":"doc","id":"functions/extractAttributes","label":"extractAttributes"},{"type":"doc","id":"functions/normalizeJsonString","label":"normalizeJsonString"},{"type":"doc","id":"functions/cleanJsonResponse","label":"cleanJsonResponse"},{"type":"doc","id":"functions/parseActionResponseFromText","label":"parseActionResponseFromText"},{"type":"doc","id":"functions/truncateToCompleteSentence","label":"truncateToCompleteSentence"},{"type":"doc","id":"functions/formatPosts","label":"formatPosts"},{"type":"doc","id":"functions/getProviders","label":"getProviders"},{"type":"doc","id":"functions/createRelationship","label":"createRelationship"},{"type":"doc","id":"functions/getRelationship","label":"getRelationship"},{"type":"doc","id":"functions/getRelationships","label":"getRelationships"},{"type":"doc","id":"functions/formatRelationships","label":"formatRelationships"},{"type":"doc","id":"functions/findNearestEnvFile","label":"findNearestEnvFile"},{"type":"doc","id":"functions/configureSettings","label":"configureSettings"},{"type":"doc","id":"functions/loadEnvConfig","label":"loadEnvConfig"},{"type":"doc","id":"functions/getEnvVariable","label":"getEnvVariable"},{"type":"doc","id":"functions/hasEnvVariable","label":"hasEnvVariable"},{"type":"doc","id":"functions/validateUuid","label":"validateUuid"},{"type":"doc","id":"functions/stringToUuid","label":"stringToUuid"}]}]}; module.exports = typedocSidebar.items; \ No newline at end of file diff --git a/docs/api/variables/CharacterSchema.md b/docs/api/variables/CharacterSchema.md index 48c039d36c6..55ed168ffa9 100644 --- a/docs/api/variables/CharacterSchema.md +++ b/docs/api/variables/CharacterSchema.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / CharacterSchema +[@elizaos/core v0.25.8](../index.md) / CharacterSchema # Variable: CharacterSchema diff --git a/docs/api/variables/EmbeddingProvider.md b/docs/api/variables/EmbeddingProvider.md index bdd62f6790e..f1cd6450276 100644 --- a/docs/api/variables/EmbeddingProvider.md +++ b/docs/api/variables/EmbeddingProvider.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / EmbeddingProvider +[@elizaos/core v0.25.8](../index.md) / EmbeddingProvider # Variable: EmbeddingProvider diff --git a/docs/api/variables/booleanFooter.md b/docs/api/variables/booleanFooter.md index a911e351f62..39818afa620 100644 --- a/docs/api/variables/booleanFooter.md +++ b/docs/api/variables/booleanFooter.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / booleanFooter +[@elizaos/core v0.25.8](../index.md) / booleanFooter # Variable: booleanFooter diff --git a/docs/api/variables/elizaLogger.md b/docs/api/variables/elizaLogger.md index ba27c37dc68..3dee2decd13 100644 --- a/docs/api/variables/elizaLogger.md +++ b/docs/api/variables/elizaLogger.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / elizaLogger +[@elizaos/core v0.25.8](../index.md) / elizaLogger # Variable: elizaLogger diff --git a/docs/api/variables/envSchema.md b/docs/api/variables/envSchema.md index 2f32e51d761..a7b6a939fb9 100644 --- a/docs/api/variables/envSchema.md +++ b/docs/api/variables/envSchema.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / envSchema +[@elizaos/core v0.25.8](../index.md) / envSchema # Variable: envSchema diff --git a/docs/api/variables/evaluationTemplate.md b/docs/api/variables/evaluationTemplate.md index f8816f00c79..77ac3dcb878 100644 --- a/docs/api/variables/evaluationTemplate.md +++ b/docs/api/variables/evaluationTemplate.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / evaluationTemplate +[@elizaos/core v0.25.8](../index.md) / evaluationTemplate # Variable: evaluationTemplate diff --git a/docs/api/variables/knowledge.md b/docs/api/variables/knowledge.md index f1a3ef14c04..8c34e745a43 100644 --- a/docs/api/variables/knowledge.md +++ b/docs/api/variables/knowledge.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / knowledge +[@elizaos/core v0.25.8](../index.md) / knowledge # Variable: knowledge @@ -52,4 +52,4 @@ ## Defined in -[packages/core/src/knowledge.ts:150](https://github.com/elizaOS/eliza/blob/main/packages/core/src/knowledge.ts#L150) +[packages/core/src/knowledge.ts:169](https://github.com/elizaOS/eliza/blob/main/packages/core/src/knowledge.ts#L169) diff --git a/docs/api/variables/messageCompletionFooter.md b/docs/api/variables/messageCompletionFooter.md index 3d50f6e9c15..928b6feef97 100644 --- a/docs/api/variables/messageCompletionFooter.md +++ b/docs/api/variables/messageCompletionFooter.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / messageCompletionFooter +[@elizaos/core v0.25.8](../index.md) / messageCompletionFooter # Variable: messageCompletionFooter diff --git a/docs/api/variables/models.md b/docs/api/variables/models.md index 81478cc2b52..d920fd8b36c 100644 --- a/docs/api/variables/models.md +++ b/docs/api/variables/models.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / models +[@elizaos/core v0.25.8](../index.md) / models # Variable: models diff --git a/docs/api/variables/postActionResponseFooter.md b/docs/api/variables/postActionResponseFooter.md index d84dd8477a0..4d890857738 100644 --- a/docs/api/variables/postActionResponseFooter.md +++ b/docs/api/variables/postActionResponseFooter.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / postActionResponseFooter +[@elizaos/core v0.25.8](../index.md) / postActionResponseFooter # Variable: postActionResponseFooter diff --git a/docs/api/variables/settings.md b/docs/api/variables/settings.md index 0b26d9e30db..5d4248d8c65 100644 --- a/docs/api/variables/settings.md +++ b/docs/api/variables/settings.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / settings +[@elizaos/core v0.25.8](../index.md) / settings # Variable: settings diff --git a/docs/api/variables/shouldRespondFooter.md b/docs/api/variables/shouldRespondFooter.md index 4aee3887bed..9bb177285f9 100644 --- a/docs/api/variables/shouldRespondFooter.md +++ b/docs/api/variables/shouldRespondFooter.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / shouldRespondFooter +[@elizaos/core v0.25.8](../index.md) / shouldRespondFooter # Variable: shouldRespondFooter diff --git a/docs/api/variables/stringArrayFooter.md b/docs/api/variables/stringArrayFooter.md index b5dc963d996..357e6a3d4b7 100644 --- a/docs/api/variables/stringArrayFooter.md +++ b/docs/api/variables/stringArrayFooter.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / stringArrayFooter +[@elizaos/core v0.25.8](../index.md) / stringArrayFooter # Variable: stringArrayFooter diff --git a/docs/api/variables/uuidSchema.md b/docs/api/variables/uuidSchema.md index 7b775fd721f..d9e51f62e18 100644 --- a/docs/api/variables/uuidSchema.md +++ b/docs/api/variables/uuidSchema.md @@ -1,4 +1,4 @@ -[@elizaos/core v0.25.7](../index.md) / uuidSchema +[@elizaos/core v0.25.8](../index.md) / uuidSchema # Variable: uuidSchema diff --git a/docs/docs/changelog.md b/docs/docs/changelog.md new file mode 100644 index 00000000000..f9d4b4447b9 --- /dev/null +++ b/docs/docs/changelog.md @@ -0,0 +1,3337 @@ +# Changelog +## v0.25.8 (February 24, 2025) + +#### Major changes since [v0.25.6-alpha.1](https://github.com/elizaOS/eliza/releases/tag/v0.25.6-alpha.1) + +#### Features + +- Dynamic plugin loading (move all plugins out) https://github.com/elizaOS/eliza/pull/3339 +- plugin CLI list/installer utility https://github.com/elizaOS/eliza/pull/3429 +- Enable fetching relevant facts in the facts provider https://github.com/elizaOS/eliza/pull/2635 +- Gaianet support set API key https://github.com/elizaOS/eliza/pull/3591 +- Add NEAR AI model provider https://github.com/elizaOS/eliza/pull/3275 +- Support for Secret AI LLM https://github.com/elizaOS/eliza/pull/3615 +- Added cachedir to filesystem cache https://github.com/elizaOS/eliza/pull/3291 +- Configuration: set Lava as the default RPC URL for NEAR and Starknet https://github.com/elizaOS/eliza/pull/3323 +- Modify the configuration for the plugin-nkn https://github.com/elizaOS/eliza/pull/3570 + +#### Fixes + +- https://github.com/advisories/GHSA-584q-6j8j-r5pm https://github.com/elizaOS/eliza/pull/2958 +- Fix default character https://github.com/elizaOS/eliza/pull/3345 +- Fix set agent from API https://github.com/elizaOS/eliza/pull/3618 +- Store stringKnowledge in knowledge when ragKnowledge is enabled (https://github.com/elizaOS/eliza/issues/3434) https://github.com/elizaOS/eliza/pull/3435 +- Update chunk & overlap in rag function https://github.com/elizaOS/eliza/pull/2525 +- Fix bedrock inference https://github.com/elizaOS/eliza/pull/3553 +- Generate structured objects and images with NEAR AI https://github.com/elizaOS/eliza/pull/3644 +- Exporting structured objects and images with NEAR AI https://github.com/elizaOS/eliza/pull/3644 + +#### What's Changed since last release + +* fix: typos in multiple files by @vipocenka in https://github.com/elizaOS/eliza/pull/3111 +* feat: save imageUrls for outbound tweets/messages by @alexpaden in https://github.com/elizaOS/eliza/pull/3122 +* fix: upgrade openai and vercel ai packages to fix o1 errors by @HashWarlock in https://github.com/elizaOS/eliza/pull/3146 +* fix: multi-biome-01 by @AIFlowML in https://github.com/elizaOS/eliza/pull/3180 +* fix: plugin-0g by @AIFlowML in https://github.com/elizaOS/eliza/pull/3179 +* fix: multi-biome-02 by @AIFlowML in https://github.com/elizaOS/eliza/pull/3181 +* fix: plugin-0x by @AIFlowML in https://github.com/elizaOS/eliza/pull/3178 +* fix: plugin-3g-generation by @AIFlowML in https://github.com/elizaOS/eliza/pull/3175 +* fix: plugin-abstract by @AIFlowML in https://github.com/elizaOS/eliza/pull/3174 +* fix: plugin-agentkit by @AIFlowML in https://github.com/elizaOS/eliza/pull/3172 +* fix: plugin-akash by @AIFlowML in https://github.com/elizaOS/eliza/pull/3171 +* fix: plugin-allora by @AIFlowML in https://github.com/elizaOS/eliza/pull/3169 +* docs: fix typos in .md by @comfsrt in https://github.com/elizaOS/eliza/pull/3165 +* feat (chore): plugin-coinmarketcap by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/3134 +* feat (chore): plugin-coingecko test config and coverage by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/3124 +* fix: remove duplicated plugins by @tcm390 in https://github.com/elizaOS/eliza/pull/3126 +* fix: update provider-utils by @tcm390 in https://github.com/elizaOS/eliza/pull/3189 +* fix: extract attribute from raw text instead of normalized json by @tcm390 in https://github.com/elizaOS/eliza/pull/3190 +* feat: coingecko advanced - various pools by network by @0xCardinalError in https://github.com/elizaOS/eliza/pull/3170 +* feat: Add edwin plugin to eliza by @galmw in https://github.com/elizaOS/eliza/pull/3045 +* feat: plugin desk exchange by @john-xina-p88 in https://github.com/elizaOS/eliza/pull/3096 +* docs: Update Twitter to X (Twitter) by @nilaysarma in https://github.com/elizaOS/eliza/pull/3198 +* chore: add Biome configuration to Solana ecosystem plugins 07 by @AIFlowML in https://github.com/elizaOS/eliza/pull/3186 +* fix: plugin-anyone by @AIFlowML in https://github.com/elizaOS/eliza/pull/3107 +* docs: Update faq.md by @Danyylka in https://github.com/elizaOS/eliza/pull/3207 +* chore: Fix Typos and Improve Consistency in Community Chat Logs by @gap-editor in https://github.com/elizaOS/eliza/pull/3206 +* docs: Add weekly contributor meeting notes by @YoungPhlo in https://github.com/elizaOS/eliza/pull/3204 +* fix: think tag from venice by @rferrari in https://github.com/elizaOS/eliza/pull/3203 +* fix: Slack download upload attachments by @maxime in https://github.com/elizaOS/eliza/pull/3194 +* chore: Update GitHub Actions workflows and documentation by @PixelPil0t1 in https://github.com/elizaOS/eliza/pull/3166 +* chore: Standardization of Security Check Identifiers across GoPlus plugin by @Marcofann in https://github.com/elizaOS/eliza/pull/3164 +* fix: Update pnpm version during Docker build by @v1xingyue in https://github.com/elizaOS/eliza/pull/3158 +* Fix README_JA.md (add unwritten text and fix typo) by @You-saku in https://github.com/elizaOS/eliza/pull/3153 +* chore: some fix after v0.1.9 by @v1xingyue in https://github.com/elizaOS/eliza/pull/3141 +* feat: Trump character but tweets in Spanish by default by @silasneo in https://github.com/elizaOS/eliza/pull/3119 +* feat: TON Plugin: NFT collection, item creation, metadata change and transfer actions by @mikirov in https://github.com/elizaOS/eliza/pull/3211 +* docs: rename chat_2024-11-17.md by @Fallengirl in https://github.com/elizaOS/eliza/pull/3210 +* feat: Add CREATE_POOL action in MultiversX plugin by @elpulpo0 in https://github.com/elizaOS/eliza/pull/3209 +* fix: remove duplicated dependencies by @tcm390 in https://github.com/elizaOS/eliza/pull/3215 +* fix: quick-intel plugin optimizations & fixes. by @azep-ninja in https://github.com/elizaOS/eliza/pull/3208 +* feat: Add configuration for enabling/disabling Twitter post generation by @tcm390 in https://github.com/elizaOS/eliza/pull/3219 +* feat (chore): plugin-cronos test setup and coverage by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/3250 +* feat (chore) plugin conflux: test config and coverage by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/3247 +* fix: broken links in documentation by @cypherpepe in https://github.com/elizaOS/eliza/pull/3240 +* chore: remove unnecessary provider and transfer code by @madschristensen99 in https://github.com/elizaOS/eliza/pull/3251 +* fix: client-alexa by @AIFlowML in https://github.com/elizaOS/eliza/pull/3255 +* fix(deps): update dependency vitest [security] by @renovate in https://github.com/elizaOS/eliza/pull/3254 +* fix: pnpm install by @tcm390 in https://github.com/elizaOS/eliza/pull/3261 +* fix: Dynamic require of "http" is not supported error by @tcm390 in https://github.com/elizaOS/eliza/pull/3262 +* chore: develop => main by @odilitime in https://github.com/elizaOS/eliza/pull/3216 +* Fix broken links on contributing.md by @johntad110 in https://github.com/elizaOS/eliza/pull/3269 +* docs: Add GitHub issues link to CONTRIBUTING.md file by @nilaysarma in https://github.com/elizaOS/eliza/pull/3268 +* Fix PG query: Use only 'text' subfield name, field name is not needed here by @esen in https://github.com/elizaOS/eliza/pull/3264 +* fix: handle invalid json by @tcm390 in https://github.com/elizaOS/eliza/pull/3258 +* docs: fix typos and update broken link in docs by @rebustron in https://github.com/elizaOS/eliza/pull/3270 +* chore: fix spelling issues by @XxAlex74xX in https://github.com/elizaOS/eliza/pull/3271 +* fix: DenyLoginSubtask by @tcm390 in https://github.com/elizaOS/eliza/pull/3278 +* fix: twitter - add actions suppress action ability. by @azep-ninja in https://github.com/elizaOS/eliza/pull/3286 +* fix: rag optimizations/fixes for context. by @azep-ninja in https://github.com/elizaOS/eliza/pull/3248 +* fix: quick-intel plugin: optimize template/add suppress init msg by @azep-ninja in https://github.com/elizaOS/eliza/pull/3283 +* fix: discord - add actions suppress action ability. by @azep-ninja in https://github.com/elizaOS/eliza/pull/3284 +* fix: telegram- add actions suppress action ability. by @azep-ninja in https://github.com/elizaOS/eliza/pull/3285 +* feat: (plugin-multiversx) Allow the use of herotag by @elpulpo0 in https://github.com/elizaOS/eliza/pull/3238 +* fix: fix docker & types issue by @odilitime in https://github.com/elizaOS/eliza/pull/3220 +* fix(core): improve OpenAI-like provider endpoint resolution in `generation.ts` by @btspoony in https://github.com/elizaOS/eliza/pull/3281 +* chore: bump version to 0.25.6-alpha.1 by @odilitime in https://github.com/elizaOS/eliza/pull/3306 +* chore: develop => main by @tcm390 in https://github.com/elizaOS/eliza/pull/3307 +* fix: clean json before normalized by @tcm390 in https://github.com/elizaOS/eliza/pull/3301 +* fix: Fix plugin-solana-v2 package.json by @oxy-Op in https://github.com/elizaOS/eliza/pull/3308 +* fix: parsing unit test failure by @tcm390 in https://github.com/elizaOS/eliza/pull/3311 +* fix: models unit test by @tcm390 in https://github.com/elizaOS/eliza/pull/3312 +* fix: read modelConfig from character file by @TbLtzk in https://github.com/elizaOS/eliza/pull/3313 +* docs: fix typos and update functions by @Bilogweb3 in https://github.com/elizaOS/eliza/pull/3317 +* fix: handleGoogle(options) lost apiKey by @abcfy2 in https://github.com/elizaOS/eliza/pull/3274 +* feat: allow plugins to interact w messangerManager to post on telegram by @kesar in https://github.com/elizaOS/eliza/pull/3314 +* chore: add missing version property to package.json by @shakkernerd in https://github.com/elizaOS/eliza/pull/3325 +* chore: remove remnant files/folders by @shakkernerd in https://github.com/elizaOS/eliza/pull/3326 +* docs: fix typos in plugins.md by @aso20455 in https://github.com/elizaOS/eliza/pull/3324 +* feat: set package publish access to public by @shakkernerd in https://github.com/elizaOS/eliza/pull/3330 +* fix: Twitter logging bug by @vidvidvid in https://github.com/elizaOS/eliza/pull/3327 +* chore: develop => main by @shakkernerd in https://github.com/elizaOS/eliza/pull/3332 +* feat: Dynamic Plugin Loading (merged_) by @lalalune in https://github.com/elizaOS/eliza/pull/3339 +* chore: move default character to agent by @lalalune in https://github.com/elizaOS/eliza/pull/3343 +* Delete all plugins by @lalalune in https://github.com/elizaOS/eliza/pull/3342 +* feat: remove verifiable inference concept, will be plugin loaded by @lalalune in https://github.com/elizaOS/eliza/pull/3344 +* fix: fix default character by @lalalune in https://github.com/elizaOS/eliza/pull/3345 +* chore: Remove plugin imports from agent by @avaer in https://github.com/elizaOS/eliza/pull/3346 +* chore: Add adapter-sqlite to deps by @avaer in https://github.com/elizaOS/eliza/pull/3357 +* feat: v1 CLI utility by @odilitime in https://github.com/elizaOS/eliza/pull/3429 +* chore: commit d.a.t.a env configurations by @PisK4 in https://github.com/elizaOS/eliza/pull/3457 +* docs: Update readme to clarify difference between eliza-starter and eliza repos by @altcoinalpinist in https://github.com/elizaOS/eliza/pull/3453 +* docs: add note about 0x prefix needed for evm private key by @Bleyle823 in https://github.com/elizaOS/eliza/pull/3414 +* chore: client/FAQ/Character file Docs update by @madjin in https://github.com/elizaOS/eliza/pull/3410 +* chore: update change log by @threewebcode in https://github.com/elizaOS/eliza/pull/3407 +* fix: Store stringKnowledge in knowledge when ragKnowledge is enabled (#3434) by @lincheoll in https://github.com/elizaOS/eliza/pull/3435 +* docs: fix incorrect image paths in Korean documentation by @gkfyr in https://github.com/elizaOS/eliza/pull/3489 +* docs: New remote deployment guide by @bealers in https://github.com/elizaOS/eliza/pull/3501 +* chore: adding compass plugin env vars by @royalnine in https://github.com/elizaOS/eliza/pull/3494 +* docs: Add weekly contributor meeting notes (2025-02-04 + 2025-02-11) by @YoungPhlo in https://github.com/elizaOS/eliza/pull/3484 +* fix: remove --no-frozen-lockfile from Dockerfile by @kyle-veniceai in https://github.com/elizaOS/eliza/pull/3428 +* chore: move characters out to submodule by @odilitime in https://github.com/elizaOS/eliza/pull/3509 +* fix: refactor string literal `http://localhost` with `SERVER_URL` env var in client by @tenthirtyone in https://github.com/elizaOS/eliza/pull/3511 +* docs: Added a Proper Ukrainian README Translation Create README_UA.md by @mdqst in https://github.com/elizaOS/eliza/pull/3483 +* feat: Added cachedir to filesystem cache by @Swader in https://github.com/elizaOS/eliza/pull/3291 +* fix: CVE-2024-48930 by @anupamme in https://github.com/elizaOS/eliza/pull/2958 +* chore: bump version & lockfile by @odilitime in https://github.com/elizaOS/eliza/pull/3523 +* fix: Fix bedrock inference by @ebaizel in https://github.com/elizaOS/eliza/pull/3553 +* docs: Added sqlite3 errors to Quickstart by @GabrielCartier in https://github.com/elizaOS/eliza/pull/3539 +* docs: fix branch naming example in CONTRIBUTING.md by @mdqst in https://github.com/elizaOS/eliza/pull/3532 +* chore: Trim block from Ollama response by @amirkhonov in https://github.com/elizaOS/eliza/pull/3545 +* chore: Update and cleanup docs by @madjin in https://github.com/elizaOS/eliza/pull/3584 +* feat: Modify the configuration for the plugin-nkn by @iheron in https://github.com/elizaOS/eliza/pull/3570 +* docs: enhance README with detailed requirements and contribution guidelines by @avorylli in https://github.com/elizaOS/eliza/pull/3392 +* docs: Fix broken links by @sukrucildirr in https://github.com/elizaOS/eliza/pull/3599 +* feat: gaianet support set api key by @L-jasmine in https://github.com/elizaOS/eliza/pull/3591 +* feat: allow eliza client to configure eliza server base URL via env var by @bguiz in https://github.com/elizaOS/eliza/pull/3589 +* chore: docs update by @madjin in https://github.com/elizaOS/eliza/pull/3605 +* fix: installing packages from new registry by @daniel-trevino in https://github.com/elizaOS/eliza/pull/3609 +* fix: importing plugins from registry by @royalnine in https://github.com/elizaOS/eliza/pull/3611 +* fix: set agent from api by @daniel-trevino in https://github.com/elizaOS/eliza/pull/3618 +* fix: Fix devcontainer.json Port Mapping Syntax and JSON Structure by @NeoByteXx in https://github.com/elizaOS/eliza/pull/3616 +* fix: update chunk & Overlap in rag function by @adventuresinai in https://github.com/elizaOS/eliza/pull/2525 +* feat: Showcase page in docs for plugins by @madjin in https://github.com/elizaOS/eliza/pull/3620 +* feat: add NEAR AI model provider by @think-in-universe in https://github.com/elizaOS/eliza/pull/3275 +* chore(deps): update dependency vitest [security] by @renovate in https://github.com/elizaOS/eliza/pull/3525 +* feat: configuration: Set Lava as the default RPC URL for NEAR and Starknet by @nimrod-teich in https://github.com/elizaOS/eliza/pull/3323 +* feat: Add support for Secret AI LLM by @iKapitonau in https://github.com/elizaOS/eliza/pull/3615 +* chore: Bump version to 0.25.8 by @odilitime in https://github.com/elizaOS/eliza/pull/3632 +* chore: fix lockfile by @odilitime in https://github.com/elizaOS/eliza/pull/3633 +* update discord link by @odilitime in https://github.com/elizaOS/eliza/pull/3643 +* feat: Enable fetching relevant facts in the facts provider. by @LinuxIsCool in https://github.com/elizaOS/eliza/pull/2635 +* chore: turbo optimizations by @ryptotalent in https://github.com/elizaOS/eliza/pull/2503 +* feat: replace AgentRuntime to his interface to extend client by @kesar in https://github.com/elizaOS/eliza/pull/2388 +* chore: remove langchain dependency for text splitting by @Deeptanshu-sankhwar in https://github.com/elizaOS/eliza/pull/3642 +* fix: generate structured objects and images with NEAR AI by @think-in-universe in https://github.com/elizaOS/eliza/pull/3644 +* chore: stablize develop by @odilitime in https://github.com/elizaOS/eliza/pull/3645 +* chore: develop => main (0.25.8 release) by @odilitime in https://github.com/elizaOS/eliza/pull/3522 + +#### New Contributors + +
+View New Contributors +* @vipocenka made their first contribution in https://github.com/elizaOS/eliza/pull/3111 +* @alexpaden made their first contribution in https://github.com/elizaOS/eliza/pull/3122 +* @comfsrt made their first contribution in https://github.com/elizaOS/eliza/pull/3165 +* @galmw made their first contribution in https://github.com/elizaOS/eliza/pull/3045 +* @john-xina-p88 made their first contribution in https://github.com/elizaOS/eliza/pull/3096 +* @nilaysarma made their first contribution in https://github.com/elizaOS/eliza/pull/3198 +* @Danyylka made their first contribution in https://github.com/elizaOS/eliza/pull/3207 +* @gap-editor made their first contribution in https://github.com/elizaOS/eliza/pull/3206 +* @PixelPil0t1 made their first contribution in https://github.com/elizaOS/eliza/pull/3166 +* @Marcofann made their first contribution in https://github.com/elizaOS/eliza/pull/3164 +* @You-saku made their first contribution in https://github.com/elizaOS/eliza/pull/3153 +* @silasneo made their first contribution in https://github.com/elizaOS/eliza/pull/3119 +* @mikirov made their first contribution in https://github.com/elizaOS/eliza/pull/3211 +* @Fallengirl made their first contribution in https://github.com/elizaOS/eliza/pull/3210 +* @cypherpepe made their first contribution in https://github.com/elizaOS/eliza/pull/3240 +* @johntad110 made their first contribution in https://github.com/elizaOS/eliza/pull/3269 +* @esen made their first contribution in https://github.com/elizaOS/eliza/pull/3264 +* @rebustron made their first contribution in https://github.com/elizaOS/eliza/pull/3270 +* @XxAlex74xX made their first contribution in https://github.com/elizaOS/eliza/pull/3271 +* @oxy-Op made their first contribution in https://github.com/elizaOS/eliza/pull/3308 +* @TbLtzk made their first contribution in https://github.com/elizaOS/eliza/pull/3313 +* @Bilogweb3 made their first contribution in https://github.com/elizaOS/eliza/pull/3317 +* @abcfy2 made their first contribution in https://github.com/elizaOS/eliza/pull/3274 +* @aso20455 made their first contribution in https://github.com/elizaOS/eliza/pull/3324 +* @vidvidvid made their first contribution in https://github.com/elizaOS/eliza/pull/3327 +* @PisK4 made their first contribution in https://github.com/elizaOS/eliza/pull/3457 +* @altcoinalpinist made their first contribution in https://github.com/elizaOS/eliza/pull/3453 +* @Bleyle823 made their first contribution in https://github.com/elizaOS/eliza/pull/3414 +* @gkfyr made their first contribution in https://github.com/elizaOS/eliza/pull/3489 +* @royalnine made their first contribution in https://github.com/elizaOS/eliza/pull/3494 +* @kyle-veniceai made their first contribution in https://github.com/elizaOS/eliza/pull/3428 +* @tenthirtyone made their first contribution in https://github.com/elizaOS/eliza/pull/3511 +* @Swader made their first contribution in https://github.com/elizaOS/eliza/pull/3291 +* @anupamme made their first contribution in https://github.com/elizaOS/eliza/pull/2958 +* @GabrielCartier made their first contribution in https://github.com/elizaOS/eliza/pull/3539 +* @iheron made their first contribution in https://github.com/elizaOS/eliza/pull/3570 +* @avorylli made their first contribution in https://github.com/elizaOS/eliza/pull/3392 +* @bguiz made their first contribution in https://github.com/elizaOS/eliza/pull/3589 +* @daniel-trevino made their first contribution in https://github.com/elizaOS/eliza/pull/3609 +* @NeoByteXx made their first contribution in https://github.com/elizaOS/eliza/pull/3616 +* @adventuresinai made their first contribution in https://github.com/elizaOS/eliza/pull/2525 +* @think-in-universe made their first contribution in https://github.com/elizaOS/eliza/pull/3275 +* @nimrod-teich made their first contribution in https://github.com/elizaOS/eliza/pull/3323 +* @iKapitonau made their first contribution in https://github.com/elizaOS/eliza/pull/3615 +* @ryptotalent made their first contribution in https://github.com/elizaOS/eliza/pull/2503 +* @Deeptanshu-sankhwar made their first contribution in https://github.com/elizaOS/eliza/pull/3642 +
+ +#### Full Changelog: https://github.com/elizaOS/eliza/compare/v0.1.9...v0.25.8 + +--- + +## v0.25.6-alpha.1 (February 06, 2025) + +Please note the versioning change, 25 representing the year and 6 being week 6 of that year. + +#### New Features + +- Save imageUrls for outbound tweets/messages #3122 +- Coingecko advanced - various pools by network #3170 +- Add Edwin plugin to Eliza #3045 +- Plugin desk exchange #3096 +- new Spanish speaking Trump sample character file #3119 +- TON Plugin: NFT collection, item creation, metadata change and transfer actions #3211 +- Add CREATE_POOL action in MultiversX plugin #3209 + +#### New Fixes + +- Upgrade OpenAI and Vercel AI packages to fix O1 errors #3146 +- Remove duplicated plugins #3126 +- Update provider-utils #3189 +- Extract attribute from raw text instead of normalized JSON #3190 +- Think tag from Venice #3203 +- Slack download upload attachments #3194 +- Update pnpm version during Docker build #3158 +- Remove duplicated dependencies #3215 +- Quick-intel plugin optimizations & fixes #3208 + +#### What's Changed + +* fix: typos in multiple files by @vipocenka in https://github.com/elizaOS/eliza/pull/3111 +* feat: save imageUrls for outbound tweets/messages by @alexpaden in https://github.com/elizaOS/eliza/pull/3122 +* fix: upgrade openai and vercel ai packages to fix o1 errors by @HashWarlock in https://github.com/elizaOS/eliza/pull/3146 +* fix: multi-biome-01 by @AIFlowML in https://github.com/elizaOS/eliza/pull/3180 +* fix: plugin-0g by @AIFlowML in https://github.com/elizaOS/eliza/pull/3179 +* fix: multi-biome-02 by @AIFlowML in https://github.com/elizaOS/eliza/pull/3181 +* fix: plugin-0x by @AIFlowML in https://github.com/elizaOS/eliza/pull/3178 +* fix: plugin-3g-generation by @AIFlowML in https://github.com/elizaOS/eliza/pull/3175 +* fix: plugin-abstract by @AIFlowML in https://github.com/elizaOS/eliza/pull/3174 +* fix: plugin-agentkit by @AIFlowML in https://github.com/elizaOS/eliza/pull/3172 +* fix: plugin-akash by @AIFlowML in https://github.com/elizaOS/eliza/pull/3171 +* fix: plugin-allora by @AIFlowML in https://github.com/elizaOS/eliza/pull/3169 +* docs: fix typos in .md by @comfsrt in https://github.com/elizaOS/eliza/pull/3165 +* feat (chore): plugin-coinmarketcap by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/3134 +* feat (chore): plugin-coingecko test config and coverage by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/3124 +* fix: remove duplicated plugins by @tcm390 in https://github.com/elizaOS/eliza/pull/3126 +* fix: update provider-utils by @tcm390 in https://github.com/elizaOS/eliza/pull/3189 +* fix: extract attribute from raw text instead of normalized json by @tcm390 in https://github.com/elizaOS/eliza/pull/3190 +* feat: coingecko advanced - various pools by network by @0xCardinalError in https://github.com/elizaOS/eliza/pull/3170 +* feat: Add edwin plugin to eliza by @galmw in https://github.com/elizaOS/eliza/pull/3045 +* feat: plugin desk exchange by @john-xina-p88 in https://github.com/elizaOS/eliza/pull/3096 +* docs: Update Twitter to X (Twitter) by @nilaysarma in https://github.com/elizaOS/eliza/pull/3198 +* chore: add Biome configuration to Solana ecosystem plugins 07 by @AIFlowML in https://github.com/elizaOS/eliza/pull/3186 +* fix: plugin-anyone by @AIFlowML in https://github.com/elizaOS/eliza/pull/3107 +* docs: Update faq.md by @Danyylka in https://github.com/elizaOS/eliza/pull/3207 +* chore: Fix Typos and Improve Consistency in Community Chat Logs by @gap-editor in https://github.com/elizaOS/eliza/pull/3206 +* docs: Add weekly contributor meeting notes by @YoungPhlo in https://github.com/elizaOS/eliza/pull/3204 +* fix: think tag from venice by @rferrari in https://github.com/elizaOS/eliza/pull/3203 +* fix: Slack download upload attachments by @maxime in https://github.com/elizaOS/eliza/pull/3194 +* chore: Update GitHub Actions workflows and documentation by @PixelPil0t1 in https://github.com/elizaOS/eliza/pull/3166 +* chore: Standardization of Security Check Identifiers across GoPlus plugin by @Marcofann in https://github.com/elizaOS/eliza/pull/3164 +* fix: Update pnpm version during Docker build by @v1xingyue in https://github.com/elizaOS/eliza/pull/3158 +* Fix README_JA.md (add unwritten text and fix typo) by @You-saku in https://github.com/elizaOS/eliza/pull/3153 +* chore: some fix after v0.1.9 by @v1xingyue in https://github.com/elizaOS/eliza/pull/3141 +* feat: Trump character but tweets in Spanish by default by @silasneo in https://github.com/elizaOS/eliza/pull/3119 +* feat: TON Plugin: NFT collection, item creation, metadata change and transfer actions by @mikirov in https://github.com/elizaOS/eliza/pull/3211 +* docs: rename chat_2024-11-17.md by @Fallengirl in https://github.com/elizaOS/eliza/pull/3210 +* feat: Add CREATE_POOL action in MultiversX plugin by @elpulpo0 in https://github.com/elizaOS/eliza/pull/3209 +* fix: remove duplicated dependencies by @tcm390 in https://github.com/elizaOS/eliza/pull/3215 +* fix: quick-intel plugin optimizations & fixes. by @azep-ninja in https://github.com/elizaOS/eliza/pull/3208 +* feat: Add configuration for enabling/disabling Twitter post generation by @tcm390 in https://github.com/elizaOS/eliza/pull/3219 +* feat (chore): plugin-cronos test setup and coverage by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/3250 +* feat (chore) plugin conflux: test config and coverage by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/3247 +* fix: broken links in documentation by @cypherpepe in https://github.com/elizaOS/eliza/pull/3240 +* chore: remove unnecessary provider and transfer code by @madschristensen99 in https://github.com/elizaOS/eliza/pull/3251 +* fix: client-alexa by @AIFlowML in https://github.com/elizaOS/eliza/pull/3255 +* fix(deps): update dependency vitest [security] by @renovate in https://github.com/elizaOS/eliza/pull/3254 +* fix: pnpm install by @tcm390 in https://github.com/elizaOS/eliza/pull/3261 +* fix: Dynamic require of "http" is not supported error by @tcm390 in https://github.com/elizaOS/eliza/pull/3262 +* chore: develop => main by @odilitime in https://github.com/elizaOS/eliza/pull/3216 +* Fix broken links on contributing.md by @johntad110 in https://github.com/elizaOS/eliza/pull/3269 +* docs: Add GitHub issues link to CONTRIBUTING.md file by @nilaysarma in https://github.com/elizaOS/eliza/pull/3268 +* Fix PG query: Use only 'text' subfield name, field name is not needed here by @esen in https://github.com/elizaOS/eliza/pull/3264 +* fix: handle invalid json by @tcm390 in https://github.com/elizaOS/eliza/pull/3258 +* docs: fix typos and update broken link in docs by @rebustron in https://github.com/elizaOS/eliza/pull/3270 +* chore: fix spelling issues by @XxAlex74xX in https://github.com/elizaOS/eliza/pull/3271 +* fix: DenyLoginSubtask by @tcm390 in https://github.com/elizaOS/eliza/pull/3278 +* fix: twitter - add actions suppress action ability. by @azep-ninja in https://github.com/elizaOS/eliza/pull/3286 +* fix: rag optimizations/fixes for context. by @azep-ninja in https://github.com/elizaOS/eliza/pull/3248 +* fix: quick-intel plugin: optimize template/add suppress init msg by @azep-ninja in https://github.com/elizaOS/eliza/pull/3283 +* fix: discord - add actions suppress action ability. by @azep-ninja in https://github.com/elizaOS/eliza/pull/3284 +* fix: telegram- add actions suppress action ability. by @azep-ninja in https://github.com/elizaOS/eliza/pull/3285 +* feat: (plugin-multiversx) Allow the use of herotag by @elpulpo0 in https://github.com/elizaOS/eliza/pull/3238 +* fix: fix docker & types issue by @odilitime in https://github.com/elizaOS/eliza/pull/3220 +* fix(core): improve OpenAI-like provider endpoint resolution in `generation.ts` by @btspoony in https://github.com/elizaOS/eliza/pull/3281 +* chore: bump version to 0.25.6-alpha.1 by @odilitime in https://github.com/elizaOS/eliza/pull/3306 +* chore: develop => main by @tcm390 in https://github.com/elizaOS/eliza/pull/3307 +* fix: clean json before normalized by @tcm390 in https://github.com/elizaOS/eliza/pull/3301 +* fix: Fix plugin-solana-v2 package.json by @oxy-Op in https://github.com/elizaOS/eliza/pull/3308 +* fix: parsing unit test failure by @tcm390 in https://github.com/elizaOS/eliza/pull/3311 +* fix: models unit test by @tcm390 in https://github.com/elizaOS/eliza/pull/3312 +* fix: read modelConfig from character file by @TbLtzk in https://github.com/elizaOS/eliza/pull/3313 +* docs: fix typos and update functions by @Bilogweb3 in https://github.com/elizaOS/eliza/pull/3317 +* fix: handleGoogle(options) lost apiKey by @abcfy2 in https://github.com/elizaOS/eliza/pull/3274 +* feat: allow plugins to interact w messangerManager to post on telegram by @kesar in https://github.com/elizaOS/eliza/pull/3314 +* chore: add missing version property to package.json by @shakkernerd in https://github.com/elizaOS/eliza/pull/3325 +* chore: remove remnant files/folders by @shakkernerd in https://github.com/elizaOS/eliza/pull/3326 +* docs: fix typos in plugins.md by @aso20455 in https://github.com/elizaOS/eliza/pull/3324 +* feat: set package publish access to public by @shakkernerd in https://github.com/elizaOS/eliza/pull/3330 +* fix: Twitter logging bug by @vidvidvid in https://github.com/elizaOS/eliza/pull/3327 +* chore: develop => main by @shakkernerd in https://github.com/elizaOS/eliza/pull/3332 + +#### New Contributors + +
+View New Contributors +* @vipocenka made their first contribution in https://github.com/elizaOS/eliza/pull/3111 +* @alexpaden made their first contribution in https://github.com/elizaOS/eliza/pull/3122 +* @comfsrt made their first contribution in https://github.com/elizaOS/eliza/pull/3165 +* @galmw made their first contribution in https://github.com/elizaOS/eliza/pull/3045 +* @john-xina-p88 made their first contribution in https://github.com/elizaOS/eliza/pull/3096 +* @nilaysarma made their first contribution in https://github.com/elizaOS/eliza/pull/3198 +* @Danyylka made their first contribution in https://github.com/elizaOS/eliza/pull/3207 +* @gap-editor made their first contribution in https://github.com/elizaOS/eliza/pull/3206 +* @PixelPil0t1 made their first contribution in https://github.com/elizaOS/eliza/pull/3166 +* @Marcofann made their first contribution in https://github.com/elizaOS/eliza/pull/3164 +* @You-saku made their first contribution in https://github.com/elizaOS/eliza/pull/3153 +* @silasneo made their first contribution in https://github.com/elizaOS/eliza/pull/3119 +* @mikirov made their first contribution in https://github.com/elizaOS/eliza/pull/3211 +* @Fallengirl made their first contribution in https://github.com/elizaOS/eliza/pull/3210 +* @cypherpepe made their first contribution in https://github.com/elizaOS/eliza/pull/3240 +* @johntad110 made their first contribution in https://github.com/elizaOS/eliza/pull/3269 +* @esen made their first contribution in https://github.com/elizaOS/eliza/pull/3264 +* @rebustron made their first contribution in https://github.com/elizaOS/eliza/pull/3270 +* @XxAlex74xX made their first contribution in https://github.com/elizaOS/eliza/pull/3271 +* @oxy-Op made their first contribution in https://github.com/elizaOS/eliza/pull/3308 +* @TbLtzk made their first contribution in https://github.com/elizaOS/eliza/pull/3313 +* @Bilogweb3 made their first contribution in https://github.com/elizaOS/eliza/pull/3317 +* @abcfy2 made their first contribution in https://github.com/elizaOS/eliza/pull/3274 +* @aso20455 made their first contribution in https://github.com/elizaOS/eliza/pull/3324 +* @vidvidvid made their first contribution in https://github.com/elizaOS/eliza/pull/3327 +
+ +#### Full Changelog: https://github.com/elizaOS/eliza/compare/v0.1.9...v0.25.6-alpha.1 + +--- + +## v0.1.9 (February 01, 2025) + +#### ๐Ÿš€ Features + +- Instagram client #1964 +- Client for Telegram account #2839 +- XMTP Client #2786 +- Twitter post media #2818 +- Discord autonomous agent enhancement #2335 +- Telegram autonomous agent enhancement #2338 +- Direct Client API - Add Delete Agent functionality #2267 +- Add an example service #2249 + +AI & LLM Integrations +- Add support for NVIDIA inference for ElizaOS #2512 +- Integrate Livepeer LLM provider #2154 +- Add Amazon Bedrock as LLM provider #2769 +- Add birdeye plugin #1417 + +Solana-Related Updates +- Solana plugin improvement for flawless transfers #2340 +- Add features to the Solana Agent Kit #2458 +- Adding tests for plugin-solana #2345 + +Ethereum & EVM-Based Plugin Updates +- Plugin evm oz governance #1710 +- Add plugin-ethstorage #2737 +- Add cross chain swaps through Squid Router #1482 +- Add support for gravity chain in EVM plugin #2228 +- Add Cronos Evm #2585 +- Add plugin-bnb to support BNB chain #2278 +- Plugin for OriginTrail Decentralized Knowledge Graph #2380 +- Add moralis plugin #2764 + +Sui-Related Updates +- Use Aggregator swap sui tokens #3012 +- Sui supports the secp256k1/secp256r1 algorithms #2476 + +Cosmos-Related Updates +- IBC transfer on cosmos blockchains #2358 +- Cosmos Plugin - IBC swap action #2554 + +Injective & Other Blockchain Plugins +- injective plugin #1764 +- Support mina blockchain #2702 +- Add AGW support to the Abstract plugin #2207 +- CoinGecko - add price per address functionality #2262 +- Add Dex Screener plugin with token price action, evaluators #1865 +- Dexscreener trending #2325 + +#### Bug Fixes + +High Priority (Critical Bugs & API Issues) +- DeepSeek API bug: missing API key setting #2186 +- Resolve Windows path issue in pnpm build client #2240 +- IME causes multiple messages on Enter #2274 +- Fix derive key and update remote attestation #2303 +- Ensure RA Action reply does not hallucinate #2355 +- Prevent app crash when REMOTE_CHARACTER_URLS is undefined #2384 +- Check whether REMOTE_CHARACTER_URLS env is defined in starting agent #2382 +- Resolve @ai-sdk/provider version conflicts #2714 +- Ethers/viem issue in mind network plugin #2783 +- Message ID collision in Telegram Client #3053 +- ImageVisionModelProvider Not Applied in Runtime #3056 +- Handle unsupported image provider #3057 +- Fixing the error parsing JSON when an array is a value #3113 + +Client-Specific Issues & Enhancements +- Don't force root for install #2221 +- Align base URL in client if API runs on a different port #2353 +- Fix Incorrect Tweet ID Parameter Passed to sendTweet Function #2430 +- Unexpected JSON Metadata in Twitter Bot Replies #2712 +- Client-twitter homeTimeline name parse bug #2789 +- Topics formatting bug at composeState #2788 +- Bug in goal objectives update lookup logic #2791 +- doesn't work in tweet post template #2951 +- Ensure action tweet replies to agent's initial tweet #2966 +- Auto-scrolling issue in client #3115 + +Plugin Issues & Enhancements +- Missing @elizaos/plugin-b2 #2268 +- Export b2Plugin #2291 +- Set default Squid Router plugin throttle to 1000 #2386 +- Export dexScreenerPlugin #3120 +- Remove duplicate litPlugin import #3121 + +Infrastructure & Build Issues +- Docker images+compose and broken documentation #2347 +- Update Zero Gravity (0G) link #2441 +- Don't start services twice, improve logging #3007 +- Docker build command by skipping eslint files #3110 +- Building error #2938 + +General Code Fixes & Minor Enhancements +- Lint errors #2400 +- Fix typo in import statement for Solana AgentKit plugin #2370 +- Quickstart.md conflicts #2437 +- Typos in supabase seed file #2435 +- If VITE_SERVER_PORT is not defined, use default 3000 #2433 +- Missing import #2444 +- Spell/grammar errors in characters #2447 +- Correct STT plugin userId type #2704 +- Remove duplicated handlePendingTweet #2715 +- Delete plugin-bootstrap sex message #2748 +- TON plugin build issue #2757 +- Make template message footer more explicit #2774 +- Akash splash #2816 +- Akash splash bis #2838 +- Nvidia nim environment #2817 +- Null check #2878 +- Default character OpenAI => LlamaLocal #2880 +- LOG_JSON_FORMAT env var setting #2881 +- Fix abstract package.json #2882 +- Client server port #2886 +- Handle whitespace in quote conversion #2961 +- Remove unnecessary @ts-expect-error directive in chat component #2950 +- Correct regex #3054 +- Single quote handle bug at parseJsonArray #2802 +- OpenAI embedding issue #3003 +- Remove dead code #2945 +- Add missing plugins in package.json #2947 + +#### What's Changed (complete) + +* fix(plugin-twitter): change prompt to ensure it returns json by @odilitime in https://github.com/elizaOS/eliza/pull/2196 +* feat: nft plugin by @tcm390 in https://github.com/elizaOS/eliza/pull/2167 +* docs: Add Greek translation for README_GR by @adacapo21 in https://github.com/elizaOS/eliza/pull/2199 +* chore: rename ai16z -> elizaOS by @monilpat in https://github.com/elizaOS/eliza/pull/2211 +* feature: adding tests for whatsapp plugin by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/2213 +* fix: DeepSeek API bug: missing api key setting by @daizhengxue in https://github.com/elizaOS/eliza/pull/2186 +* fix: don't force root for install by @proteanx in https://github.com/elizaOS/eliza/pull/2221 +* feat: RP for plugin-tee-verifiable-log by @gene-zhan in https://github.com/elizaOS/eliza/pull/1369 +* feat: Merge my Eliza Installer with the current start.sh script by @HowieDuhzit in https://github.com/elizaOS/eliza/pull/2229 +* feat: add support for gravity chain in EVM plugin by @Stumble in https://github.com/elizaOS/eliza/pull/2228 +* docs: Add "What Did You Get Done This Week? #9" notes by @YoungPhlo in https://github.com/elizaOS/eliza/pull/2243 +* feat: Add AGW support to the Abstract plugin by @cygaar in https://github.com/elizaOS/eliza/pull/2207 +* docs: Add Farsi (Persian )readme by @oxlupo in https://github.com/elizaOS/eliza/pull/2260 +* feat: CoinGecko - add price per address functionality by @0xCardinalError in https://github.com/elizaOS/eliza/pull/2262 +* fix: test/lint develop by @odilitime in https://github.com/elizaOS/eliza/pull/2266 +* feat: Adding plugin for Bยฒ Network by @threewebcode in https://github.com/elizaOS/eliza/pull/2010 +* fix: (db) add limit param to memory retrieval across adapters by @augchan42 in https://github.com/elizaOS/eliza/pull/2264 +* docs: Typo fix README.md by @VitalikBerashvili in https://github.com/elizaOS/eliza/pull/2256 +* Minor typo in CHANGELOG.md by @Hack666r in https://github.com/elizaOS/eliza/pull/2255 +* fix: missing @elizaos/plugin-b2 by @shakkernerd in https://github.com/elizaOS/eliza/pull/2268 +* feat: Add character creation template function to start.sh by @HowieDuhzit in https://github.com/elizaOS/eliza/pull/2232 +* fix: resolve Windows path issue in pnpm build client by @KacperKoza343 in https://github.com/elizaOS/eliza/pull/2240 +* feat: Add cross chain swaps through Squid Router by @Archethect in https://github.com/elizaOS/eliza/pull/1482 +* feat: Plugin evm oz governance by @thetechnocratic in https://github.com/elizaOS/eliza/pull/1710 +* feat: Add support for VoyageAI embeddings API by @Firbydude in https://github.com/elizaOS/eliza/pull/1442 +* feat: add birdeye plugin by @swizzmagik in https://github.com/elizaOS/eliza/pull/1417 +* Revert "feat: Add support for VoyageAI embeddings API" by @shakkernerd in https://github.com/elizaOS/eliza/pull/2290 +* docs: Add weekly contributor meeting notes by @YoungPhlo in https://github.com/elizaOS/eliza/pull/2285 +* fix: export b2Plugin by @shakkernerd in https://github.com/elizaOS/eliza/pull/2291 +* feat: Add an example service by @MonteCrypto999 in https://github.com/elizaOS/eliza/pull/2249 +* feat: Gitcoin passport by @0xCardinalError in https://github.com/elizaOS/eliza/pull/2296 +* Fix: IME causes multiple messages on Enter (Fixes #2272) by @lincheoll in https://github.com/elizaOS/eliza/pull/2274 +* fix: fix derive key and update remote attestation by @HashWarlock in https://github.com/elizaOS/eliza/pull/2303 +* feat: Direct Client API - Add Delete Agent functionality by @jason51553262 in https://github.com/elizaOS/eliza/pull/2267 +* docs: Update README.md by @lalalune in https://github.com/elizaOS/eliza/pull/2309 +* fix: farcaster memory by @CryptoGraffe in https://github.com/elizaOS/eliza/pull/2307 +* feat: add getMemoryByIds to database adapters by @bbopar in https://github.com/elizaOS/eliza/pull/2293 +* feat: support load character from character_url by @v1xingyue in https://github.com/elizaOS/eliza/pull/2281 +* feat: (echochambers) add dead room detection and conversation starter by @augchan42 in https://github.com/elizaOS/eliza/pull/2248 +* chore: Update README.md by @wtfsayo in https://github.com/elizaOS/eliza/pull/2280 +* refactor: farcaster client env configuration by @sin-bufan in https://github.com/elizaOS/eliza/pull/2087 +* feat: Onchain Agent Transformer - transform any Eliza agents into unstoppable Solidity smart contracts deployed on 10+ blockchains by @eternal-ai-org in https://github.com/elizaOS/eliza/pull/2319 +* feat: add Dex Screener plugin with token price action, evaluators, anโ€ฆ by @hellopleasures in https://github.com/elizaOS/eliza/pull/1865 +* refactor: websearch into a service by @chuasonglin1995 in https://github.com/elizaOS/eliza/pull/2195 +* fix: correct OPENROUTER_API_KEY env in config by @everimbaq in https://github.com/elizaOS/eliza/pull/2324 +* fix: docker images+compose and broken documentation by @JoeyKhd in https://github.com/elizaOS/eliza/pull/2347 +* Fix github client README.md by @thomasWos in https://github.com/elizaOS/eliza/pull/2346 +* feat: groq image vision provider by @rferrari in https://github.com/elizaOS/eliza/pull/2342 +* improvement: using strict types to avoid erorrs like issue 2164 by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/2220 +* fix: formatting in Browser section of README.md by @derrekcoleman in https://github.com/elizaOS/eliza/pull/2336 +* Update README_TR.md by @sukrucildirr in https://github.com/elizaOS/eliza/pull/2334 +* feat: (ragKnowledge) Enhance RAG knowledge handling by @augchan42 in https://github.com/elizaOS/eliza/pull/2351 +* feat: add instagram client by @Lukapetro in https://github.com/elizaOS/eliza/pull/1964 +* docs: Update README_FR.md by @omahs in https://github.com/elizaOS/eliza/pull/2356 +* fix: esure RA Action reply does not hallucinate by @HashWarlock in https://github.com/elizaOS/eliza/pull/2355 +* fix: align base url in client if api runs on a different port by @C0ldSmi1e in https://github.com/elizaOS/eliza/pull/2353 +* feat: add safe_mode (& cfg_scale) for venice image generation by @proteanx in https://github.com/elizaOS/eliza/pull/2354 +* fix: Update package.json of core package by @kesar in https://github.com/elizaOS/eliza/pull/2301 +* chore: Reorganizing README translations into a dedicated i18n directory structure by @0xnogo in https://github.com/elizaOS/eliza/pull/2149 +* chore: Prep 0.1.9-alpha.1 by @odilitime in https://github.com/elizaOS/eliza/pull/2359 +* feat: Enable Multiple remote character urls by @leeran7 in https://github.com/elizaOS/eliza/pull/2328 +* chore: lint by @odilitime in https://github.com/elizaOS/eliza/pull/2368 +* fix: Fix typo in import statement for Solana AgentKit plugin Update iโ€ฆ by @defitricks in https://github.com/elizaOS/eliza/pull/2370 +* feat: dexscreener trending by @0xCardinalError in https://github.com/elizaOS/eliza/pull/2325 +* fix: Prevent app crash when REMOTE_CHARACTER_URLS is undefined by @tcm390 in https://github.com/elizaOS/eliza/pull/2384 +* Startup Error: ENV misconfig by @0xSero in https://github.com/elizaOS/eliza/pull/2378 +* fix: check whether REMOTE_CHARACTER_URLS env is defined in starting agent by @dev-whoan in https://github.com/elizaOS/eliza/pull/2382 +* Fix typo by @ericlehong in https://github.com/elizaOS/eliza/pull/2385 +* fix: set default Squid Router plugin throttle to 1000 by @Archethect in https://github.com/elizaOS/eliza/pull/2386 +* chore: improve descriptions by @crStiv in https://github.com/elizaOS/eliza/pull/2394 +* feat: adding tests for plugin-solana by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/2345 +* feat: atoma provider by @francis2tm in https://github.com/elizaOS/eliza/pull/2082 +* chore: invoke exit code 0 after positive cleanup by @erise133 in https://github.com/elizaOS/eliza/pull/2398 +* fix: lint errors by @shakkernerd in https://github.com/elizaOS/eliza/pull/2400 +* feat: adding tests for slack client. Moving existing tests to new __tests__ directory. by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/2404 +* feat: better S3 flexibility by @JoeyKhd in https://github.com/elizaOS/eliza/pull/2379 +* feat: adding tests for github client by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/2407 +* feat: injective plugin by @enigmarikki in https://github.com/elizaOS/eliza/pull/1764 +* feat: Integrate Livepeer LLM provider by @UD1sto in https://github.com/elizaOS/eliza/pull/2154 +* chore: remove tate character by @wtfsayo in https://github.com/elizaOS/eliza/pull/2425 +* refactor: dockerize smoke tests by @twilwa in https://github.com/elizaOS/eliza/pull/2420 +* feat: coinbase agentkit plugin for eliza by @sweetmantech in https://github.com/elizaOS/eliza/pull/2298 +* feat: add workflow to block minified JS by @twilwa in https://github.com/elizaOS/eliza/pull/2417 +* feat: Code In Plugin, load characters from blockchain by @zo-eth in https://github.com/elizaOS/eliza/pull/2371 +* docs: Add notes for weekly contributor meeting on 2025-01-14 by @YoungPhlo in https://github.com/elizaOS/eliza/pull/2426 +* fix: Fix Incorrect Tweet ID Parameter Passed to sendTweet Function by @tcm390 in https://github.com/elizaOS/eliza/pull/2430 +* fix: quickstart.md conflicts by @wtfsayo in https://github.com/elizaOS/eliza/pull/2437 +* Update documentation links by @donatik27 in https://github.com/elizaOS/eliza/pull/2438 +* fix: typos in supabase seed file by @leopardracer in https://github.com/elizaOS/eliza/pull/2435 +* feat: Pyth Data Plugin by @AIFlowML in https://github.com/elizaOS/eliza/pull/2434 +* fix: if VITE_SERVER_PORT is not defined, use default 3000 by @JoeyKhd in https://github.com/elizaOS/eliza/pull/2433 +* fix: update zero Gravity (0G) link by @Hopium21 in https://github.com/elizaOS/eliza/pull/2441 +* feat: ibc transfer on cosmos blockchains by @KacperKoza343 in https://github.com/elizaOS/eliza/pull/2358 +* fix TEE Log plugin errors at agent startup by @bundinho in https://github.com/elizaOS/eliza/pull/2415 +* fix: missing import by @wtfsayo in https://github.com/elizaOS/eliza/pull/2444 +* feat: improvement to logger by @JoeyKhd in https://github.com/elizaOS/eliza/pull/2396 +* feat:update heurist env var examples by @tsubasakong in https://github.com/elizaOS/eliza/pull/2428 +* Fix typos in docs by @RubinovaAn1097 in https://github.com/elizaOS/eliza/pull/2449 +* fix: Update error message and remove duplicate version field by @MarsonKotovi4 in https://github.com/elizaOS/eliza/pull/2445 +* fix: #2373 Fix image description by @ae9is in https://github.com/elizaOS/eliza/pull/2375 +* fix: spell/grammar errors in characters by @Pistasha in https://github.com/elizaOS/eliza/pull/2447 +* feat: Telegram autonomous agent enhancement by @azep-ninja in https://github.com/elizaOS/eliza/pull/2338 +* feat: add default logger level setting to set the logger level to disโ€ฆ by @snobbee in https://github.com/elizaOS/eliza/pull/2451 +* feat: adding tests for instagram client by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/2454 +* feat: create version.cmd for windows support by @savageops in https://github.com/elizaOS/eliza/pull/2442 +* revert: "refactor: dockerize smoke tests" by @twilwa in https://github.com/elizaOS/eliza/pull/2459 +* feat: Add features to the Solana Agent Kit by @thearyanag in https://github.com/elizaOS/eliza/pull/2458 +* chore: set openai as default character's provider by @wtfsayo in https://github.com/elizaOS/eliza/pull/2460 +* fix: OPENAI provider being overwritten by LLAMA_LOCAL on pnpm start by @tcm390 in https://github.com/elizaOS/eliza/pull/2465 +* Typo fix in read.me by @dedyshkaPexto in https://github.com/elizaOS/eliza/pull/2464 +* Fix spelling error by @Dimitrolito in https://github.com/elizaOS/eliza/pull/2456 +* fix: conditional use of useQuery in AgentRoute component to prevent runtime errors. by @carlos-cne in https://github.com/elizaOS/eliza/pull/2413 +* fix: resolve type error for children in animated.div component by @suleigolden in https://github.com/elizaOS/eliza/pull/2462 +* fix: SwapAction in evm-plugin by @B1boid in https://github.com/elizaOS/eliza/pull/2332 +* chore: add openai env to smokeTests by @wtfsayo in https://github.com/elizaOS/eliza/pull/2472 +* test: adding test configuration and tests for redis adapter by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/2470 +* feat: tests for supabase and sqlite db adapters by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/2468 +* fix: linting errors by @shakkernerd in https://github.com/elizaOS/eliza/pull/2474 +* chore: remove eslint, prettier, tslint and replace with biome by @0xSero in https://github.com/elizaOS/eliza/pull/2439 +* feat: Sui supports the secp256k1/secp256r1 algorithms by @lispking in https://github.com/elizaOS/eliza/pull/2476 +* chore: edited the link to the banner by @Olexandr88 in https://github.com/elizaOS/eliza/pull/2483 +* feat: Solana plugin improvement for flawless transfers by @sunsakis in https://github.com/elizaOS/eliza/pull/2340 +* chore: update createToken.ts by @eltociear in https://github.com/elizaOS/eliza/pull/2493 +* chore: corrected the link to the banner by @Olexandr88 in https://github.com/elizaOS/eliza/pull/2491 +* feat: introduce Dependency Injection to enhance developer experience by @btspoony in https://github.com/elizaOS/eliza/pull/2115 +* chore: corrected the link to the banner by @Olexandr88 in https://github.com/elizaOS/eliza/pull/2490 +* chore: corrected the link to the banner by @Olexandr88 in https://github.com/elizaOS/eliza/pull/2489 +* Update ElizaOS Documentation link by @Daulox92 in https://github.com/elizaOS/eliza/pull/2495 +* chore: handle test cases in version.sh file by @KoZivod88074 in https://github.com/elizaOS/eliza/pull/2485 +* feat: adding test configuration and test coverage for binance plugin by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/2482 +* feat: Implement character loading from multiple paths and enhance APIโ€ฆ by @tercel in https://github.com/elizaOS/eliza/pull/2365 +* feat: Load multiple characters from a single remote url by @leeran7 in https://github.com/elizaOS/eliza/pull/2475 +* feat: Discord autonomous agent enhancement by @azep-ninja in https://github.com/elizaOS/eliza/pull/2335 +* feat: Add Extra Multimedia Support for Telegram Client by @tcm390 in https://github.com/elizaOS/eliza/pull/2510 +* test: api timeout handling for plugin-binance by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/2504 +* feat: add support for NVIDIA inference for ElizaOS by @AIFlowML in https://github.com/elizaOS/eliza/pull/2512 +* feat(plugin-openai): add OpenAI integration for text generation by @0xrubusdata in https://github.com/elizaOS/eliza/pull/2463 +* chore: default coinbase agentkit plugin by @sweetmantech in https://github.com/elizaOS/eliza/pull/2505 +* docs: add docs/README_JA.md by @eltociear in https://github.com/elizaOS/eliza/pull/2515 +* fix: use coingecko headerKey from api config by @visionpixel in https://github.com/elizaOS/eliza/pull/2518 +* test: plugin-tee - adjusting project structure and new tests by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/2508 +* docs: user ID with room ID in MemoryManager and other improvements by @Haisen772 in https://github.com/elizaOS/eliza/pull/2492 +* feat: plugin rabbi trader tests by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/2520 +* chore: add eliza technical report/paper by @tomguluson92 in https://github.com/elizaOS/eliza/pull/2517 +* plugin-tts: enhance TTS generation flow and caching by @bfontes in https://github.com/elizaOS/eliza/pull/2506 +* feat:add plugin-lightning by @jimtracy1007 in https://github.com/elizaOS/eliza/pull/2429 +* fix: develop branch build/start failed by @tcm390 in https://github.com/elizaOS/eliza/pull/2545 +* fix: develop branch build/start failed by @tcm390 in https://github.com/elizaOS/eliza/pull/2546 +* feat(plugin-devin): implement client-agnostic Devin plugin by @devin-ai-integration in https://github.com/elizaOS/eliza/pull/2549 +* feat: Updated READ.me file with pre-requisites to enable telegram bot by @neelkanani in https://github.com/elizaOS/eliza/pull/2547 +* chore: remove cleanup step from integration tests workflow by @devin-ai-integration in https://github.com/elizaOS/eliza/pull/2551 +* feat: add anthropic image provider for vision by @BitWonka in https://github.com/elizaOS/eliza/pull/2524 +* feat: Add more actions to Abstract Plugin by @jonathangus in https://github.com/elizaOS/eliza/pull/2531 +* chore: remove cleanup step from integration tests workflow by @devin-ai-integration in https://github.com/elizaOS/eliza/pull/2553 +* chore: optimize pnpm cache configuration by @devin-ai-integration in https://github.com/elizaOS/eliza/pull/2555 +* feat: add a way to create/store/restore agents in the filesystem by @maxcoto in https://github.com/elizaOS/eliza/pull/2389 +* chore(revert): optimize pnpm cache configuration by @devin-ai-integration in https://github.com/elizaOS/eliza/pull/2556 +* test configuration and tests for client-lens by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/2534 +* feat(x spaces): Don't wait for mute, wait for silence by @tcm390 in https://github.com/elizaOS/eliza/pull/2576 +* feat: update integration tests workflow with improved caching by @devin-ai-integration in https://github.com/elizaOS/eliza/pull/2589 +* feat(plugin-agentkit): test config and tests by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/2573 +* feat(plugin-coingecko): coingecko trending advanced by @0xCardinalError in https://github.com/elizaOS/eliza/pull/2568 +* feat(plugin-holdstation): add plugin holdstation swap by @cuongnguyenthai in https://github.com/elizaOS/eliza/pull/2596 +* Add 'node-compile-cache' to '.gitignore' by @jazzvaz in https://github.com/elizaOS/eliza/pull/2597 +* feat(plugin-farcaster): test config and test coverage by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/2567 +* fix:Incorrect boolean parsing for ENABLE_OPEN_AI_COMMUNITY_PLUGIN setting #2559 by @lincheoll in https://github.com/elizaOS/eliza/pull/2560 +* feat: add three new langs into TTS by @tomguluson92 in https://github.com/elizaOS/eliza/pull/2562 +* docs: Add "What Did You Get Done This Week? #10" notes by @YoungPhlo in https://github.com/elizaOS/eliza/pull/2558 +* feat: Add Cronos Evm by @leejw51crypto in https://github.com/elizaOS/eliza/pull/2585 +* feat: add router nitro plugin by @RaveenaBhasin in https://github.com/elizaOS/eliza/pull/2590 +* feat(plugin-new): initia plugin + chore revert to integrationTests from stable release 0.1.7 by @boohyunsik in https://github.com/elizaOS/eliza/pull/2448 +* feat: nvidia-nim-plugin by @AIFlowML in https://github.com/elizaOS/eliza/pull/2599 +* fix: Add instruction to escape quotes on JSON generation by @lalalune in https://github.com/elizaOS/eliza/pull/2604 +* feat(new-plugin): 0x plugin to swap on evms by @chuasonglin1995 in https://github.com/elizaOS/eliza/pull/2329 +* fix: add missing plugin by @tcm390 in https://github.com/elizaOS/eliza/pull/2626 +* chore(deps): update dependency vite [security] by @renovate in https://github.com/elizaOS/eliza/pull/2627 +* chore(deps): update dependency vite [security] by @renovate in https://github.com/elizaOS/eliza/pull/2629 +* feat: add plugin-bnb to support BNB chain by @pythonberg1997 in https://github.com/elizaOS/eliza/pull/2278 +* chore: fix develop build and tests by @wtfsayo in https://github.com/elizaOS/eliza/pull/2646 +* feat: plugin for OriginTrail Decentralized Knowledge Graph by @brkagithub in https://github.com/elizaOS/eliza/pull/2380 +* fix: Resolve chat error in openai-plugin (#2649) by @lincheoll in https://github.com/elizaOS/eliza/pull/2650 +* feat: Cosmos Plugin - IBC swap action by @stanislawkurzypBD in https://github.com/elizaOS/eliza/pull/2554 +* fix: a typo bug in conflux plugin by @siphonelee in https://github.com/elizaOS/eliza/pull/2654 +* fix debug targets to show elizalogger debug messages by @augchan42 in https://github.com/elizaOS/eliza/pull/2670 +* feat(email-plugin): add email-plugin + improve: fixed avail plugin duplicate dependency by @jteso in https://github.com/elizaOS/eliza/pull/2645 +* chore(spelling-fixes): docs by @nnsW3 in https://github.com/elizaOS/eliza/pull/2669 +* feat(new-plugin): suno Eliza plugin by @Freytes in https://github.com/elizaOS/eliza/pull/2656 +* Revert "feat(new-plugin): suno Eliza plugin" by @wtfsayo in https://github.com/elizaOS/eliza/pull/2673 +* feat: Implement runProcess function in test library by @VolodymyrBg in https://github.com/elizaOS/eliza/pull/2672 +* fix: remove wrong comment by @tcm390 in https://github.com/elizaOS/eliza/pull/2683 +* feat: chainbase plugin for eliza by @lxcong in https://github.com/elizaOS/eliza/pull/2162 +* fix debug targets to show elizalogger debug messages by @augchan42 in https://github.com/elizaOS/eliza/pull/2685 +* feat: custom s3 endpoint url for 'plugin-node' by @dtbuchholz in https://github.com/elizaOS/eliza/pull/2176 +* chore: lint pass by @odilitime in https://github.com/elizaOS/eliza/pull/2580 +* feat(plugin-new): Official SimsAI Release V1.0 by @simsaidev in https://github.com/elizaOS/eliza/pull/2618 +* chore: fix types syntax issue by @wtfsayo in https://github.com/elizaOS/eliza/pull/2694 +* feat: add adapter-qdrant by @oxf71 in https://github.com/elizaOS/eliza/pull/2322 +* feat(new-plugin): suno music generation by @Freytes in https://github.com/elizaOS/eliza/pull/2679 +* feat(new-plugin): udio music generation for eliza by @Freytes in https://github.com/elizaOS/eliza/pull/2660 +* feat(new-plugin): Eliza OmniFlix Plugin by @OmniflixBlockEater in https://github.com/elizaOS/eliza/pull/2693 +* fix(ragKnowledge): Ensure scoped IDs are properly used to check for existing knowledge by @augchan42 in https://github.com/elizaOS/eliza/pull/2690 +* feat: Hyperbolic-plugin by @AIFlowML in https://github.com/elizaOS/eliza/pull/2701 +* Mostly aesthetic changes, fixed some wonky bullets and numbered lists. by @bealers in https://github.com/elizaOS/eliza/pull/2698 +* feat(new-plugin): eliza samsung smarthings plugin by @Freytes in https://github.com/elizaOS/eliza/pull/2678 +* Improve GitBook Provider Output by Including Query Context by @Evan-zkLinkLabs in https://github.com/elizaOS/eliza/pull/2659 +* feat: Plugin football by @suleigolden in https://github.com/elizaOS/eliza/pull/2461 +* feat: [Space] improving handling of user ids and memory storage by @worksgoodcompany in https://github.com/elizaOS/eliza/pull/2686 +* fix: correct stt plugin userId type by @tcm390 in https://github.com/elizaOS/eliza/pull/2704 +* fix: Unexpected JSON Metadata in Twitter Bot Replies by @tcm390 in https://github.com/elizaOS/eliza/pull/2712 +* fix: remove duplicated handlePendingTweet by @tcm390 in https://github.com/elizaOS/eliza/pull/2715 +* feat: add error message by @tcm390 in https://github.com/elizaOS/eliza/pull/2717 +* Remove the log as it may potentially cause the app to crash by @tcm390 in https://github.com/elizaOS/eliza/pull/2716 +* feat: improve twitter parsing by @tcm390 in https://github.com/elizaOS/eliza/pull/2730 +* feat: move cleanJsonResponse to parsing by @tcm390 in https://github.com/elizaOS/eliza/pull/2732 +* fix: delete plugin-bootstrap sex message, because it will cause some apis sensitive alerts by @klren0312 in https://github.com/elizaOS/eliza/pull/2748 +* feat: add lit plugin by @dezcalimese in https://github.com/elizaOS/eliza/pull/2703 +* feat(plugin-holdstation): add plugin holdstation swap by @dev-holdstation in https://github.com/elizaOS/eliza/pull/2741 +* feat: Restrict discord bot to respond only in allowed channels (#2742) by @lincheoll in https://github.com/elizaOS/eliza/pull/2743 +* chore: adds hyperliquid env variables to env example by @alex1092 in https://github.com/elizaOS/eliza/pull/2736 +* feat: Add Sei Plugin by @mj850 in https://github.com/elizaOS/eliza/pull/2720 +* feat(ton-plugin): add debug scripts and fix the transfer by @jinbangyi in https://github.com/elizaOS/eliza/pull/2744 +* chore(core/evaluators): source example links by @guspan-tanadi in https://github.com/elizaOS/eliza/pull/2724 +* fix: resolve @ai-sdk/provider version conflicts by @antman1p in https://github.com/elizaOS/eliza/pull/2714 +* Bug/fix ton plugin by @ajkraus04 in https://github.com/elizaOS/eliza/pull/2755 +* fix: ton plugin build issue by @wtfsayo in https://github.com/elizaOS/eliza/pull/2757 +* feat: biome automation via python with reporting by @AIFlowML in https://github.com/elizaOS/eliza/pull/2733 +* chore: Use latest allora-sdk version in the Allora Plugin by @conache in https://github.com/elizaOS/eliza/pull/2707 +* feat(new-plugin): adding Imgflip plugin for generating memes using the imgflip.com API by @krustevalexander in https://github.com/elizaOS/eliza/pull/2711 +* feat: Add plugin-ethstorage by @iteyelmp in https://github.com/elizaOS/eliza/pull/2737 +* feat: minimal workflow to resolve ephemeral check by @twilwa in https://github.com/elizaOS/eliza/pull/2735 +* feat: support mina blockchain by @lispking in https://github.com/elizaOS/eliza/pull/2702 +* client-eliza-home: test config and test coverage by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/2719 +* feat: create /.turbo/config.json by @twilwa in https://github.com/elizaOS/eliza/pull/2768 +* feat: Add Amazon Bedrock as LLM provider by @ebaizel in https://github.com/elizaOS/eliza/pull/2769 +* Fix path in all files by @LouisVannobel in https://github.com/elizaOS/eliza/pull/2763 +* feat(new-plugin): added zerion plugin by @pranav-singhal in https://github.com/elizaOS/eliza/pull/2766 +* feat: add moralis plugin by @bharathbabu-moralis in https://github.com/elizaOS/eliza/pull/2764 +* feat(edriziai): Add Edriziai Startup Mentor AI Assistant by @ccross2 in https://github.com/elizaOS/eliza/pull/2687 +* docs: add docs on configuring secrets for multi agent workflows. by @LinuxIsCool in https://github.com/elizaOS/eliza/pull/2632 +* feat(new-plugin): adding intelligent email evaluation and automation by @Cooops in https://github.com/elizaOS/eliza/pull/2709 +* feat(new-plugin): add Form chain plugin by @tmarwen in https://github.com/elizaOS/eliza/pull/2728 +* feat: added Ankr plugin by @AIFlowML in https://github.com/elizaOS/eliza/pull/2773 +* feat(new-plugin): bittensor bitmind api for eliza by @benliang99 in https://github.com/elizaOS/eliza/pull/2682 +* feat: Add plugin-dcap by @Liao1 in https://github.com/elizaOS/eliza/pull/2638 +* chore: enable turbo cache by @wtfsayo in https://github.com/elizaOS/eliza/pull/2775 +* fix: make template message footer more explicit by @HashWarlock in https://github.com/elizaOS/eliza/pull/2774 +* docs: add one click deployment to docs by @KanishkKhurana in https://github.com/elizaOS/eliza/pull/2631 +* feat: Add swap & improvements for multiversx-plugin by @mgavrila in https://github.com/elizaOS/eliza/pull/2651 +* chore: allow custom TEE log path by @batudo in https://github.com/elizaOS/eliza/pull/2616 +* feat(new-adapter): mongo-db adaptor by @jobyid in https://github.com/elizaOS/eliza/pull/1427 +* chore(plugin-coinbase): Update tokenContract.ts by @AdventureSeeker987 in https://github.com/elizaOS/eliza/pull/2781 +* chore(add-tests): plugin abstract: test config and tests by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/2621 +* feat(client-alexa): Basic Alexa skill notification by @brandon1525 in https://github.com/elizaOS/eliza/pull/2564 +* feat(new-plugin): quick intel plugin for token security analysis by @azep-ninja in https://github.com/elizaOS/eliza/pull/2391 +* feat: add Mind Network plugin by @zy-bc-ai in https://github.com/elizaOS/eliza/pull/2431 +* fix: goal updating bug in the goal evaluator's handler of plugin-bootstrap by @Alirun in https://github.com/elizaOS/eliza/pull/2725 +* fix: ethers/viem issue in mind network plugin by @wtfsayo in https://github.com/elizaOS/eliza/pull/2783 +* fix: client-twitter homeTimeline name parse bug by @JhChoy in https://github.com/elizaOS/eliza/pull/2789 +* fix: topics formatting bug at composeState by @JhChoy in https://github.com/elizaOS/eliza/pull/2788 +* Fix: DTS Error mismatch LanguageModelV1interface/Version in ai-sdk mistral model by @juanc07 in https://github.com/elizaOS/eliza/pull/2782 +* feat: plugin Solana web3.js V2 & automated LPing on Orca by @calintje in https://github.com/elizaOS/eliza/pull/2136 +* feat: news-plugin by @ileana-pr in https://github.com/elizaOS/eliza/pull/1248 +* fix: bug in goal objectives update lookup logic by @Alirun in https://github.com/elizaOS/eliza/pull/2791 +* fix: adding exclusion for extra folder for faster future rebase by @AIFlowML in https://github.com/elizaOS/eliza/pull/2813 +* feat: Add Access Token Management to MultiversX Plugin by @elpulpo0 in https://github.com/elizaOS/eliza/pull/2810 +* chore: plugin-0g test configuration and test coverage by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/2805 +* test: plugin-0x test configuration and coverage by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/2807 +* fix: akash splash by @AIFlowML in https://github.com/elizaOS/eliza/pull/2816 +* fix: nvidia nim environment by @AIFlowML in https://github.com/elizaOS/eliza/pull/2817 +* feat: improve message parsing by @tcm390 in https://github.com/elizaOS/eliza/pull/2772 +* fix: plugin-zksync-era multiple errors and issues as documented by @AIFlowML in https://github.com/elizaOS/eliza/pull/2819 +* docs: Create client-discord readme.md by @actuallyrizzn in https://github.com/elizaOS/eliza/pull/2812 +* docs: Update client-telegram README.md by @actuallyrizzn in https://github.com/elizaOS/eliza/pull/2814 +* docs: update embedding function by @rubinovitz in https://github.com/elizaOS/eliza/pull/2821 +* feat: twitter post media by @tcm390 in https://github.com/elizaOS/eliza/pull/2818 +* fix: plugin-tts by @AIFlowML in https://github.com/elizaOS/eliza/pull/2829 +* fix: plugin-twitter by @AIFlowML in https://github.com/elizaOS/eliza/pull/2827 +* fix: plugin-udio by @AIFlowML in https://github.com/elizaOS/eliza/pull/2824 +* fix: plugin-video-generation Fixed multiple non criticla issues. by @AIFlowML in https://github.com/elizaOS/eliza/pull/2823 +* fix: plugin-zerion by @AIFlowML in https://github.com/elizaOS/eliza/pull/2822 +* feat(new-plugin): create gelato plugin relay by @anirudhmakhana in https://github.com/elizaOS/eliza/pull/2799 +* fix: still run Farcaster client loop if error by @rubinovitz in https://github.com/elizaOS/eliza/pull/2830 +* feat: add new readmes, move some others for consistency by @madjin in https://github.com/elizaOS/eliza/pull/2828 +* btcfun Plugin for Eliza by @Nevermore-Ray in https://github.com/elizaOS/eliza/pull/2797 +* feat: XMTP Client by @humanagent in https://github.com/elizaOS/eliza/pull/2786 +* feat(new-plugin): trikon plugin for eliza by @AmriteshTrikon in https://github.com/elizaOS/eliza/pull/2653 +* chore(update-plugin-initialization): btcfun & trikon plugin by @Nevermore-Ray in https://github.com/elizaOS/eliza/pull/2643 +* fix: plugin-thirdweb by @AIFlowML in https://github.com/elizaOS/eliza/pull/2833 +* fix(deps): update dependency cookie to v0.7.0 [security] by @renovate in https://github.com/elizaOS/eliza/pull/2834 +* fix: plugin-ton by @AIFlowML in https://github.com/elizaOS/eliza/pull/2832 +* fix: plugin-tee-marlin by @AIFlowML in https://github.com/elizaOS/eliza/pull/2837 +* fix: plugin-tee-veriafiable-log by @AIFlowML in https://github.com/elizaOS/eliza/pull/2836 +* fix: akash splash bis by @AIFlowML in https://github.com/elizaOS/eliza/pull/2838 +* fix: plugin-story by @AIFlowML in https://github.com/elizaOS/eliza/pull/2844 +* fix: plugin-sui by @AIFlowML in https://github.com/elizaOS/eliza/pull/2843 +* fix: plugin-suno by @AIFlowML in https://github.com/elizaOS/eliza/pull/2840 +* fix(deps): update bs58 version to resolve integration test dependency issues by @devin-ai-integration in https://github.com/elizaOS/eliza/pull/2848 +* feat(new-plugin): A plugin for the Zilliqa blockchain by @rrw-zilliqa in https://github.com/elizaOS/eliza/pull/2842 +* refactor: simplify and fix exports in Imgflip meme generation plugin. by @krustevalexander in https://github.com/elizaOS/eliza/pull/2846 +* feat: client for Telegram account by @tgaru in https://github.com/elizaOS/eliza/pull/2839 +* chore(add-tests): plugin 3d generation: test config and test coverage by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/2850 +* chore(add-tests): plugin anyone: test config and test coverage by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/2854 +* feat(new-plugin): support apro plugin by @fifahuihua in https://github.com/elizaOS/eliza/pull/2794 +* feat(new-plugin): add arbitrage plugin with example character by @mmarfinetz in https://github.com/elizaOS/eliza/pull/2784 +* feat(new-plugin): deva client integration by @stopmalone in https://github.com/elizaOS/eliza/pull/1238 +* fix: single quote handle bug at parseJsonArray by @JhChoy in https://github.com/elizaOS/eliza/pull/2802 +* fix: fix merge conflict by @tcm390 in https://github.com/elizaOS/eliza/pull/2873 +* fix: null check by @tcm390 in https://github.com/elizaOS/eliza/pull/2878 +* fix: default character openai => llamalocal by @odilitime in https://github.com/elizaOS/eliza/pull/2880 +* fix: LOG_JSON_FORMAT env var setting by @odilitime in https://github.com/elizaOS/eliza/pull/2881 +* fix: fix abstract package.json by @odilitime in https://github.com/elizaOS/eliza/pull/2882 +* chore: bump version to 0.1.9 by @odilitime in https://github.com/elizaOS/eliza/pull/2883 +* fix: client server port by @tcm390 in https://github.com/elizaOS/eliza/pull/2886 +* Add more data when scrapping tweets by @viv-cheung in https://github.com/elizaOS/eliza/pull/2644 +* Update pnpm to v9.15.0 [SECURITY] by @renovate in https://github.com/elizaOS/eliza/pull/2888 +* Update dependency systeminformation to v5.23.8 [SECURITY] by @renovate in https://github.com/elizaOS/eliza/pull/2887 +* fet: use axios to fetch price and support two types private key by @v1xingyue in https://github.com/elizaOS/eliza/pull/2879 +* fix: plugin-omniflix by @AIFlowML in https://github.com/elizaOS/eliza/pull/2902 +* fix: plugin-open-weather by @AIFlowML in https://github.com/elizaOS/eliza/pull/2899 +* fix: plugin-opacity by @AIFlowML in https://github.com/elizaOS/eliza/pull/2900 +* fix: plugin-openai by @AIFlowML in https://github.com/elizaOS/eliza/pull/2898 +* fix(patch): pnpm/@solana-developers to fix @coral-xyz 'BN' export by @wtfsayo in https://github.com/elizaOS/eliza/pull/2901 +* fix: plugin-primus by @AIFlowML in https://github.com/elizaOS/eliza/pull/2893 +* fix: plugin-quai by @AIFlowML in https://github.com/elizaOS/eliza/pull/2892 +* fix: plugin-quick-intel by @AIFlowML in https://github.com/elizaOS/eliza/pull/2890 +* fix: plugin-sei by @AIFlowML in https://github.com/elizaOS/eliza/pull/2877 +* fix: plugin-sgx by @AIFlowML in https://github.com/elizaOS/eliza/pull/2872 +* fix: plugin-starknet by @AIFlowML in https://github.com/elizaOS/eliza/pull/2866 +* fix: plugin-spheron by @AIFlowML in https://github.com/elizaOS/eliza/pull/2870 +* fix: plugin-squid-router by @AIFlowML in https://github.com/elizaOS/eliza/pull/2868 +* Update LICENSE by @maximevtush in https://github.com/elizaOS/eliza/pull/2903 +* fix: plugin-arbitrage by @AIFlowML in https://github.com/elizaOS/eliza/pull/2905 +* chore: fix spell errors by @Pricstas in https://github.com/elizaOS/eliza/pull/2909 +* feat(arbitrage): improve gas price optimization and volume calculation by @mmarfinetz in https://github.com/elizaOS/eliza/pull/2869 +* chore(add-tests): plugin-asterai -> test coverage and config by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/2860 +* ci: changes to allow package scoping to public by @shakkernerd in https://github.com/elizaOS/eliza/pull/2928 +* fix: missing version prop in package.json by @shakkernerd in https://github.com/elizaOS/eliza/pull/2929 +* fix: invalid npm package naming convention by @shakkernerd in https://github.com/elizaOS/eliza/pull/2930 +* chore: inconsistent folder naming conventipn by @shakkernerd in https://github.com/elizaOS/eliza/pull/2931 +* feat: add public access to packages. by @shakkernerd in https://github.com/elizaOS/eliza/pull/2933 +* fix template typos by @michavie in https://github.com/elizaOS/eliza/pull/2932 +* feat: new model provider for LM Studio by @eric2hen in https://github.com/elizaOS/eliza/pull/2913 +* fix: plugin-nft-generation by @AIFlowML in https://github.com/elizaOS/eliza/pull/2934 +* fix: building error by @tcm390 in https://github.com/elizaOS/eliza/pull/2938 +* fix: plugin-news by @AIFlowML in https://github.com/elizaOS/eliza/pull/2940 +* fix: plugin-nft-collection by @AIFlowML in https://github.com/elizaOS/eliza/pull/2937 +* fix: plugin-near by @AIFlowML in https://github.com/elizaOS/eliza/pull/2941 +* fix: plugin-movement by @AIFlowML in https://github.com/elizaOS/eliza/pull/2943 +* fix: plugin-multiversx by @AIFlowML in https://github.com/elizaOS/eliza/pull/2942 +* fix: remove dead code by @tcm390 in https://github.com/elizaOS/eliza/pull/2945 +* fix: add missing plugins in package.json by @tcm390 in https://github.com/elizaOS/eliza/pull/2947 +* fix: doesn't work in tweet post template by @tcm390 in https://github.com/elizaOS/eliza/pull/2951 +* fix: plugin-massa by @AIFlowML in https://github.com/elizaOS/eliza/pull/2955 +* fix-plugin-mina by @AIFlowML in https://github.com/elizaOS/eliza/pull/2954 +* fix: mind-network by @AIFlowML in https://github.com/elizaOS/eliza/pull/2953 +* fix: plugin-moralis by @AIFlowML in https://github.com/elizaOS/eliza/pull/2952 +* fix: remove unnecessary @ts-expect-error directive in chat component by @wonseokjung in https://github.com/elizaOS/eliza/pull/2950 +* feat(plugin-di): add `Dependency Injection` support for services and clients, and di plugin samples to _examples as new folder by @btspoony in https://github.com/elizaOS/eliza/pull/2855 +* fix: handle whitespace in quote conversion by @tcm390 in https://github.com/elizaOS/eliza/pull/2961 +* fix: plugin-letzai by @AIFlowML in https://github.com/elizaOS/eliza/pull/2960 +* fix: plugin-lightning by @AIFlowML in https://github.com/elizaOS/eliza/pull/2959 +* fix: plugin-lit by @AIFlowML in https://github.com/elizaOS/eliza/pull/2957 +* fix: plugin-obsidian by @AIFlowML in https://github.com/elizaOS/eliza/pull/2906 +* fix: plugin-router-nitro by @AIFlowML in https://github.com/elizaOS/eliza/pull/2884 +* fix: ensure action tweet replies to agent's initial tweet by @tcm390 in https://github.com/elizaOS/eliza/pull/2966 +* fix: plugin-lensnetwork by @AIFlowML in https://github.com/elizaOS/eliza/pull/2965 +* chore: bump pnpm for remaining workflows by @wtfsayo in https://github.com/elizaOS/eliza/pull/2968 +* fix(lint): plugin-intiface by @AIFlowML in https://github.com/elizaOS/eliza/pull/2971 +* fix(lint): plugin-iq6900 by @AIFlowML in https://github.com/elizaOS/eliza/pull/2970 +* fix: plugin-irys by @AIFlowML in https://github.com/elizaOS/eliza/pull/2969 +* fix(lint): plugin-injective by @AIFlowML in https://github.com/elizaOS/eliza/pull/2973 +* fix: plugin-initia by @AIFlowML in https://github.com/elizaOS/eliza/pull/2974 +* fix(lint): plugin-imgflip by @AIFlowML in https://github.com/elizaOS/eliza/pull/2976 +* fix(lint): plugin-image-generation by @AIFlowML in https://github.com/elizaOS/eliza/pull/2978 +* feat(chore): plugin-arbitrage test config and coverage by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/2983 +* feat: improve instagram client by @derrix060 in https://github.com/elizaOS/eliza/pull/2975 +* feat(chore): plugin-apro -> test coverage and test config by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/2980 +* fix README's CONTRIBUTING.md link in plugin-multiversx package by @elpulpo0 in https://github.com/elizaOS/eliza/pull/2985 +* docs: fix broken links to github by @yaruno in https://github.com/elizaOS/eliza/pull/2987 +* Update lpmanager.character.json by @Dahka2321 in https://github.com/elizaOS/eliza/pull/2921 +* chore: correction typos chat_2024-12-04.md by @futreall in https://github.com/elizaOS/eliza/pull/2986 +* feat(more-actions): Lit Protocol plugin by @madschristensen99 in https://github.com/elizaOS/eliza/pull/2912 +* fix: re-enable wtfsayonara's patch by @odilitime in https://github.com/elizaOS/eliza/pull/2993 +* chore: lockfile audit by @odilitime in https://github.com/elizaOS/eliza/pull/2994 +* Update of the complete translation of README_FR.md [FR] by @YohanGH in https://github.com/elizaOS/eliza/pull/2964 +* feat (chore): plugin avalanche test config and coverage by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/2999 +* feat (chore): plugin avail test config and coverage by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/2997 +* feat (chore): plugin-autonome test config and coverage by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/2992 +* fix: OpenAI embedding issue by @ileana-pr in https://github.com/elizaOS/eliza/pull/3003 +* fix: don't start services twice, improve logging by @odilitime in https://github.com/elizaOS/eliza/pull/3007 +* fix: deepgram transcription null check by @tcm390 in https://github.com/elizaOS/eliza/pull/3014 +* fix: llava model parsing Issue by @tcm390 in https://github.com/elizaOS/eliza/pull/3008 +* fix(lint): plugin-hyperliquid by @AIFlowML in https://github.com/elizaOS/eliza/pull/3011 +* fix(lint): plugin-holdstation by @AIFlowML in https://github.com/elizaOS/eliza/pull/3015 +* fix(lint): plugin-goplus by @AIFlowML in https://github.com/elizaOS/eliza/pull/3016 +* chore(lint-BIOME): Improving errors and warnings by @0xSero in https://github.com/elizaOS/eliza/pull/2990 +* fix: client-slack & adapter-postgres: Ensure the connection between user and room before creating a memory,โ€ฆ by @maxime in https://github.com/elizaOS/eliza/pull/3006 +* fix: change handleAnthropic default mode to auto by @Jesscha in https://github.com/elizaOS/eliza/pull/3018 +* fix: spelling issue by @sky-coderay in https://github.com/elizaOS/eliza/pull/3041 +* fix(lint): plugin-ethstorage by @AIFlowML in https://github.com/elizaOS/eliza/pull/3039 +* fix(lint): plugin-evm by @AIFlowML in https://github.com/elizaOS/eliza/pull/3038 +* fix(lint): plugin-flow by @AIFlowML in https://github.com/elizaOS/eliza/pull/3036 +* fix(lint): plugin-football by @AIFlowML in https://github.com/elizaOS/eliza/pull/3035 +* fix(lint): plugin-form by @AIFlowML in https://github.com/elizaOS/eliza/pull/3033 +* fix(lint): plugin-fuel by @AIFlowML in https://github.com/elizaOS/eliza/pull/3028 +* fix(lint): plugin-gelato by @AIFlowML in https://github.com/elizaOS/eliza/pull/3027 +* fix(lint): plugin-genlayer by @AIFlowML in https://github.com/elizaOS/eliza/pull/3025 +* fix(lint): plugin-giphy by @AIFlowML in https://github.com/elizaOS/eliza/pull/3024 +* fix(lint): plugin-goat by @AIFlowML in https://github.com/elizaOS/eliza/pull/3019 +* fix(lint): plugin-gitcoin-passport by @AIFlowML in https://github.com/elizaOS/eliza/pull/3022 +* fix(lint): plugin-gitbook by @AIFlowML in https://github.com/elizaOS/eliza/pull/3023 +* feat: add Fleek Eliza deployment to Readme_CN by @tobySolutions in https://github.com/elizaOS/eliza/pull/3048 +* fix: correct regex by @tcm390 in https://github.com/elizaOS/eliza/pull/3054 +* fix: Message id collision in Telegram Client by @tcm390 in https://github.com/elizaOS/eliza/pull/3053 +* fix: ImageVisionModelProvider Not Applied in Runtime for Image Description Service by @tcm390 in https://github.com/elizaOS/eliza/pull/3056 +* fix: handle unsupported image provider by @tcm390 in https://github.com/elizaOS/eliza/pull/3057 +* feat: use Aggregator swap sui tokens by @v1xingyue in https://github.com/elizaOS/eliza/pull/3012 +* fix: plugin-devin lint by @AIFlowML in https://github.com/elizaOS/eliza/pull/3070 +* fix: plugin-binance lint by @AIFlowML in https://github.com/elizaOS/eliza/pull/3089 +* fix: plugin-birdeye lint by @AIFlowML in https://github.com/elizaOS/eliza/pull/3088 +* fix: plugin-bittensor lint by @AIFlowML in https://github.com/elizaOS/eliza/pull/3087 +* fix: plugin-Chainbase lint by @AIFlowML in https://github.com/elizaOS/eliza/pull/3085 +* fix: plugin-coingecko lint by @AIFlowML in https://github.com/elizaOS/eliza/pull/3084 +* fix: plugin-coinmarketcap lint by @AIFlowML in https://github.com/elizaOS/eliza/pull/3082 +* fix: plugin-conflux lint by @AIFlowML in https://github.com/elizaOS/eliza/pull/3080 +* fix: plugin-cosmos lint by @AIFlowML in https://github.com/elizaOS/eliza/pull/3077 +* fix: plugin-cronos lint by @AIFlowML in https://github.com/elizaOS/eliza/pull/3076 +* fix: plugin-bnb lint by @AIFlowML in https://github.com/elizaOS/eliza/pull/3086 +* fix: Rename file with typo in MVX plugin by @PhyByte in https://github.com/elizaOS/eliza/pull/3026 +* docs: Add Arabic translation for README by @EmanHerawy in https://github.com/elizaOS/eliza/pull/3081 +* fix: plugin-cronoszkevm lint by @AIFlowML in https://github.com/elizaOS/eliza/pull/3075 +* fix: plugin-dcap lint by @AIFlowML in https://github.com/elizaOS/eliza/pull/3074 +* fix: plugin-b2 lint by @AIFlowML in https://github.com/elizaOS/eliza/pull/3091 +* fix: plugin-depin lint by @AIFlowML in https://github.com/elizaOS/eliza/pull/3073 +* fix: plugin-dexscreener lint by @AIFlowML in https://github.com/elizaOS/eliza/pull/3069 +* fix: the unexpected corrections for plugin-di caused by biome lint by @btspoony in https://github.com/elizaOS/eliza/pull/3052 +* fix: fix-plugin-di lint by @AIFlowML in https://github.com/elizaOS/eliza/pull/3066 +* fix: plugin-avalanche lint by @AIFlowML in https://github.com/elizaOS/eliza/pull/3092 +* fix: plugin-echochamber lint by @AIFlowML in https://github.com/elizaOS/eliza/pull/3063 +* fix: plugin-dkg lint by @AIFlowML in https://github.com/elizaOS/eliza/pull/3065 +* fix: plugin-mail lint by @AIFlowML in https://github.com/elizaOS/eliza/pull/3061 +* feat: 3049 add demo api access coingecko by @MichaelDeng03 in https://github.com/elizaOS/eliza/pull/3050 +* fix(lint): email-automation by @AIFlowML in https://github.com/elizaOS/eliza/pull/3044 +* fix: plugin-avail by @AIFlowML in https://github.com/elizaOS/eliza/pull/3094 +* docs(packages/adapters): navigate section links by @guspan-tanadi in https://github.com/elizaOS/eliza/pull/3005 +* fix: fixed build error in plugin-email-automation by @samarth30 in https://github.com/elizaOS/eliza/pull/3097 +* fix: plugin-icp refactored by @AIFlowML in https://github.com/elizaOS/eliza/pull/3010 +* fix: plugin-asterai by @AIFlowML in https://github.com/elizaOS/eliza/pull/3101 +* fix: plugin-autonome-v1 by @AIFlowML in https://github.com/elizaOS/eliza/pull/3098 +* fix: plugin-arthera-biome by @AIFlowML in https://github.com/elizaOS/eliza/pull/3102 +* fix: plugin-aptos by @AIFlowML in https://github.com/elizaOS/eliza/pull/3104 +* docs: Add "What Did You Get Done This Week? 11" notes by @YoungPhlo in https://github.com/elizaOS/eliza/pull/3103 +* fix: fixing the error parsing json when an array is a value in a JSONโ€ฆ by @maxime in https://github.com/elizaOS/eliza/pull/3113 +* chore: updated .gitignore + removed build files by @wtfsayo in https://github.com/elizaOS/eliza/pull/3117 +* fix: auto-scrolling issue in client by @tcm390 in https://github.com/elizaOS/eliza/pull/3115 +* fix: plugin-apro by @AIFlowML in https://github.com/elizaOS/eliza/pull/3106 +* feat (chore): plugin-chainbase test config and coverage by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/3072 +* feat (chore): plugin bittensor test config and coverage by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/3064 +* feat (chore): plugin-bootstrap: test config and test coverage by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/3068 +* fix: docker build command by skipping eslint files by @jonathangus in https://github.com/elizaOS/eliza/pull/3110 +* fix: export dexScreenerPlugin by @shakkernerd in https://github.com/elizaOS/eliza/pull/3120 +* fix:chore(plugin-chainbase): add missing comma in package.json by @akugone in https://github.com/elizaOS/eliza/pull/3118 +* fix: remove duplicate litPlugin import by @shakkernerd in https://github.com/elizaOS/eliza/pull/3121 +* chore: dev => main 0.1.9 by @odilitime in https://github.com/elizaOS/eliza/pull/2361 + +#### New Contributors + +
+View New Contributors +* @adacapo21 made their first contribution in https://github.com/elizaOS/eliza/pull/2199 +* @gene-zhan made their first contribution in https://github.com/elizaOS/eliza/pull/1369 +* @Stumble made their first contribution in https://github.com/elizaOS/eliza/pull/2228 +* @oxlupo made their first contribution in https://github.com/elizaOS/eliza/pull/2260 +* @VitalikBerashvili made their first contribution in https://github.com/elizaOS/eliza/pull/2256 +* @Hack666r made their first contribution in https://github.com/elizaOS/eliza/pull/2255 +* @KacperKoza343 made their first contribution in https://github.com/elizaOS/eliza/pull/2240 +* @thetechnocratic made their first contribution in https://github.com/elizaOS/eliza/pull/1710 +* @Firbydude made their first contribution in https://github.com/elizaOS/eliza/pull/1442 +* @MonteCrypto999 made their first contribution in https://github.com/elizaOS/eliza/pull/2249 +* @lincheoll made their first contribution in https://github.com/elizaOS/eliza/pull/2274 +* @jason51553262 made their first contribution in https://github.com/elizaOS/eliza/pull/2267 +* @CryptoGraffe made their first contribution in https://github.com/elizaOS/eliza/pull/2307 +* @bbopar made their first contribution in https://github.com/elizaOS/eliza/pull/2293 +* @hellopleasures made their first contribution in https://github.com/elizaOS/eliza/pull/1865 +* @chuasonglin1995 made their first contribution in https://github.com/elizaOS/eliza/pull/2195 +* @everimbaq made their first contribution in https://github.com/elizaOS/eliza/pull/2324 +* @derrekcoleman made their first contribution in https://github.com/elizaOS/eliza/pull/2336 +* @sukrucildirr made their first contribution in https://github.com/elizaOS/eliza/pull/2334 +* @C0ldSmi1e made their first contribution in https://github.com/elizaOS/eliza/pull/2353 +* @0xnogo made their first contribution in https://github.com/elizaOS/eliza/pull/2149 +* @leeran7 made their first contribution in https://github.com/elizaOS/eliza/pull/2328 +* @defitricks made their first contribution in https://github.com/elizaOS/eliza/pull/2370 +* @0xSero made their first contribution in https://github.com/elizaOS/eliza/pull/2378 +* @dev-whoan made their first contribution in https://github.com/elizaOS/eliza/pull/2382 +* @ericlehong made their first contribution in https://github.com/elizaOS/eliza/pull/2385 +* @crStiv made their first contribution in https://github.com/elizaOS/eliza/pull/2394 +* @francis2tm made their first contribution in https://github.com/elizaOS/eliza/pull/2082 +* @enigmarikki made their first contribution in https://github.com/elizaOS/eliza/pull/1764 +* @sweetmantech made their first contribution in https://github.com/elizaOS/eliza/pull/2298 +* @donatik27 made their first contribution in https://github.com/elizaOS/eliza/pull/2438 +* @leopardracer made their first contribution in https://github.com/elizaOS/eliza/pull/2435 +* @Hopium21 made their first contribution in https://github.com/elizaOS/eliza/pull/2441 +* @bundinho made their first contribution in https://github.com/elizaOS/eliza/pull/2415 +* @RubinovaAn1097 made their first contribution in https://github.com/elizaOS/eliza/pull/2449 +* @MarsonKotovi4 made their first contribution in https://github.com/elizaOS/eliza/pull/2445 +* @ae9is made their first contribution in https://github.com/elizaOS/eliza/pull/2375 +* @Pistasha made their first contribution in https://github.com/elizaOS/eliza/pull/2447 +* @dedyshkaPexto made their first contribution in https://github.com/elizaOS/eliza/pull/2464 +* @Dimitrolito made their first contribution in https://github.com/elizaOS/eliza/pull/2456 +* @carlos-cne made their first contribution in https://github.com/elizaOS/eliza/pull/2413 +* @suleigolden made their first contribution in https://github.com/elizaOS/eliza/pull/2462 +* @B1boid made their first contribution in https://github.com/elizaOS/eliza/pull/2332 +* @lispking made their first contribution in https://github.com/elizaOS/eliza/pull/2476 +* @Olexandr88 made their first contribution in https://github.com/elizaOS/eliza/pull/2483 +* @sunsakis made their first contribution in https://github.com/elizaOS/eliza/pull/2340 +* @Daulox92 made their first contribution in https://github.com/elizaOS/eliza/pull/2495 +* @KoZivod88074 made their first contribution in https://github.com/elizaOS/eliza/pull/2485 +* @tercel made their first contribution in https://github.com/elizaOS/eliza/pull/2365 +* @0xrubusdata made their first contribution in https://github.com/elizaOS/eliza/pull/2463 +* @visionpixel made their first contribution in https://github.com/elizaOS/eliza/pull/2518 +* @Haisen772 made their first contribution in https://github.com/elizaOS/eliza/pull/2492 +* @bfontes made their first contribution in https://github.com/elizaOS/eliza/pull/2506 +* @jimtracy1007 made their first contribution in https://github.com/elizaOS/eliza/pull/2429 +* @devin-ai-integration made their first contribution in https://github.com/elizaOS/eliza/pull/2549 +* @neelkanani made their first contribution in https://github.com/elizaOS/eliza/pull/2547 +* @BitWonka made their first contribution in https://github.com/elizaOS/eliza/pull/2524 +* @maxcoto made their first contribution in https://github.com/elizaOS/eliza/pull/2389 +* @cuongnguyenthai made their first contribution in https://github.com/elizaOS/eliza/pull/2596 +* @leejw51crypto made their first contribution in https://github.com/elizaOS/eliza/pull/2585 +* @RaveenaBhasin made their first contribution in https://github.com/elizaOS/eliza/pull/2590 +* @boohyunsik made their first contribution in https://github.com/elizaOS/eliza/pull/2448 +* @brkagithub made their first contribution in https://github.com/elizaOS/eliza/pull/2380 +* @stanislawkurzypBD made their first contribution in https://github.com/elizaOS/eliza/pull/2554 +* @siphonelee made their first contribution in https://github.com/elizaOS/eliza/pull/2654 +* @jteso made their first contribution in https://github.com/elizaOS/eliza/pull/2645 +* @nnsW3 made their first contribution in https://github.com/elizaOS/eliza/pull/2669 +* @VolodymyrBg made their first contribution in https://github.com/elizaOS/eliza/pull/2672 +* @lxcong made their first contribution in https://github.com/elizaOS/eliza/pull/2162 +* @dtbuchholz made their first contribution in https://github.com/elizaOS/eliza/pull/2176 +* @simsaidev made their first contribution in https://github.com/elizaOS/eliza/pull/2618 +* @oxf71 made their first contribution in https://github.com/elizaOS/eliza/pull/2322 +* @OmniflixBlockEater made their first contribution in https://github.com/elizaOS/eliza/pull/2693 +* @bealers made their first contribution in https://github.com/elizaOS/eliza/pull/2698 +* @Evan-zkLinkLabs made their first contribution in https://github.com/elizaOS/eliza/pull/2659 +* @worksgoodcompany made their first contribution in https://github.com/elizaOS/eliza/pull/2686 +* @klren0312 made their first contribution in https://github.com/elizaOS/eliza/pull/2748 +* @dezcalimese made their first contribution in https://github.com/elizaOS/eliza/pull/2703 +* @dev-holdstation made their first contribution in https://github.com/elizaOS/eliza/pull/2741 +* @alex1092 made their first contribution in https://github.com/elizaOS/eliza/pull/2736 +* @mj850 made their first contribution in https://github.com/elizaOS/eliza/pull/2720 +* @guspan-tanadi made their first contribution in https://github.com/elizaOS/eliza/pull/2724 +* @ajkraus04 made their first contribution in https://github.com/elizaOS/eliza/pull/2755 +* @krustevalexander made their first contribution in https://github.com/elizaOS/eliza/pull/2711 +* @iteyelmp made their first contribution in https://github.com/elizaOS/eliza/pull/2737 +* @ebaizel made their first contribution in https://github.com/elizaOS/eliza/pull/2769 +* @LouisVannobel made their first contribution in https://github.com/elizaOS/eliza/pull/2763 +* @pranav-singhal made their first contribution in https://github.com/elizaOS/eliza/pull/2766 +* @bharathbabu-moralis made their first contribution in https://github.com/elizaOS/eliza/pull/2764 +* @ccross2 made their first contribution in https://github.com/elizaOS/eliza/pull/2687 +* @LinuxIsCool made their first contribution in https://github.com/elizaOS/eliza/pull/2632 +* @Cooops made their first contribution in https://github.com/elizaOS/eliza/pull/2709 +* @tmarwen made their first contribution in https://github.com/elizaOS/eliza/pull/2728 +* @benliang99 made their first contribution in https://github.com/elizaOS/eliza/pull/2682 +* @Liao1 made their first contribution in https://github.com/elizaOS/eliza/pull/2638 +* @KanishkKhurana made their first contribution in https://github.com/elizaOS/eliza/pull/2631 +* @batudo made their first contribution in https://github.com/elizaOS/eliza/pull/2616 +* @jobyid made their first contribution in https://github.com/elizaOS/eliza/pull/1427 +* @AdventureSeeker987 made their first contribution in https://github.com/elizaOS/eliza/pull/2781 +* @brandon1525 made their first contribution in https://github.com/elizaOS/eliza/pull/2564 +* @zy-bc-ai made their first contribution in https://github.com/elizaOS/eliza/pull/2431 +* @Alirun made their first contribution in https://github.com/elizaOS/eliza/pull/2725 +* @JhChoy made their first contribution in https://github.com/elizaOS/eliza/pull/2789 +* @juanc07 made their first contribution in https://github.com/elizaOS/eliza/pull/2782 +* @calintje made their first contribution in https://github.com/elizaOS/eliza/pull/2136 +* @elpulpo0 made their first contribution in https://github.com/elizaOS/eliza/pull/2810 +* @actuallyrizzn made their first contribution in https://github.com/elizaOS/eliza/pull/2812 +* @rubinovitz made their first contribution in https://github.com/elizaOS/eliza/pull/2821 +* @anirudhmakhana made their first contribution in https://github.com/elizaOS/eliza/pull/2799 +* @Nevermore-Ray made their first contribution in https://github.com/elizaOS/eliza/pull/2797 +* @humanagent made their first contribution in https://github.com/elizaOS/eliza/pull/2786 +* @AmriteshTrikon made their first contribution in https://github.com/elizaOS/eliza/pull/2653 +* @rrw-zilliqa made their first contribution in https://github.com/elizaOS/eliza/pull/2842 +* @tgaru made their first contribution in https://github.com/elizaOS/eliza/pull/2839 +* @fifahuihua made their first contribution in https://github.com/elizaOS/eliza/pull/2794 +* @mmarfinetz made their first contribution in https://github.com/elizaOS/eliza/pull/2784 +* @stopmalone made their first contribution in https://github.com/elizaOS/eliza/pull/1238 +* @viv-cheung made their first contribution in https://github.com/elizaOS/eliza/pull/2644 +* @maximevtush made their first contribution in https://github.com/elizaOS/eliza/pull/2903 +* @Pricstas made their first contribution in https://github.com/elizaOS/eliza/pull/2909 +* @michavie made their first contribution in https://github.com/elizaOS/eliza/pull/2932 +* @eric2hen made their first contribution in https://github.com/elizaOS/eliza/pull/2913 +* @wonseokjung made their first contribution in https://github.com/elizaOS/eliza/pull/2950 +* @derrix060 made their first contribution in https://github.com/elizaOS/eliza/pull/2975 +* @yaruno made their first contribution in https://github.com/elizaOS/eliza/pull/2987 +* @Dahka2321 made their first contribution in https://github.com/elizaOS/eliza/pull/2921 +* @futreall made their first contribution in https://github.com/elizaOS/eliza/pull/2986 +* @madschristensen99 made their first contribution in https://github.com/elizaOS/eliza/pull/2912 +* @YohanGH made their first contribution in https://github.com/elizaOS/eliza/pull/2964 +* @maxime made their first contribution in https://github.com/elizaOS/eliza/pull/3006 +* @Jesscha made their first contribution in https://github.com/elizaOS/eliza/pull/3018 +* @sky-coderay made their first contribution in https://github.com/elizaOS/eliza/pull/3041 +* @tobySolutions made their first contribution in https://github.com/elizaOS/eliza/pull/3048 +* @PhyByte made their first contribution in https://github.com/elizaOS/eliza/pull/3026 +* @EmanHerawy made their first contribution in https://github.com/elizaOS/eliza/pull/3081 +* @MichaelDeng03 made their first contribution in https://github.com/elizaOS/eliza/pull/3050 +* @akugone made their first contribution in https://github.com/elizaOS/eliza/pull/3118 +
+ +#### Full Changelog: https://github.com/elizaOS/eliza/compare/v0.1.8-alpha.1...v0.1.9 + +--- + +## v0.1.8-alpha.1 (January 31, 2025) + +#### What's Changed + +* feats: Add 0G to the blockchain sector (diagram update) by @tomguluson92 in https://github.com/elizaOS/eliza/pull/2204 +* fix(plugin-depin): sentientAI description by @bodhi-crypo in https://github.com/elizaOS/eliza/pull/2668 + +**Full Changelog**: https://github.com/elizaOS/eliza/compare/v0.1.8+build.1...v0.1.8-alpha.1 + +--- + +## v0.1.8+build.1 (January 12, 2025) + +Minor update to [v0.1.8](https://github.com/elizaOS/eliza/releases/tag/v0.1.8) + +Fixes: +- docker image build +- actually bump version so npm will publish a v0.1.8 +- security: Implement file upload security (#1753) #1806 +- twitter-client: clean up mention deduplication #2185 +- postgres adapter migration extension creation which already exists at this point #2188 +- Missing LETZAI model #2187 + +#### What's Changed + +* fix: release 0.1.8 fixes by @odilitime in https://github.com/elizaOS/eliza/pull/2184 +* docs: Add Persian README File by @ali-moha in https://github.com/elizaOS/eliza/pull/2182 +* fix: Missing LETZAI model by @daizhengxue in https://github.com/elizaOS/eliza/pull/2187 +* fix postgres adapter migration extension creation which already exists at this point by @web3gh in https://github.com/elizaOS/eliza/pull/2188 +* fix(client-twitter): clean up mention deduplication by @nhodges in https://github.com/elizaOS/eliza/pull/2185 +* feat(security): Implement file upload security (#1753) by @AIFlowML in https://github.com/elizaOS/eliza/pull/1806 +* chore: Prep 0.1.8.build.1 by @odilitime in https://github.com/elizaOS/eliza/pull/2193 +* chore: 0.1.8.build.1 (dev => main) by @odilitime in https://github.com/elizaOS/eliza/pull/2194 + +#### New Contributors + +
+View New Contributors +* @ali-moha made their first contribution in https://github.com/elizaOS/eliza/pull/2182 +
+ +#### Full Changelog: https://github.com/elizaOS/eliza/compare/v0.1.8...v0.1.8+build.1 + +--- + +## v0.1.8 (January 12, 2025) + +#### What's Changed + +#### Features + +- TTS (Text2Speech) with over 15 languages support! #2110 +- Image descriptions into client-twitter #1775 +- Add Heurist embedding model #2093 +- Add Cloudflare AI Gateway support #821 +- Add Mistral AI as new model provider #2137 +- Add DeepSeek AI provider support to Eliza #2067 +- Support TEE logging and support running eliza in Intel SGX #1470 +- Pro API support, trending coins API #2068 +- Add Irys plugin #1708 +- Add support autonome platform #2121 +- Add Akash Network plugin with autonomous deployment capabilities #2111 +- Add Lens Network Plugin #2101 +- Add plugin-hyperliquid #2141 +- Add asterai plugin #2045 +- Add massa-plugin #1582 +- Add Quai integration #2083 +- Primus zkTLS plugin to fully verify agent activities #2086 +- Solana transaction more lenient (wait for confirmed instead of finalized) #2053 + +#### Fixes + +- Fix plugin loading from a character.json file #2095 +- prevent repeated login by reusing client-twitter session #2129 +- fix the chat stuck in infinite loop #1755 +- fix client-discord join voice action #2160 +- replace invalid toghether ai medium model #2173 +- insert missing langdetect on plugin-tts package.json #2175 +- Apply model settings for images and remove duplicate files #2118 +- clientConfig.telegram.isPartOfTeam misstype #2103 +- fix starknet plugin by replacing walletProvider with portfolio provider #2029 +- correct SUI/USD price calculation #2150 +- deepseek support in getTokenForProvider #2179 +- Supabase updates #2100 +- Koloxarto/fix ragknowledge for postgres #2153 +- case-sensitive column reference in knowledge table CHECK constraint #2058 +- syntax issue on autonome plugin and lock file update #2131 +- lens export name and duplicate imports #2142 +- Revert "feat: Proof of Pizza - Agentic Dominos Ordering" #2075 + +Complete changelog: +* fix: add default export to plugin-image-generation by @jonathanmv in https://github.com/elizaOS/eliza/pull/1831 +* Update .env.example by @bitcoinbender in https://github.com/elizaOS/eliza/pull/1829 +* chore: update develop from main by @shakkernerd in https://github.com/elizaOS/eliza/pull/1823 +* feat(models): update Google model configurations by @gmh5225 in https://github.com/elizaOS/eliza/pull/1815 +* improvement: replacing console.log with elizaLogger by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/1834 +* Update README_KOR.md by @web3isthefuture in https://github.com/elizaOS/eliza/pull/1835 +* refactor: typo in readme by @MagikHolder in https://github.com/elizaOS/eliza/pull/1832 +* Fix faq link on contributing.md by @manotoor in https://github.com/elizaOS/eliza/pull/1847 +* Create README.md by @RobertSloan22 in https://github.com/elizaOS/eliza/pull/1787 +* Update c3po.character.json by @macfly-base in https://github.com/elizaOS/eliza/pull/1827 +* Feat/genlayer plugin by @AgustinRamiroDiaz in https://github.com/elizaOS/eliza/pull/975 +* fix: broken ci docs missed frozen pnpm file out-of-sync by @marcellodesales in https://github.com/elizaOS/eliza/pull/1798 +* chore: update bootstrap plugin export by @affaan-m in https://github.com/elizaOS/eliza/pull/1836 +* correct faq docs link in both contribution md files by @MacsDickinson in https://github.com/elizaOS/eliza/pull/1839 +* Feat: add infera as an inference provide by @inferanetwork in https://github.com/elizaOS/eliza/pull/1860 +* feat: add avail plugin by @robin-rrt in https://github.com/elizaOS/eliza/pull/1241 +* feat: Add Stargaze plugin by @daniel-farina in https://github.com/elizaOS/eliza/pull/1861 +* feat: add cosmos plugin by @mgacek-blockydevs in https://github.com/elizaOS/eliza/pull/1826 +* feat: Implement a plugin that can retrieve Marlin TEE remote attestations by @roshanrags in https://github.com/elizaOS/eliza/pull/935 +* docs: Add DAO donation ask & dev discord by @odilitime in https://github.com/elizaOS/eliza/pull/1867 +* fix: Fix postinstall script by @odilitime in https://github.com/elizaOS/eliza/pull/1872 +* docs: add Romanian README translation by @pedronovikovborges in https://github.com/elizaOS/eliza/pull/1770 +* test: adding more tests for goals,memory and provider. Fixing generation.test.ts by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/1840 +* fix: remove twitter profile caching (#1638) by @augchan42 in https://github.com/elizaOS/eliza/pull/1782 +* feat: Add devcontainer by @jazzvaz in https://github.com/elizaOS/eliza/pull/1807 +* fix(solana token provider): await cached data by @bentatum in https://github.com/elizaOS/eliza/pull/1828 +* chore: support more debians distros by @odilitime in https://github.com/elizaOS/eliza/pull/1875 +* feat: refactor model config by @tcm390 in https://github.com/elizaOS/eliza/pull/1805 +* feat: added new plugin - zktls - reclaim by @Gajesh2007 in https://github.com/elizaOS/eliza/pull/1558 +* Feat: Support wildcard in TWITTER_TARGET_USERS 1883 by @augchan42 in https://github.com/elizaOS/eliza/pull/1884 +* feat: add remote attestation action by @HashWarlock in https://github.com/elizaOS/eliza/pull/1885 +* feat: Use recommended settings in jupiter swap by @Arrowana in https://github.com/elizaOS/eliza/pull/1882 +* Fixed broken API Documentation URL by @JoeyKhd in https://github.com/elizaOS/eliza/pull/1881 +* feat: add OpenWeather plugin by @kylebuildsstuff in https://github.com/elizaOS/eliza/pull/1880 +* test: adding test setup for telegram client by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/1879 +* chore(core): enable strict null checks by @bentatum in https://github.com/elizaOS/eliza/pull/1878 +* fix: remove case sensitive path by @zhourunlai in https://github.com/elizaOS/eliza/pull/1892 +* feat: hyperfy support by @odilitime in https://github.com/elizaOS/eliza/pull/1896 +* Add Dutch (Nederlands) translation by @xzrfax in https://github.com/elizaOS/eliza/pull/1909 +* fix: twitter result obj undefined properties by @zhourunlai in https://github.com/elizaOS/eliza/pull/1905 +* chore: fix integrations and smoke tests by @shakkernerd in https://github.com/elizaOS/eliza/pull/1893 +* fix: add callback to the evaluators for client-telegram by @RatakondalaArun in https://github.com/elizaOS/eliza/pull/1908 +* chore(client-discord): fix SUMMARIZE prompt by @bodhi-crypo in https://github.com/elizaOS/eliza/pull/1916 +* fix(core): check evaluators for null by @bentatum in https://github.com/elizaOS/eliza/pull/1918 +* fix: resolved a bunch of type related errors and ensure project compiles by @JoeyKhd in https://github.com/elizaOS/eliza/pull/1917 +* feats: diagram update by @tomguluson92 in https://github.com/elizaOS/eliza/pull/1907 +* feat: Optimize Agent Action Processing by Prioritizing Timelines and Limiting Actions Per Cycle by @tcm390 in https://github.com/elizaOS/eliza/pull/1824 +* Feature/add binance plugin by @Lukapetro in https://github.com/elizaOS/eliza/pull/1812 +* Fix typo Update CHANGELOG.md by @petryshkaCODE in https://github.com/elizaOS/eliza/pull/1922 +* feat: add GoPlus Security Plugin to enhance security for agent by @0xbeekeeper in https://github.com/elizaOS/eliza/pull/1898 +* API route update by @JoeyKhd in https://github.com/elizaOS/eliza/pull/1923 +* fix: handle empty input text to avoid memory content empty error by @zhourunlai in https://github.com/elizaOS/eliza/pull/1919 +* test: adding tests for discord-client by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/1927 +* docs: Add "What Did You Get Done This Week? #8" notes by @YoungPhlo in https://github.com/elizaOS/eliza/pull/1894 +* fix: Limit the number of timelines fetched by @tcm390 in https://github.com/elizaOS/eliza/pull/1931 +* fix: rm unused variable X_SERVER_URL by @proteanx in https://github.com/elizaOS/eliza/pull/1930 +* feat: Make templates in composeContext dynamic by @jonathangus in https://github.com/elizaOS/eliza/pull/1467 +* docs: it is processAction instead of triggerAction by @threewebcode in https://github.com/elizaOS/eliza/pull/1937 +* feat: solana token deploy using solana agent kit by @renlulu in https://github.com/elizaOS/eliza/pull/1373 +* chore(plugin-conflux): remove unused imports by @bendanzhentan in https://github.com/elizaOS/eliza/pull/1941 +* feat(plugin-cronoszkevm): rm not used imports by @sinecose in https://github.com/elizaOS/eliza/pull/1744 +* feat: support for eternalai provider can make request with chain_id extra data in body by @genesis-0000 in https://github.com/elizaOS/eliza/pull/1938 +* chore: more specific rpc urls by @0xRider in https://github.com/elizaOS/eliza/pull/1945 +* feat: support for eternalai provider can write request/response log info by @genesis-0000 in https://github.com/elizaOS/eliza/pull/1948 +* chore: add embedding tests by @shlokkhemani in https://github.com/elizaOS/eliza/pull/1944 +* feat: new plugin Arthera Chain by @elpiarthera in https://github.com/elizaOS/eliza/pull/1818 +* fix: fixed error in C3PO and improved error handling feedback by @JoeyKhd in https://github.com/elizaOS/eliza/pull/1951 +* feat: add pglite db adapter by @KONFeature in https://github.com/elizaOS/eliza/pull/1810 +* feat: Add fraxtal chain to evm by @kesar in https://github.com/elizaOS/eliza/pull/1954 +* feat: add coin price plugin (CoinMarketCap, CoinGecko & CoinCap) by @proteanx in https://github.com/elizaOS/eliza/pull/1808 +* fix: abstract readme by @cygaar in https://github.com/elizaOS/eliza/pull/1963 +* feat: improve twitter paragraph splitting if containing url by @darwintree in https://github.com/elizaOS/eliza/pull/1947 +* test: adding tests for twitter-client by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/1959 +* test: adding tests for twitter plugin by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/1976 +* chore: Cleaner logs on agent startup by @velvet-shark in https://github.com/elizaOS/eliza/pull/1973 +* feat: anyone plugin to privatise network requests by @Saundr21 in https://github.com/elizaOS/eliza/pull/1960 +* fix: SQLITE ERROR, zero-lenght vectors not supported by @JoeyKhd in https://github.com/elizaOS/eliza/pull/1984 +* fix: many fixes to the Telegram templates by @Laurentiu-Andronache in https://github.com/elizaOS/eliza/pull/1982 +* test: changing test structure for core package. Fixing failling outdated tests by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/1989 +* chore: Enable all EVM chains by default by @Minco-Yuga in https://github.com/elizaOS/eliza/pull/1981 +* chore: add debug logging for context by @Laurentiu-Andronache in https://github.com/elizaOS/eliza/pull/1980 +* fix: Fix db init race condition affecting builds by @0x-jj in https://github.com/elizaOS/eliza/pull/1968 +* feat: add new plugin - spheron by @rekpero in https://github.com/elizaOS/eliza/pull/1966 +* feat: Add Allora plugin by @conache in https://github.com/elizaOS/eliza/pull/1955 +* fix: Added Local Embedding Manager to reuse Local embed model - Fixes High Ram Issues by @mbcse in https://github.com/elizaOS/eliza/pull/1950 +* feat: obsidian integration plugin by @sekmet in https://github.com/elizaOS/eliza/pull/1943 +* add thirdweb plugin by @iankm in https://github.com/elizaOS/eliza/pull/1418 +* feat: improvements for plugin-cosmos by @mgacek-blockydevs in https://github.com/elizaOS/eliza/pull/1934 +* fix: build on plugin spheron by @shakkernerd in https://github.com/elizaOS/eliza/pull/1995 +* fix: client twitter dryrun by @tcm390 in https://github.com/elizaOS/eliza/pull/1997 +* fix: resolve translation type issue by @odilitime in https://github.com/elizaOS/eliza/pull/1996 +* fix: fix .env.sample defaults by @odilitime in https://github.com/elizaOS/eliza/pull/1999 +* chore: update website url in lore.md by @tomguluson92 in https://github.com/elizaOS/eliza/pull/1998 +* Add support for Movement Network by @Rahat-ch in https://github.com/elizaOS/eliza/pull/1621 +* docs: Optimizes Technical Docs for LLMs & Vectorization by @Ed-Marcavage in https://github.com/elizaOS/eliza/pull/1993 +* feat: Separate Knowledge system + Multi-Agent RAG Optimization by @azep-ninja in https://github.com/elizaOS/eliza/pull/1620 +* feat: implement getKnowledge, searchKnowledge, createKnowledge, removeKnowledge and clearKnowledge methods by @shakkernerd in https://github.com/elizaOS/eliza/pull/2005 +* chore: Make `generateNewTweet` public by @hazelnutcloud in https://github.com/elizaOS/eliza/pull/1902 +* fix: remove legacy variables (XAI_MODEL, XAI_API_KEY & IMAGE_GEN) by @proteanx in https://github.com/elizaOS/eliza/pull/2001 +* Update plugins.md -- Allora README Fix by @kush-alloralabs in https://github.com/elizaOS/eliza/pull/2003 +* update: Readme and Comments by @rferrari in https://github.com/elizaOS/eliza/pull/2006 +* fix: Auto Client bug by @HashWarlock in https://github.com/elizaOS/eliza/pull/2007 +* chore(plugin-solana): replace console with elizaLogger by @sinecose in https://github.com/elizaOS/eliza/pull/1888 +* feat: make the birdeye api req optional by @kamalbuilds in https://github.com/elizaOS/eliza/pull/1895 +* feat: init DePIN plugin by @nicky-ru in https://github.com/elizaOS/eliza/pull/1874 +* fix: packages/adapter-postgres/schema.sql isShared needs double quote by @koofree in https://github.com/elizaOS/eliza/pull/2008 +* feat: Add approval mechanism for Twitter posts via Discord bot by @mbcse in https://github.com/elizaOS/eliza/pull/1876 +* feat: Giphy plugin - Add animated gif to conversations by @daniel-farina in https://github.com/elizaOS/eliza/pull/1873 +* Opacity Verifiable Interference zkTLS Plugin by @RonTuretzky in https://github.com/elizaOS/eliza/pull/1673 +* fix: remove near-solana slippage env conflict by @wtfsayo in https://github.com/elizaOS/eliza/pull/2016 +* feat: Update the Galadriel LLM integration to reflect their product updates by @kristjanpeterson1 in https://github.com/elizaOS/eliza/pull/2011 +* chore(ci): add pnpm lockfile consistency check workflow by @jonathanykh in https://github.com/elizaOS/eliza/pull/2015 +* feat: add telegram api root config in env by @dto-simba in https://github.com/elizaOS/eliza/pull/2014 +* feat: new plugin LetzAI by @mitchoz in https://github.com/elizaOS/eliza/pull/1868 +* fix: letzAi build issues by @wtfsayo in https://github.com/elizaOS/eliza/pull/2021 +* feat: plugin new RabbiTrader by @Freytes in https://github.com/elizaOS/eliza/pull/1785 +* Feature/add coinmarketcap plugin by @Lukapetro in https://github.com/elizaOS/eliza/pull/1773 +* fix: remove defillama plugin & improve rabbi trader by @wtfsayo in https://github.com/elizaOS/eliza/pull/2027 +* Update README_RU.md by @WAGMIBRO in https://github.com/elizaOS/eliza/pull/2026 +* Update .env.example by @antman1p in https://github.com/elizaOS/eliza/pull/2031 +* fix: include schema.sql and seed.sql in package files by @brauliolomeli in https://github.com/elizaOS/eliza/pull/2030 +* fix: ๐Ÿšš ๐Ÿ“š move plugin-web-search readme to root dir by @marcellodesales in https://github.com/elizaOS/eliza/pull/1992 +* feat: full overhaul of client by @JoeyKhd in https://github.com/elizaOS/eliza/pull/2038 +* fix: update slack client readme manifest by @AnonJon in https://github.com/elizaOS/eliza/pull/2044 +* fix: Update Key Derive in TEE by @HashWarlock in https://github.com/elizaOS/eliza/pull/2039 +* Revert "fix: Update Key Derive in TEE" by @shakkernerd in https://github.com/elizaOS/eliza/pull/2049 +* fix: Categorize & Format .env.example by @proteanx in https://github.com/elizaOS/eliza/pull/2052 +* fix: update regex to allow Unicode characters in message processing by @taofengno1 in https://github.com/elizaOS/eliza/pull/2048 +* Fix: more specific rpc urls by @zhourunlai in https://github.com/elizaOS/eliza/pull/2018 +* feat: Proof of Pizza - Agentic Dominos Ordering by @bayological in https://github.com/elizaOS/eliza/pull/2042 +* Feature/plugin coingecko by @Lukapetro in https://github.com/elizaOS/eliza/pull/1761 +* feat: improve zkstack based plugins by @aalimsahin in https://github.com/elizaOS/eliza/pull/1821 +* feat: added nineteen.ai llm & image support by @tripathiarpan20 in https://github.com/elizaOS/eliza/pull/2022 +* feat: plugin-nft-generation support evm chain by @xwxtwd in https://github.com/elizaOS/eliza/pull/1763 +* fix: Bugfix in LetzAI Plugin -> missing named export and Plugin-type by @DanielWahl in https://github.com/elizaOS/eliza/pull/2062 +* Galadriel docs and .env.example update by @kristjanpeterson1 in https://github.com/elizaOS/eliza/pull/2061 +* fix: PGVector_embedding_validation (#1687) by @AIFlowML in https://github.com/elizaOS/eliza/pull/1750 +* fix: fix multiversx-plugin by @mgavrila in https://github.com/elizaOS/eliza/pull/2017 +* revert: #2048 by @wtfsayo in https://github.com/elizaOS/eliza/pull/2059 +* feat: support TEE logging and support running eliza in Intel SGX by @ShuochengWang in https://github.com/elizaOS/eliza/pull/1470 +* Update README_CN to match latest English README by @bxngxl in https://github.com/elizaOS/eliza/pull/2069 +* Fix: case-sensitive column reference in knowledge table CHECK constraint by @antman1p in https://github.com/elizaOS/eliza/pull/2058 +* docs: Update README_KOR.md by @YANGSEOKWOO in https://github.com/elizaOS/eliza/pull/2074 +* fix: Revert "feat: Proof of Pizza - Agentic Dominos Ordering" by @tcm390 in https://github.com/elizaOS/eliza/pull/2075 +* fix: rm unused imports by @mameikagou in https://github.com/elizaOS/eliza/pull/2112 +* chore: revert #1808 + add missing import for coin gecko plugin by @wtfsayo in https://github.com/elizaOS/eliza/pull/2106 +* Add name and description to SttTtsPlugin by @mameikagou in https://github.com/elizaOS/eliza/pull/2117 +* fix: Apply model settings for images and remove duplicate files by @tcm390 in https://github.com/elizaOS/eliza/pull/2118 +* feat: pro api support, trending coins api by @Lukapetro in https://github.com/elizaOS/eliza/pull/2068 +* Add gemini to image vision by @web3gh in https://github.com/elizaOS/eliza/pull/2099 +* feat: Add Irys plugin by @Hugo-SEQUIER in https://github.com/elizaOS/eliza/pull/1708 +* fix: Fix plugin loading from a character.json file by @treppers in https://github.com/elizaOS/eliza/pull/2095 +* feat: add Heurist embedding model by @tsubasakong in https://github.com/elizaOS/eliza/pull/2093 +* fix: clientConfig.telegram.isPartOfTeam misstype by @rferrari in https://github.com/elizaOS/eliza/pull/2103 +* docs: Add Verified Inference docs by @maciejwitowski in https://github.com/elizaOS/eliza/pull/2125 +* fix: Update clients.md to fix package name by @prasadabhishek in https://github.com/elizaOS/eliza/pull/2091 +* feat: support autonome platform by @autonome-ai in https://github.com/elizaOS/eliza/pull/2121 +* fix: syntax issue on autonome plugin and lock file update by @wtfsayo in https://github.com/elizaOS/eliza/pull/2131 +* test: Integration Tests Enhancement and Coinbase Commerce Integration by @pgoos in https://github.com/elizaOS/eliza/pull/1767 +* fix: prevent repeated login by reusing client-twitter session by @tcm390 in https://github.com/elizaOS/eliza/pull/2129 +* fix: update lockfile and fix lint findings by @odilitime in https://github.com/elizaOS/eliza/pull/2128 +* feat: Add Akash Network plugin with autonomous deployment capabilities by @AIFlowML in https://github.com/elizaOS/eliza/pull/2111 +* feat: Lens Network Plugin by @pranjallyad in https://github.com/elizaOS/eliza/pull/2101 +* Docs improvements by @tudorpintea999 in https://github.com/elizaOS/eliza/pull/2138 +* fix: lens export name and duplicate imports by @tcm390 in https://github.com/elizaOS/eliza/pull/2142 +* Fix: Supabase updates by @antman1p in https://github.com/elizaOS/eliza/pull/2100 +* refactor: Optimize memory fetching by moving sorting and slicing to DB (PR #1531 remake) by @odilitime in https://github.com/elizaOS/eliza/pull/2135 +* feat: Add Cloudflare AI Gateway support by @w3-bounty in https://github.com/elizaOS/eliza/pull/821 +* docs: add readme portuguese version in docs by @rRogick in https://github.com/elizaOS/eliza/pull/2088 +* fix: eslint-fix-full-test-again by @AIFlowML in https://github.com/elizaOS/eliza/pull/2143 +* Fix: fix starknet plugin by replacing walletProvider with portfolio provider by @Jonatan-Chaverri in https://github.com/elizaOS/eliza/pull/2029 +* feat: Image descriptions into interaction.ts by @denizekiz in https://github.com/elizaOS/eliza/pull/1775 +* feat: plugin-hyperliquid by @earlyvibz in https://github.com/elizaOS/eliza/pull/2141 +* feat: Add Mistral AI as new model provider by @brauliolomeli in https://github.com/elizaOS/eliza/pull/2137 +* feat: Implement asterai plugin by @rellfy in https://github.com/elizaOS/eliza/pull/2045 +* feat: add massa-plugin by @peterjah in https://github.com/elizaOS/eliza/pull/1582 +* feat: add Quai integration by @0xalank in https://github.com/elizaOS/eliza/pull/2083 +* feat: Add DeepSeek AI provider support to Eliza by @daizhengxue in https://github.com/elizaOS/eliza/pull/2067 +* feat: Primus zkTLS plugin to fully verify agent activities by @xiangxiecrypto in https://github.com/elizaOS/eliza/pull/2086 +* fix: fix client-discord join voice action by @tcm390 in https://github.com/elizaOS/eliza/pull/2160 +* add github to client enumerations by @AnonJon in https://github.com/elizaOS/eliza/pull/2157 +* inheritance of character from parent using extends key by @ShreyGanatra in https://github.com/elizaOS/eliza/pull/2159 +* fix: correct SUI/USD price calculation by @ChainRex in https://github.com/elizaOS/eliza/pull/2150 +* feat: solana transaction more lenient by @zhourunlai in https://github.com/elizaOS/eliza/pull/2053 +* chore: Add UUID tests and fix version 5 bits by @shlokkhemani in https://github.com/elizaOS/eliza/pull/1362 +* Update git command for checking latest release by @velvet-shark in https://github.com/elizaOS/eliza/pull/1705 +* chore: add conditionals for supabase to agent directory by @antman1p in https://github.com/elizaOS/eliza/pull/2032 +* chore: bump develop lockfile by @odilitime in https://github.com/elizaOS/eliza/pull/2166 +* feat: TTS(Text2Speech) with over 15 languages support! by @tomguluson92 in https://github.com/elizaOS/eliza/pull/2110 +* test: moving uuid.tests to correct __tests__ directory by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/2168 +* tests: coinbase plugin - adding tests for coinbase plugin by @ai16z-demirix in https://github.com/elizaOS/eliza/pull/2170 +* Fix: replace invalid toghether ai medium model by @Jonatan-Chaverri in https://github.com/elizaOS/eliza/pull/2173 +* fix: insert missing langdetect on plugin-tts package.json by @rferrari in https://github.com/elizaOS/eliza/pull/2175 +* fix(client-twitter): add mention deduplication utility by @nhodges in https://github.com/elizaOS/eliza/pull/2178 +* feat: ๐ŸŽˆ perf(vscode): Set file nesting for md and DockerFile by @AAAkater in https://github.com/elizaOS/eliza/pull/2177 +* fix: deepseek support in getTokenForProvider by @Riroaki in https://github.com/elizaOS/eliza/pull/2179 +* fix: remove problematic redundant uuid conversion and add api input param validations to api server by @jonathanykh in https://github.com/elizaOS/eliza/pull/2051 +* fix: fix the chat stuck in infinite loop by @zoe27 in https://github.com/elizaOS/eliza/pull/1755 +* fix: Koloxarto/fix ragknowledge for postgres by @web3gh in https://github.com/elizaOS/eliza/pull/2153 +* chore: lint and fix pass on develop by @odilitime in https://github.com/elizaOS/eliza/pull/2180 +* chore: Prep v0.1.8 (dev => main) by @odilitime in https://github.com/elizaOS/eliza/pull/2171 + +#### New Contributors + +
+View New Contributors +* @jonathanmv made their first contribution in https://github.com/elizaOS/eliza/pull/1831 +* @bitcoinbender made their first contribution in https://github.com/elizaOS/eliza/pull/1829 +* @web3isthefuture made their first contribution in https://github.com/elizaOS/eliza/pull/1835 +* @MagikHolder made their first contribution in https://github.com/elizaOS/eliza/pull/1832 +* @manotoor made their first contribution in https://github.com/elizaOS/eliza/pull/1847 +* @RobertSloan22 made their first contribution in https://github.com/elizaOS/eliza/pull/1787 +* @macfly-base made their first contribution in https://github.com/elizaOS/eliza/pull/1827 +* @AgustinRamiroDiaz made their first contribution in https://github.com/elizaOS/eliza/pull/975 +* @MacsDickinson made their first contribution in https://github.com/elizaOS/eliza/pull/1839 +* @inferanetwork made their first contribution in https://github.com/elizaOS/eliza/pull/1860 +* @robin-rrt made their first contribution in https://github.com/elizaOS/eliza/pull/1241 +* @daniel-farina made their first contribution in https://github.com/elizaOS/eliza/pull/1861 +* @mgacek-blockydevs made their first contribution in https://github.com/elizaOS/eliza/pull/1826 +* @roshanrags made their first contribution in https://github.com/elizaOS/eliza/pull/935 +* @pedronovikovborges made their first contribution in https://github.com/elizaOS/eliza/pull/1770 +* @jazzvaz made their first contribution in https://github.com/elizaOS/eliza/pull/1807 +* @bentatum made their first contribution in https://github.com/elizaOS/eliza/pull/1828 +* @Gajesh2007 made their first contribution in https://github.com/elizaOS/eliza/pull/1558 +* @Arrowana made their first contribution in https://github.com/elizaOS/eliza/pull/1882 +* @JoeyKhd made their first contribution in https://github.com/elizaOS/eliza/pull/1881 +* @kylebuildsstuff made their first contribution in https://github.com/elizaOS/eliza/pull/1880 +* @xzrfax made their first contribution in https://github.com/elizaOS/eliza/pull/1909 +* @RatakondalaArun made their first contribution in https://github.com/elizaOS/eliza/pull/1908 +* @bodhi-crypo made their first contribution in https://github.com/elizaOS/eliza/pull/1916 +* @petryshkaCODE made their first contribution in https://github.com/elizaOS/eliza/pull/1922 +* @0xbeekeeper made their first contribution in https://github.com/elizaOS/eliza/pull/1898 +* @threewebcode made their first contribution in https://github.com/elizaOS/eliza/pull/1937 +* @shlokkhemani made their first contribution in https://github.com/elizaOS/eliza/pull/1944 +* @elpiarthera made their first contribution in https://github.com/elizaOS/eliza/pull/1818 +* @KONFeature made their first contribution in https://github.com/elizaOS/eliza/pull/1810 +* @kesar made their first contribution in https://github.com/elizaOS/eliza/pull/1954 +* @velvet-shark made their first contribution in https://github.com/elizaOS/eliza/pull/1973 +* @Saundr21 made their first contribution in https://github.com/elizaOS/eliza/pull/1960 +* @Laurentiu-Andronache made their first contribution in https://github.com/elizaOS/eliza/pull/1982 +* @Minco-Yuga made their first contribution in https://github.com/elizaOS/eliza/pull/1981 +* @0x-jj made their first contribution in https://github.com/elizaOS/eliza/pull/1968 +* @rekpero made their first contribution in https://github.com/elizaOS/eliza/pull/1966 +* @conache made their first contribution in https://github.com/elizaOS/eliza/pull/1955 +* @mbcse made their first contribution in https://github.com/elizaOS/eliza/pull/1950 +* @sekmet made their first contribution in https://github.com/elizaOS/eliza/pull/1943 +* @iankm made their first contribution in https://github.com/elizaOS/eliza/pull/1418 +* @Rahat-ch made their first contribution in https://github.com/elizaOS/eliza/pull/1621 +* @hazelnutcloud made their first contribution in https://github.com/elizaOS/eliza/pull/1902 +* @kush-alloralabs made their first contribution in https://github.com/elizaOS/eliza/pull/2003 +* @rferrari made their first contribution in https://github.com/elizaOS/eliza/pull/2006 +* @kamalbuilds made their first contribution in https://github.com/elizaOS/eliza/pull/1895 +* @koofree made their first contribution in https://github.com/elizaOS/eliza/pull/2008 +* @RonTuretzky made their first contribution in https://github.com/elizaOS/eliza/pull/1673 +* @wtfsayo made their first contribution in https://github.com/elizaOS/eliza/pull/2016 +* @kristjanpeterson1 made their first contribution in https://github.com/elizaOS/eliza/pull/2011 +* @jonathanykh made their first contribution in https://github.com/elizaOS/eliza/pull/2015 +* @dto-simba made their first contribution in https://github.com/elizaOS/eliza/pull/2014 +* @mitchoz made their first contribution in https://github.com/elizaOS/eliza/pull/1868 +* @WAGMIBRO made their first contribution in https://github.com/elizaOS/eliza/pull/2026 +* @antman1p made their first contribution in https://github.com/elizaOS/eliza/pull/2031 +* @brauliolomeli made their first contribution in https://github.com/elizaOS/eliza/pull/2030 +* @AnonJon made their first contribution in https://github.com/elizaOS/eliza/pull/2044 +* @taofengno1 made their first contribution in https://github.com/elizaOS/eliza/pull/2048 +* @bayological made their first contribution in https://github.com/elizaOS/eliza/pull/2042 +* @tripathiarpan20 made their first contribution in https://github.com/elizaOS/eliza/pull/2022 +* @DanielWahl made their first contribution in https://github.com/elizaOS/eliza/pull/2062 +* @ShuochengWang made their first contribution in https://github.com/elizaOS/eliza/pull/1470 +* @bxngxl made their first contribution in https://github.com/elizaOS/eliza/pull/2069 +* @YANGSEOKWOO made their first contribution in https://github.com/elizaOS/eliza/pull/2074 +* @mameikagou made their first contribution in https://github.com/elizaOS/eliza/pull/2112 +* @web3gh made their first contribution in https://github.com/elizaOS/eliza/pull/2099 +* @Hugo-SEQUIER made their first contribution in https://github.com/elizaOS/eliza/pull/1708 +* @maciejwitowski made their first contribution in https://github.com/elizaOS/eliza/pull/2125 +* @prasadabhishek made their first contribution in https://github.com/elizaOS/eliza/pull/2091 +* @autonome-ai made their first contribution in https://github.com/elizaOS/eliza/pull/2121 +* @pranjallyad made their first contribution in https://github.com/elizaOS/eliza/pull/2101 +* @tudorpintea999 made their first contribution in https://github.com/elizaOS/eliza/pull/2138 +* @w3-bounty made their first contribution in https://github.com/elizaOS/eliza/pull/821 +* @rRogick made their first contribution in https://github.com/elizaOS/eliza/pull/2088 +* @Jonatan-Chaverri made their first contribution in https://github.com/elizaOS/eliza/pull/2029 +* @earlyvibz made their first contribution in https://github.com/elizaOS/eliza/pull/2141 +* @rellfy made their first contribution in https://github.com/elizaOS/eliza/pull/2045 +* @peterjah made their first contribution in https://github.com/elizaOS/eliza/pull/1582 +* @0xalank made their first contribution in https://github.com/elizaOS/eliza/pull/2083 +* @xiangxiecrypto made their first contribution in https://github.com/elizaOS/eliza/pull/2086 +* @ChainRex made their first contribution in https://github.com/elizaOS/eliza/pull/2150 +* @nhodges made their first contribution in https://github.com/elizaOS/eliza/pull/2178 +* @AAAkater made their first contribution in https://github.com/elizaOS/eliza/pull/2177 +* @Riroaki made their first contribution in https://github.com/elizaOS/eliza/pull/2179 +* @zoe27 made their first contribution in https://github.com/elizaOS/eliza/pull/1755 +
+ +#### Full Changelog: https://github.com/elizaOS/eliza/compare/v0.1.7...v0.1.8 + +--- + +## v0.1.7 (January 04, 2025) + +#### What's Changed + +* chore: rebase develop branch by @shakkernerd in https://github.com/elizaOS/eliza/pull/1301 +* no token needed for gaianet by @suicidalgoofy in https://github.com/elizaOS/eliza/pull/1306 +* fix: add lint script for plugin evm and fix lint errors by @nicky-ru in https://github.com/elizaOS/eliza/pull/1171 +* chore: remove TWITTER_COOKIES env var by @ChristopherTrimboli in https://github.com/elizaOS/eliza/pull/1288 +* fix: update turbo to fix "cannot find package" error by @oxSaturn in https://github.com/elizaOS/eliza/pull/1307 +* fix: set default value for cache store by @oxSaturn in https://github.com/elizaOS/eliza/pull/1308 +* fix: support google model. by @oxSaturn in https://github.com/elizaOS/eliza/pull/1310 +* chore: bump agent-twitter-client version to v0.0.17 by @shakkernerd in https://github.com/elizaOS/eliza/pull/1311 +* fix: use MAX_TWEET_LENGTH from setting by @oxSaturn in https://github.com/elizaOS/eliza/pull/1323 +* fix: Add OLLAMA model to the getTokenForProvider class by @amirkhonov in https://github.com/elizaOS/eliza/pull/1338 +* fix: postgres adapter schema by @ryanleecode in https://github.com/elizaOS/eliza/pull/1345 +* Update farcaster client max cast length by @0x330a in https://github.com/elizaOS/eliza/pull/1347 +* chore: revert discord url by @madjin in https://github.com/elizaOS/eliza/pull/1355 +* feat: elizaOS by @lalalune in https://github.com/elizaOS/eliza/pull/1352 +* chore: Merge Develop into Main by @lalalune in https://github.com/elizaOS/eliza/pull/1356 +* Update DOCUMENTATION links to point to https://elizaOS.github.io/eliza/ by @imwylin in https://github.com/elizaOS/eliza/pull/1353 +* feat: change @elizaos/eliza to @elizaos/core by @lalalune in https://github.com/elizaOS/eliza/pull/1357 +* chore: develop -> main, change elizaos/eliza to elizaos/core by @lalalune in https://github.com/elizaOS/eliza/pull/1359 +* chore: New version 0.1.7 alpha.1 by @shakkernerd in https://github.com/elizaOS/eliza/pull/1360 +* chore: bump version to v0.1.7-alpha.1 by @shakkernerd in https://github.com/elizaOS/eliza/pull/1361 +* fix: explicitly set env in each step by @shakkernerd in https://github.com/elizaOS/eliza/pull/1374 +* Update README.md to instructions to start client for chatting with Agent by @onlyzerosonce in https://github.com/elizaOS/eliza/pull/1375 +* docs: Add documentation on pnpm node version by @trbutler4 in https://github.com/elizaOS/eliza/pull/1350 +* chore: change CI trigger by @shakkernerd in https://github.com/elizaOS/eliza/pull/1387 +* chore: require approval for integration test step by @shakkernerd in https://github.com/elizaOS/eliza/pull/1388 +* chore: split tests by @shakkernerd in https://github.com/elizaOS/eliza/pull/1390 +* docs: sample plugin documentation by @ileana-pr in https://github.com/elizaOS/eliza/pull/1385 +* docs: Add "What Did You Get Done This Week? #6" notes by @YoungPhlo in https://github.com/elizaOS/eliza/pull/1399 +* Standardize boolean values and update .env file pattern by @hcaumo in https://github.com/elizaOS/eliza/pull/1392 +* fix: duplicate tweet log by @jasonqindev in https://github.com/elizaOS/eliza/pull/1402 +* fix: postgres adapter settings not being applied by @ryanleecode in https://github.com/elizaOS/eliza/pull/1379 +* fix: image generation using imageSettings by @proteanx in https://github.com/elizaOS/eliza/pull/1371 +* feat: add venice style presets & option to remove watermark (image generation) by @proteanx in https://github.com/elizaOS/eliza/pull/1410 +* chore: allow scoped pr titles by @ryanleecode in https://github.com/elizaOS/eliza/pull/1414 +* chore: format package.json files with prettier by @ryanleecode in https://github.com/elizaOS/eliza/pull/1412 +* fix: Twitter login notifications, incorrect cookie management. by @ChristopherTrimboli in https://github.com/elizaOS/eliza/pull/1330 +* fix: Multiple Agents running at the same time on localhost by @0xCardinalError in https://github.com/elizaOS/eliza/pull/1415 +* fix: tags in templates/examples empty when passed to LLM by @tcm390 in https://github.com/elizaOS/eliza/pull/1305 +* fix: fix imageModelProvider apiKey selection fallback by @UD1sto in https://github.com/elizaOS/eliza/pull/1272 +* chore: update env for plugin-goat by @aeither in https://github.com/elizaOS/eliza/pull/1180 +* docs: Add Tagalog README Translation by @harveyjavier in https://github.com/elizaOS/eliza/pull/1420 +* feat: [Code Scanning] Security Improvements - create codeql.yml by @monilpat in https://github.com/elizaOS/eliza/pull/1314 +* feat: greet first time contributors by @monilpat in https://github.com/elizaOS/eliza/pull/1316 +* feat: add auto PR / issue close after being stale for a certain amount of time by @monilpat in https://github.com/elizaOS/eliza/pull/1317 +* feat: add `only` to booleanFooter by @fyInALT in https://github.com/elizaOS/eliza/pull/1437 +* improve logging in plugin-coinbase by @alessandromazza98 in https://github.com/elizaOS/eliza/pull/1429 +* Update eliza-in-tee.md (fixing typo) by @yerinle in https://github.com/elizaOS/eliza/pull/1428 +* fix: typos by @omahs in https://github.com/elizaOS/eliza/pull/1423 +* docs: 1.Quotation marks are used incorrectly.2.Delete duplicate words by @RiceChuan in https://github.com/elizaOS/eliza/pull/1424 +* feat: client-github retry by @tomguluson92 in https://github.com/elizaOS/eliza/pull/1425 +* feat: (plugin-evm) add alienx chain by @xwxtwd in https://github.com/elizaOS/eliza/pull/1438 +* chore: Keeps README translations synchronized by @0xJord4n in https://github.com/elizaOS/eliza/pull/1432 +* feat: add abstract plugin by @cygaar in https://github.com/elizaOS/eliza/pull/1225 +* fix: Make search feature in twitter client works by @nulLeeKH in https://github.com/elizaOS/eliza/pull/1433 +* fix: fix incorrect link redirection issue by @mhxw in https://github.com/elizaOS/eliza/pull/1443 +* fix: Remove code duplication in getGoals call by @hanyh2004 in https://github.com/elizaOS/eliza/pull/1450 +* Feat: update package.json to add Cleanstart options for new database by @harperaa in https://github.com/elizaOS/eliza/pull/1449 +* feat: suppress initial message from action by @0xPBIT in https://github.com/elizaOS/eliza/pull/1444 +* New default character by @lalalune in https://github.com/elizaOS/eliza/pull/1453 +* feat: added docs for plugin-nft-generation by @vishal-kanna in https://github.com/elizaOS/eliza/pull/1327 +* feat: Add Text to 3D function by @tomguluson92 in https://github.com/elizaOS/eliza/pull/1446 +* fix: update pnpm lock by @odilitime in https://github.com/elizaOS/eliza/pull/1457 +* feat: allow passing secrets through environment by @odilitime in https://github.com/elizaOS/eliza/pull/1454 +* feat: Add ModelConfiguration to Character to enable adjusting temperature, response length & penalties by @peersky in https://github.com/elizaOS/eliza/pull/1455 +* feat: replace `unruggable-core` with `unruggable-sdk` by @remiroyc in https://github.com/elizaOS/eliza/pull/450 +* chore: update defailt character topic test case by @shakkernerd in https://github.com/elizaOS/eliza/pull/1466 +* docs: Fixed Incorrect Model Name in API Integration by @mdqst in https://github.com/elizaOS/eliza/pull/1465 +* feat: Adding plugin for Cronos ZKEVM by @samarth30 in https://github.com/elizaOS/eliza/pull/1464 +* fix: client-twitter: fix ENABLE_ACTION_PROCESSING logic by @zkvm in https://github.com/elizaOS/eliza/pull/1463 +* fix: cronoszkEVM -> cronoszkevm by @shakkernerd in https://github.com/elizaOS/eliza/pull/1468 +* fix(core) make modelConfiguration optional by @Archethect in https://github.com/elizaOS/eliza/pull/1473 +* fix: cleaner interaction prompts in the Twitter plugin by @todorkolev in https://github.com/elizaOS/eliza/pull/1469 +* fix: duplicate twitter post by @tcm390 in https://github.com/elizaOS/eliza/pull/1472 +* chore: Docs update by @madjin in https://github.com/elizaOS/eliza/pull/1476 +* Fetch timeline for followed accounts via Twitter client methods by @ag-wnl in https://github.com/elizaOS/eliza/pull/1475 +* chore: Do not consider self tweets when evaluating actions by @ag-wnl in https://github.com/elizaOS/eliza/pull/1477 +* fix: client-discord chat_with_attachment action remove hard coded model, allow any tiktoken model by @harperaa in https://github.com/elizaOS/eliza/pull/1408 +* feat: Enhance client direct by @shakkernerd in https://github.com/elizaOS/eliza/pull/1479 +* feat: improve chat formatting line breaks by @swizzmagik in https://github.com/elizaOS/eliza/pull/1483 +* feat: add image features to react chat client by @0xPBIT in https://github.com/elizaOS/eliza/pull/1481 +* feat: Twitter Post Action Implementation by @0xPBIT in https://github.com/elizaOS/eliza/pull/1422 +* feat: Add agentic JSDoc generation by @Ed-Marcavage in https://github.com/elizaOS/eliza/pull/1343 +* feat: add readme for ton plugin by @chandiniv1 in https://github.com/elizaOS/eliza/pull/1496 +* feat: add readme for websearch plugin by @chandiniv1 in https://github.com/elizaOS/eliza/pull/1494 +* chore: fix typos by @qwdsds in https://github.com/elizaOS/eliza/pull/1489 +* docs: Fixed a small syntax issue in the ModelClass Update fine-tuning.md by @mdqst in https://github.com/elizaOS/eliza/pull/1493 +* add CODE_OF_CONDUCT.md by @nulLeeKH in https://github.com/elizaOS/eliza/pull/1487 +* fix: remove `type` when import from `elizaos` by @tomguluson92 in https://github.com/elizaOS/eliza/pull/1492 +* fix: improve Twitter client dry run mode and configuration logging by @e-fu in https://github.com/elizaOS/eliza/pull/1498 +* feat: extend parseBooleanFromText function with additional boolean values by @shakkernerd in https://github.com/elizaOS/eliza/pull/1501 +* docs: bad links in eliza-in-tee.md by @janeyJo in https://github.com/elizaOS/eliza/pull/1500 +* fix: improve client type identification with test coverage by @ShaneOxM in https://github.com/elizaOS/eliza/pull/1490 +* feat: handle long tweet by @tcm390 in https://github.com/elizaOS/eliza/pull/1339 +* chore: general code fixes/clean up by @shakkernerd in https://github.com/elizaOS/eliza/pull/1513 +* add fuel plugin by @Dhaiwat10 in https://github.com/elizaOS/eliza/pull/1512 +* fix: add required incremental option and remove invalid typescript configuration by @ShaneOxM in https://github.com/elizaOS/eliza/pull/1485 +* Clear `/cache/` in `clean.sh` script by @timolegros in https://github.com/elizaOS/eliza/pull/1508 +* chore: Revert "Clear `/cache/` in `clean.sh` script" by @shakkernerd in https://github.com/elizaOS/eliza/pull/1515 +* chore: remove cache in core by @shakkernerd in https://github.com/elizaOS/eliza/pull/1516 +* feat: Add the FerePro plugin by @Rudrakc in https://github.com/elizaOS/eliza/pull/1502 +* fix: Update speech.ts by @y4my4my4m in https://github.com/elizaOS/eliza/pull/1312 +* fix: swap and bridge actions of plugin-evm by @pythonberg1997 in https://github.com/elizaOS/eliza/pull/1456 +* fix: client-twitter lowerCase bug and environment clean up (+lint fixes, and TWITTER_SEARCH_ENABLE double start fix) by @odilitime in https://github.com/elizaOS/eliza/pull/1514 +* feat: use OPENAI_API_URL from env to support custom OpenAI API endpoint by @imtms in https://github.com/elizaOS/eliza/pull/1522 +* fix: handle long tweet in utils by @oxSaturn in https://github.com/elizaOS/eliza/pull/1520 +* feat: add /:agentId/speak endpoint for text-to-speech functionality by @HowieDuhzit in https://github.com/elizaOS/eliza/pull/1528 +* Fix: Update package.json with build-docker command to match the dockerfile command by @vanshika-srivastava in https://github.com/elizaOS/eliza/pull/1527 +* feat: Add Livepeer Image Provider by @Titan-Node in https://github.com/elizaOS/eliza/pull/1525 +* feat: Add Custom System Prompt Support for plugin-image-generation by @tsubasakong in https://github.com/elizaOS/eliza/pull/839 +* chore: remove unused vars by @odilitime in https://github.com/elizaOS/eliza/pull/1529 +* feat: add avalanche plugin by @snow-farmer in https://github.com/elizaOS/eliza/pull/842 +* feat: Add GitBook Plugin provider by @azep-ninja in https://github.com/elizaOS/eliza/pull/1126 +* chore: bump version to v.0.1.7-alpha.2 by @shakkernerd in https://github.com/elizaOS/eliza/pull/1530 +* chore: 1.7.0 prep, develop => main by @odilitime in https://github.com/elizaOS/eliza/pull/1519 +* feat: add autoscroll chat client by @swizzmagik in https://github.com/elizaOS/eliza/pull/1538 +* docs: Polish readme by @yanushevitz in https://github.com/elizaOS/eliza/pull/1537 +* Update README_CN - Model Configuration by @RedHorse823 in https://github.com/elizaOS/eliza/pull/1535 +* docs: fix grammar/typos in README by @SK1989sL in https://github.com/elizaOS/eliza/pull/1534 +* Fix: make twitter engagement criteria in prompt more focused on relevance to topics/interests/character by @e-fu in https://github.com/elizaOS/eliza/pull/1533 +* feat: improve stale pr/issue messages by @monilpat in https://github.com/elizaOS/eliza/pull/1540 +* fix: twitter usernames can start with numbers by @odilitime in https://github.com/elizaOS/eliza/pull/1541 +* Fix jsdoc automation build issue & parametrize PR branch target by @Ed-Marcavage in https://github.com/elizaOS/eliza/pull/1547 +* fix: Telegram Bad Request: can't parse entities by @azep-ninja in https://github.com/elizaOS/eliza/pull/1546 +* Chore: Refactor Imports. Improve PR Template by @mgunnin in https://github.com/elizaOS/eliza/pull/1545 +* docs: Add JSDoc documentation by @madjin in https://github.com/elizaOS/eliza/pull/1549 +* docs: Add JSDoc documentation by @madjin in https://github.com/elizaOS/eliza/pull/1548 +* feat: add theme toggle functionality with dark and light mode support by @zkfriendly in https://github.com/elizaOS/eliza/pull/1555 +* docs: Add "What Did You Get Done This Week? #7" notes by @YoungPhlo in https://github.com/elizaOS/eliza/pull/1559 +* feat: (example) script to show how to add system prompt and templates to eliza with character file by @HashWarlock in https://github.com/elizaOS/eliza/pull/1554 +* feat: parse files through prettier by @shakkernerd in https://github.com/elizaOS/eliza/pull/1573 +* fix: init 768 dimension in database for gaianet by @L-jasmine in https://github.com/elizaOS/eliza/pull/1572 +* docs: overview and preview of technical report by @tomguluson92 in https://github.com/elizaOS/eliza/pull/1574 +* feat: add TEE support for plugin-env by @samuveth in https://github.com/elizaOS/eliza/pull/1571 +* Update agents.md - minor update by @yorkerhodes3 in https://github.com/elizaOS/eliza/pull/1579 +* refactor(plugin-conflux): output detailed invalid content by @bendanzhentan in https://github.com/elizaOS/eliza/pull/1602 +* fix: tweak transfer template of plugin-evm by @zkvm in https://github.com/elizaOS/eliza/pull/1604 +* feat: add experimental telemetry model option by @zhourunlai in https://github.com/elizaOS/eliza/pull/1603 +* docs: README.md files for plugins by @ileana-pr in https://github.com/elizaOS/eliza/pull/1601 +* feat: use tavily sdk by @zhourunlai in https://github.com/elizaOS/eliza/pull/1599 +* docs: add readme spanish version in docs by @salazarsebas in https://github.com/elizaOS/eliza/pull/1594 +* feat: add docs for image generation plugin by @chandiniv1 in https://github.com/elizaOS/eliza/pull/1591 +* docs: fix Contributing Guide by @0xFloyd in https://github.com/elizaOS/eliza/pull/1589 +* feat: update volcengine model by @zhourunlai in https://github.com/elizaOS/eliza/pull/1586 +* fix: update plugin-solana workspace dependencies by @shakkernerd in https://github.com/elizaOS/eliza/pull/1609 +* fix: Google API Key not passing from character file by @azep-ninja in https://github.com/elizaOS/eliza/pull/1607 +* add plugins to the key components section of the faq by @cole-gillespie in https://github.com/elizaOS/eliza/pull/1614 +* add an client-direct endpoint to get memories by agentid and roomid by @treppers in https://github.com/elizaOS/eliza/pull/1581 +* fix: Double Responses from Continue Action by @azep-ninja in https://github.com/elizaOS/eliza/pull/1606 +* Fix double spaced tweets in Post.ts by @suicidalgoofy in https://github.com/elizaOS/eliza/pull/1626 +* feat: Select a transcription provider based on the character settings. by @tcm390 in https://github.com/elizaOS/eliza/pull/1625 +* fix: turbo deps for plugin-evm by @odilitime in https://github.com/elizaOS/eliza/pull/1627 +* feat: Twitter Spaces Integration by @slkzgm in https://github.com/elizaOS/eliza/pull/1550 +* fix: corrected path for image upload by @ShreyGanatra in https://github.com/elizaOS/eliza/pull/1632 +* chore: update viem dependency version in plugin-evm and plugin-goat by @bertux in https://github.com/elizaOS/eliza/pull/1637 +* fix: lockfile wasn't updated after dependency + bring viem to root level package.json by @monilpat in https://github.com/elizaOS/eliza/pull/1642 +* fix: Fix bug in plugin-bootstrap/src/evaluators/facts.ts by @metakai1 in https://github.com/elizaOS/eliza/pull/1648 +* Add README_AR.md by @xMariem in https://github.com/elizaOS/eliza/pull/1634 +* Added Hungarian README by @mdominikd in https://github.com/elizaOS/eliza/pull/1645 +* fix: activate web-search plugin in agents/ by @cmadaanaya in https://github.com/elizaOS/eliza/pull/1577 +* fix: 1634 fix image description service by @nusk0 in https://github.com/elizaOS/eliza/pull/1667 +* fix: Seperated imageModelProvider and imageVisionModelProvider for ImageDescriptioServices by @denizekiz in https://github.com/elizaOS/eliza/pull/1664 +* fix: Update Supabase schema.sql by @0xRider in https://github.com/elizaOS/eliza/pull/1660 +* feat: add docs for story plugin by @chandiniv1 in https://github.com/elizaOS/eliza/pull/1672 +* fix: add web search to agent by @odilitime in https://github.com/elizaOS/eliza/pull/1676 +* fix: 1668 fix twitter image link by @nusk0 in https://github.com/elizaOS/eliza/pull/1671 +* chore(docs): rename ai16z/eliza to elizaOS/eliza by @9547 in https://github.com/elizaOS/eliza/pull/1679 +* fix: smoke tests by @shakkernerd in https://github.com/elizaOS/eliza/pull/1695 +* feat: Plugin sui support for suiprivatekey0x account by @v1xingyue in https://github.com/elizaOS/eliza/pull/1693 +* docs: update README.md spelling by @SK1989sL in https://github.com/elizaOS/eliza/pull/1690 +* chore: twitter username validation message by @daizhengxue in https://github.com/elizaOS/eliza/pull/1698 +* Update README_KOR.md: Added missing sections and improved Korean translations for clarity by @gnujoow in https://github.com/elizaOS/eliza/pull/1683 +* fix(core): trimTokens no need to await by @9547 in https://github.com/elizaOS/eliza/pull/1686 +* chore: update web search plugin export by @affaan-m in https://github.com/elizaOS/eliza/pull/1688 +* EVM plugin wallet provider and transfer action improvements by @nicky-ru in https://github.com/elizaOS/eliza/pull/1701 +* fix: Url fix in imagedescriptionservice by @denizekiz in https://github.com/elizaOS/eliza/pull/1696 +* feat: improve GOAT integration by allowing tool calling when using generateText by @0xaguspunk in https://github.com/elizaOS/eliza/pull/1403 +* fix: postgres-adapter - remove nonsensical schema check by @ryanleecode in https://github.com/elizaOS/eliza/pull/1377 +* fix: disable trust provider for PostGres db by @swizzmagik in https://github.com/elizaOS/eliza/pull/1536 +* fix: multiple web search import in agent by @shakkernerd in https://github.com/elizaOS/eliza/pull/1718 +* chore(zksync-era): rm not used imports by @9547 in https://github.com/elizaOS/eliza/pull/1716 +* fix: add echochambers to agent by @odilitime in https://github.com/elizaOS/eliza/pull/1719 +* docs: update faq.md by @TresFlames in https://github.com/elizaOS/eliza/pull/1746 +* docs: update README_KOR.md by @osrm in https://github.com/elizaOS/eliza/pull/1739 +* docs: add Serbian README translation by @marsic3 in https://github.com/elizaOS/eliza/pull/1757 +* fix: Support for Non-OpenAI Models in Token Trimming by @tcm390 in https://github.com/elizaOS/eliza/pull/1605 +* fix: build lint errors by @shakkernerd in https://github.com/elizaOS/eliza/pull/1759 +* fix(client): improve Windows compatibility for Vite dev server by @gmh5225 in https://github.com/elizaOS/eliza/pull/1760 +* feat: use custom conditions for live monorepo types by @ryanleecode in https://github.com/elizaOS/eliza/pull/1365 +* feat: support for eternalai provider can write request/response log info by @genesis-0000 in https://github.com/elizaOS/eliza/pull/1740 +* feat(plugin-near): replace console.log to eliza logger by @sinecose in https://github.com/elizaOS/eliza/pull/1745 +* Agentic Eliza Plugin Documenter - Multilingual (e.g., English, Spanish, French) by @Ed-Marcavage in https://github.com/elizaOS/eliza/pull/1675 +* ๐Ÿ› fix plugins.md formatting for docs with dockerized docs validation by @marcellodesales in https://github.com/elizaOS/eliza/pull/1722 +* fix: line break handling in chat by @swizzmagik in https://github.com/elizaOS/eliza/pull/1784 +* chore: remove unused import and var by @shakkernerd in https://github.com/elizaOS/eliza/pull/1797 +* bug : Removed FerePro plugin by @Rudrakc in https://github.com/elizaOS/eliza/pull/1795 +* fix(client-slack): implement Media type properties in message attachments #1384 by @AIFlowML in https://github.com/elizaOS/eliza/pull/1741 +* fix(postgres): Handle vector extension creation properly (#1561) by @AIFlowML in https://github.com/elizaOS/eliza/pull/1743 +* Revert "fix(postgres): Handle vector extension creation properly (#1561)" by @shakkernerd in https://github.com/elizaOS/eliza/pull/1799 +* fix: standardize ACTION_INTERVAL unit to minutes in twitter client by @sin-bufan in https://github.com/elizaOS/eliza/pull/1738 +* refactor: client api by @aalimsahin in https://github.com/elizaOS/eliza/pull/1713 +* feat: Simulate discord typing while generating a response by @dxlliv in https://github.com/elizaOS/eliza/pull/1712 +* fix: bugfix. the port 80 is not listening use 3000 by @jmikedupont2 in https://github.com/elizaOS/eliza/pull/1616 +* chore: install with no frozen-lockfile flag by @shakkernerd in https://github.com/elizaOS/eliza/pull/1802 +* fix: generation tests for trimTokens by @shakkernerd in https://github.com/elizaOS/eliza/pull/1803 +* chore: bump version to v.0.1.7 by @shakkernerd in https://github.com/elizaOS/eliza/pull/1804 +* chore: Develop => main for 1.7.0 release by @odilitime in https://github.com/elizaOS/eliza/pull/1717 + +#### New Contributors + +
+View New Contributors +* @suicidalgoofy made their first contribution in https://github.com/elizaOS/eliza/pull/1306 +* @ChristopherTrimboli made their first contribution in https://github.com/elizaOS/eliza/pull/1288 +* @amirkhonov made their first contribution in https://github.com/elizaOS/eliza/pull/1338 +* @ryanleecode made their first contribution in https://github.com/elizaOS/eliza/pull/1345 +* @0x330a made their first contribution in https://github.com/elizaOS/eliza/pull/1347 +* @imwylin made their first contribution in https://github.com/elizaOS/eliza/pull/1353 +* @onlyzerosonce made their first contribution in https://github.com/elizaOS/eliza/pull/1375 +* @trbutler4 made their first contribution in https://github.com/elizaOS/eliza/pull/1350 +* @hcaumo made their first contribution in https://github.com/elizaOS/eliza/pull/1392 +* @jasonqindev made their first contribution in https://github.com/elizaOS/eliza/pull/1402 +* @UD1sto made their first contribution in https://github.com/elizaOS/eliza/pull/1272 +* @aeither made their first contribution in https://github.com/elizaOS/eliza/pull/1180 +* @harveyjavier made their first contribution in https://github.com/elizaOS/eliza/pull/1420 +* @fyInALT made their first contribution in https://github.com/elizaOS/eliza/pull/1437 +* @alessandromazza98 made their first contribution in https://github.com/elizaOS/eliza/pull/1429 +* @yerinle made their first contribution in https://github.com/elizaOS/eliza/pull/1428 +* @omahs made their first contribution in https://github.com/elizaOS/eliza/pull/1423 +* @RiceChuan made their first contribution in https://github.com/elizaOS/eliza/pull/1424 +* @0xJord4n made their first contribution in https://github.com/elizaOS/eliza/pull/1432 +* @nulLeeKH made their first contribution in https://github.com/elizaOS/eliza/pull/1433 +* @mhxw made their first contribution in https://github.com/elizaOS/eliza/pull/1443 +* @hanyh2004 made their first contribution in https://github.com/elizaOS/eliza/pull/1450 +* @harperaa made their first contribution in https://github.com/elizaOS/eliza/pull/1449 +* @0xPBIT made their first contribution in https://github.com/elizaOS/eliza/pull/1444 +* @vishal-kanna made their first contribution in https://github.com/elizaOS/eliza/pull/1327 +* @remiroyc made their first contribution in https://github.com/elizaOS/eliza/pull/450 +* @mdqst made their first contribution in https://github.com/elizaOS/eliza/pull/1465 +* @samarth30 made their first contribution in https://github.com/elizaOS/eliza/pull/1464 +* @zkvm made their first contribution in https://github.com/elizaOS/eliza/pull/1463 +* @Archethect made their first contribution in https://github.com/elizaOS/eliza/pull/1473 +* @todorkolev made their first contribution in https://github.com/elizaOS/eliza/pull/1469 +* @ag-wnl made their first contribution in https://github.com/elizaOS/eliza/pull/1475 +* @swizzmagik made their first contribution in https://github.com/elizaOS/eliza/pull/1483 +* @Ed-Marcavage made their first contribution in https://github.com/elizaOS/eliza/pull/1343 +* @chandiniv1 made their first contribution in https://github.com/elizaOS/eliza/pull/1496 +* @qwdsds made their first contribution in https://github.com/elizaOS/eliza/pull/1489 +* @e-fu made their first contribution in https://github.com/elizaOS/eliza/pull/1498 +* @janeyJo made their first contribution in https://github.com/elizaOS/eliza/pull/1500 +* @ShaneOxM made their first contribution in https://github.com/elizaOS/eliza/pull/1490 +* @Dhaiwat10 made their first contribution in https://github.com/elizaOS/eliza/pull/1512 +* @timolegros made their first contribution in https://github.com/elizaOS/eliza/pull/1508 +* @Rudrakc made their first contribution in https://github.com/elizaOS/eliza/pull/1502 +* @y4my4my4m made their first contribution in https://github.com/elizaOS/eliza/pull/1312 +* @pythonberg1997 made their first contribution in https://github.com/elizaOS/eliza/pull/1456 +* @imtms made their first contribution in https://github.com/elizaOS/eliza/pull/1522 +* @HowieDuhzit made their first contribution in https://github.com/elizaOS/eliza/pull/1528 +* @vanshika-srivastava made their first contribution in https://github.com/elizaOS/eliza/pull/1527 +* @snow-farmer made their first contribution in https://github.com/elizaOS/eliza/pull/842 +* @yanushevitz made their first contribution in https://github.com/elizaOS/eliza/pull/1537 +* @RedHorse823 made their first contribution in https://github.com/elizaOS/eliza/pull/1535 +* @SK1989sL made their first contribution in https://github.com/elizaOS/eliza/pull/1534 +* @mgunnin made their first contribution in https://github.com/elizaOS/eliza/pull/1545 +* @zkfriendly made their first contribution in https://github.com/elizaOS/eliza/pull/1555 +* @yorkerhodes3 made their first contribution in https://github.com/elizaOS/eliza/pull/1579 +* @bendanzhentan made their first contribution in https://github.com/elizaOS/eliza/pull/1602 +* @zhourunlai made their first contribution in https://github.com/elizaOS/eliza/pull/1603 +* @salazarsebas made their first contribution in https://github.com/elizaOS/eliza/pull/1594 +* @0xFloyd made their first contribution in https://github.com/elizaOS/eliza/pull/1589 +* @cole-gillespie made their first contribution in https://github.com/elizaOS/eliza/pull/1614 +* @treppers made their first contribution in https://github.com/elizaOS/eliza/pull/1581 +* @slkzgm made their first contribution in https://github.com/elizaOS/eliza/pull/1550 +* @ShreyGanatra made their first contribution in https://github.com/elizaOS/eliza/pull/1632 +* @bertux made their first contribution in https://github.com/elizaOS/eliza/pull/1637 +* @metakai1 made their first contribution in https://github.com/elizaOS/eliza/pull/1648 +* @xMariem made their first contribution in https://github.com/elizaOS/eliza/pull/1634 +* @mdominikd made their first contribution in https://github.com/elizaOS/eliza/pull/1645 +* @cmadaanaya made their first contribution in https://github.com/elizaOS/eliza/pull/1577 +* @nusk0 made their first contribution in https://github.com/elizaOS/eliza/pull/1667 +* @0xRider made their first contribution in https://github.com/elizaOS/eliza/pull/1660 +* @daizhengxue made their first contribution in https://github.com/elizaOS/eliza/pull/1698 +* @gnujoow made their first contribution in https://github.com/elizaOS/eliza/pull/1683 +* @affaan-m made their first contribution in https://github.com/elizaOS/eliza/pull/1688 +* @TresFlames made their first contribution in https://github.com/elizaOS/eliza/pull/1746 +* @osrm made their first contribution in https://github.com/elizaOS/eliza/pull/1739 +* @marsic3 made their first contribution in https://github.com/elizaOS/eliza/pull/1757 +* @gmh5225 made their first contribution in https://github.com/elizaOS/eliza/pull/1760 +* @sinecose made their first contribution in https://github.com/elizaOS/eliza/pull/1745 +* @marcellodesales made their first contribution in https://github.com/elizaOS/eliza/pull/1722 +* @aalimsahin made their first contribution in https://github.com/elizaOS/eliza/pull/1713 +* @dxlliv made their first contribution in https://github.com/elizaOS/eliza/pull/1712 +* @jmikedupont2 made their first contribution in https://github.com/elizaOS/eliza/pull/1616 +
+ +#### Full Changelog: https://github.com/elizaOS/eliza/compare/v0.1.6...v0.1.7 + +--- + +## v0.1.7-alpha.2 (December 28, 2024) + +#### Features + +- New default character ([#1453](https://github.com/elizaOS/eliza/pull/1453)) +- Handle long tweets ([#1339](https://github.com/elizaOS/eliza/pull/1339), [#1520](https://github.com/elizaOS/eliza/pull/1520)) +- Custom System Prompt Support for plugin-image-generation ([#839](https://github.com/elizaOS/eliza/pull/839)) +- Add /:agentId/speak endpoint for text-to-speech ([#1528](https://github.com/elizaOS/eliza/pull/1528)) +- Add Livepeer Image Provider ([#1525](https://github.com/elizaOS/eliza/pull/1525)) +- Add Text to 3D function ([#1446](https://github.com/elizaOS/eliza/pull/1446)) +- Add GitBook Plugin provider ([#1126](https://github.com/elizaOS/eliza/pull/1126)) +- Add abstract plugin ([#1225](https://github.com/elizaOS/eliza/pull/1225)) +- Add avalanche plugin ([#842](https://github.com/elizaOS/eliza/pull/842)) +- Add FerePro plugin ([#1502](https://github.com/elizaOS/eliza/pull/1502)) +- Add Cronos ZKEVM plugin ([#1464](https://github.com/elizaOS/eliza/pull/1464)) +- Add plugin for Cronos ZKEVM ([#1464](https://github.com/elizaOS/eliza/pull/1464)) +- Add Venice style presets & option to remove watermark ([#1410](https://github.com/elizaOS/eliza/pull/1410)) +- Client-GitHub retry ([#1425](https://github.com/elizaOS/eliza/pull/1425)) +- Add ModelConfiguration to Character ([#1455](https://github.com/elizaOS/eliza/pull/1455)) +- Use OPENAI_API_URL for custom API endpoint ([#1522](https://github.com/elizaOS/eliza/pull/1522)) + +#### Fixes + +- Multiple Agents running at the same time on localhost ([#1415](https://github.com/elizaOS/eliza/pull/1415)) +- tags in templates/examples empty when passed to LLM ([#1305](https://github.com/elizaOS/eliza/pull/1305)) +- Postgres adapter settings not being applied ([#1379](https://github.com/elizaOS/eliza/pull/1379)) +- ImageModelProvider API key selection fallback ([#1272](https://github.com/elizaOS/eliza/pull/1272)) +- Swap and bridge actions in plugin-evm ([#1456](https://github.com/elizaOS/eliza/pull/1456)) +- Twitter search feature ([#1433](https://github.com/elizaOS/eliza/pull/1433)) +- Twitter dry run mode and configuration logging ([#1498](https://github.com/elizaOS/eliza/pull/1498)) +- Fix Twitter plugin interaction prompts ([#1469](https://github.com/elizaOS/eliza/pull/1469)) +- LowerCase bug and environment cleanup in Twitter client ([#1514](https://github.com/elizaOS/eliza/pull/1514)) +- Cleaner prompts in Twitter plugin ([#1472](https://github.com/elizaOS/eliza/pull/1472)) +- Twitter login notifications, incorrect cookie management ([#1330](https://github.com/elizaOS/eliza/pull/1330)) +- Duplicate tweet log ([#1402](https://github.com/elizaOS/eliza/pull/1402)) +- Explicitly set env in each step ([#1374](https://github.com/elizaOS/eliza/pull/1374)) +- Incorrect link redirection issue ([#1443](https://github.com/elizaOS/eliza/pull/1443)) +- Remove code duplication in getGoals call ([#1450](https://github.com/elizaOS/eliza/pull/1450)) +- Client type identification with test coverage ([#1490](https://github.com/elizaOS/eliza/pull/1490)) +- Required incremental option in TypeScript configuration ([#1485](https://github.com/elizaOS/eliza/pull/1485)) + +#### Complete Changelog + +* fix: explicitly set env in each step by @shakkernerd in https://github.com/elizaOS/eliza/pull/1374 +* Update README.md to instructions to start client for chatting with Agent by @onlyzerosonce in https://github.com/elizaOS/eliza/pull/1375 +* docs: Add documentation on pnpm node version by @trbutler4 in https://github.com/elizaOS/eliza/pull/1350 +* chore: change CI trigger by @shakkernerd in https://github.com/elizaOS/eliza/pull/1387 +* chore: require approval for integration test step by @shakkernerd in https://github.com/elizaOS/eliza/pull/1388 +* chore: split tests by @shakkernerd in https://github.com/elizaOS/eliza/pull/1390 +* docs: sample plugin documentation by @ileana-pr in https://github.com/elizaOS/eliza/pull/1385 +* docs: Add "What Did You Get Done This Week? #6" notes by @YoungPhlo in https://github.com/elizaOS/eliza/pull/1399 +* Standardize boolean values and update .env file pattern by @hcaumo in https://github.com/elizaOS/eliza/pull/1392 +* fix: duplicate tweet log by @jasonqindev in https://github.com/elizaOS/eliza/pull/1402 +* fix: postgres adapter settings not being applied by @ryanleecode in https://github.com/elizaOS/eliza/pull/1379 +* fix: image generation using imageSettings by @proteanx in https://github.com/elizaOS/eliza/pull/1371 +* feat: add venice style presets & option to remove watermark (image generation) by @proteanx in https://github.com/elizaOS/eliza/pull/1410 +* chore: allow scoped pr titles by @ryanleecode in https://github.com/elizaOS/eliza/pull/1414 +* chore: format package.json files with prettier by @ryanleecode in https://github.com/elizaOS/eliza/pull/1412 +* fix: Twitter login notifications, incorrect cookie management. by @ChristopherTrimboli in https://github.com/elizaOS/eliza/pull/1330 +* fix: Multiple Agents running at the same time on localhost by @0xCardinalError in https://github.com/elizaOS/eliza/pull/1415 +* fix: tags in templates/examples empty when passed to LLM by @tcm390 in https://github.com/elizaOS/eliza/pull/1305 +* fix: fix imageModelProvider apiKey selection fallback by @UD1sto in https://github.com/elizaOS/eliza/pull/1272 +* chore: update env for plugin-goat by @aeither in https://github.com/elizaOS/eliza/pull/1180 +* docs: Add Tagalog README Translation by @harveyjavier in https://github.com/elizaOS/eliza/pull/1420 +* feat: [Code Scanning] Security Improvements - create codeql.yml by @monilpat in https://github.com/elizaOS/eliza/pull/1314 +* feat: greet first time contributors by @monilpat in https://github.com/elizaOS/eliza/pull/1316 +* feat: add auto PR / issue close after being stale for a certain amount of time by @monilpat in https://github.com/elizaOS/eliza/pull/1317 +* feat: add `only` to booleanFooter by @fyInALT in https://github.com/elizaOS/eliza/pull/1437 +* improve logging in plugin-coinbase by @alessandromazza98 in https://github.com/elizaOS/eliza/pull/1429 +* Update eliza-in-tee.md (fixing typo) by @yerinle in https://github.com/elizaOS/eliza/pull/1428 +* fix: typos by @omahs in https://github.com/elizaOS/eliza/pull/1423 +* docs: 1.Quotation marks are used incorrectly.2.Delete duplicate words by @RiceChuan in https://github.com/elizaOS/eliza/pull/1424 +* feat: client-github retry by @tomguluson92 in https://github.com/elizaOS/eliza/pull/1425 +* feat: (plugin-evm) add alienx chain by @xwxtwd in https://github.com/elizaOS/eliza/pull/1438 +* chore: Keeps README translations synchronized by @0xJord4n in https://github.com/elizaOS/eliza/pull/1432 +* feat: add abstract plugin by @cygaar in https://github.com/elizaOS/eliza/pull/1225 +* fix: Make search feature in twitter client works by @nulLeeKH in https://github.com/elizaOS/eliza/pull/1433 +* fix: fix incorrect link redirection issue by @mhxw in https://github.com/elizaOS/eliza/pull/1443 +* fix: Remove code duplication in getGoals call by @hanyh2004 in https://github.com/elizaOS/eliza/pull/1450 +* Feat: update package.json to add Cleanstart options for new database by @harperaa in https://github.com/elizaOS/eliza/pull/1449 +* feat: suppress initial message from action by @0xPBIT in https://github.com/elizaOS/eliza/pull/1444 +* New default character by @lalalune in https://github.com/elizaOS/eliza/pull/1453 +* feat: added docs for plugin-nft-generation by @vishal-kanna in https://github.com/elizaOS/eliza/pull/1327 +* feat: Add Text to 3D function by @tomguluson92 in https://github.com/elizaOS/eliza/pull/1446 +* fix: update pnpm lock by @odilitime in https://github.com/elizaOS/eliza/pull/1457 +* feat: allow passing secrets through environment by @odilitime in https://github.com/elizaOS/eliza/pull/1454 +* feat: Add ModelConfiguration to Character to enable adjusting temperature, response length & penalties by @peersky in https://github.com/elizaOS/eliza/pull/1455 +* feat: replace `unruggable-core` with `unruggable-sdk` by @remiroyc in https://github.com/elizaOS/eliza/pull/450 +* chore: update defailt character topic test case by @shakkernerd in https://github.com/elizaOS/eliza/pull/1466 +* docs: Fixed Incorrect Model Name in API Integration by @mdqst in https://github.com/elizaOS/eliza/pull/1465 +* feat: Adding plugin for Cronos ZKEVM by @samarth30 in https://github.com/elizaOS/eliza/pull/1464 +* fix: client-twitter: fix ENABLE_ACTION_PROCESSING logic by @zkvm in https://github.com/elizaOS/eliza/pull/1463 +* fix: cronoszkEVM -> cronoszkevm by @shakkernerd in https://github.com/elizaOS/eliza/pull/1468 +* fix(core) make modelConfiguration optional by @Archethect in https://github.com/elizaOS/eliza/pull/1473 +* fix: cleaner interaction prompts in the Twitter plugin by @todorkolev in https://github.com/elizaOS/eliza/pull/1469 +* fix: duplicate twitter post by @tcm390 in https://github.com/elizaOS/eliza/pull/1472 +* chore: Docs update by @madjin in https://github.com/elizaOS/eliza/pull/1476 +* Fetch timeline for followed accounts via Twitter client methods by @ag-wnl in https://github.com/elizaOS/eliza/pull/1475 +* chore: Do not consider self tweets when evaluating actions by @ag-wnl in https://github.com/elizaOS/eliza/pull/1477 +* fix: client-discord chat_with_attachment action remove hard coded model, allow any tiktoken model by @harperaa in https://github.com/elizaOS/eliza/pull/1408 +* feat: Enhance client direct by @shakkernerd in https://github.com/elizaOS/eliza/pull/1479 +* feat: improve chat formatting line breaks by @swizzmagik in https://github.com/elizaOS/eliza/pull/1483 +* feat: add image features to react chat client by @0xPBIT in https://github.com/elizaOS/eliza/pull/1481 +* feat: Twitter Post Action Implementation by @0xPBIT in https://github.com/elizaOS/eliza/pull/1422 +* feat: Add agentic JSDoc generation by @Ed-Marcavage in https://github.com/elizaOS/eliza/pull/1343 +* feat: add readme for ton plugin by @chandiniv1 in https://github.com/elizaOS/eliza/pull/1496 +* feat: add readme for websearch plugin by @chandiniv1 in https://github.com/elizaOS/eliza/pull/1494 +* chore: fix typos by @qwdsds in https://github.com/elizaOS/eliza/pull/1489 +* docs: Fixed a small syntax issue in the ModelClass Update fine-tuning.md by @mdqst in https://github.com/elizaOS/eliza/pull/1493 +* add CODE_OF_CONDUCT.md by @nulLeeKH in https://github.com/elizaOS/eliza/pull/1487 +* fix: remove `type` when import from `elizaos` by @tomguluson92 in https://github.com/elizaOS/eliza/pull/1492 +* fix: improve Twitter client dry run mode and configuration logging by @e-fu in https://github.com/elizaOS/eliza/pull/1498 +* feat: extend parseBooleanFromText function with additional boolean values by @shakkernerd in https://github.com/elizaOS/eliza/pull/1501 +* docs: bad links in eliza-in-tee.md by @janeyJo in https://github.com/elizaOS/eliza/pull/1500 +* fix: improve client type identification with test coverage by @ShaneOxM in https://github.com/elizaOS/eliza/pull/1490 +* feat: handle long tweet by @tcm390 in https://github.com/elizaOS/eliza/pull/1339 +* chore: general code fixes/clean up by @shakkernerd in https://github.com/elizaOS/eliza/pull/1513 +* add fuel plugin by @Dhaiwat10 in https://github.com/elizaOS/eliza/pull/1512 +* fix: add required incremental option and remove invalid typescript configuration by @ShaneOxM in https://github.com/elizaOS/eliza/pull/1485 +* Clear `/cache/` in `clean.sh` script by @timolegros in https://github.com/elizaOS/eliza/pull/1508 +* chore: Revert "Clear `/cache/` in `clean.sh` script" by @shakkernerd in https://github.com/elizaOS/eliza/pull/1515 +* chore: remove cache in core by @shakkernerd in https://github.com/elizaOS/eliza/pull/1516 +* feat: Add the FerePro plugin by @Rudrakc in https://github.com/elizaOS/eliza/pull/1502 +* fix: Update speech.ts by @y4my4my4m in https://github.com/elizaOS/eliza/pull/1312 +* fix: swap and bridge actions of plugin-evm by @pythonberg1997 in https://github.com/elizaOS/eliza/pull/1456 +* fix: client-twitter lowerCase bug and environment clean up (+lint fixes, and TWITTER_SEARCH_ENABLE double start fix) by @odilitime in https://github.com/elizaOS/eliza/pull/1514 +* feat: use OPENAI_API_URL from env to support custom OpenAI API endpoint by @imtms in https://github.com/elizaOS/eliza/pull/1522 +* fix: handle long tweet in utils by @oxSaturn in https://github.com/elizaOS/eliza/pull/1520 +* feat: add /:agentId/speak endpoint for text-to-speech functionality by @HowieDuhzit in https://github.com/elizaOS/eliza/pull/1528 +* Fix: Update package.json with build-docker command to match the dockerfile command by @vanshika-srivastava in https://github.com/elizaOS/eliza/pull/1527 +* feat: Add Livepeer Image Provider by @Titan-Node in https://github.com/elizaOS/eliza/pull/1525 +* feat: Add Custom System Prompt Support for plugin-image-generation by @tsubasakong in https://github.com/elizaOS/eliza/pull/839 +* chore: remove unused vars by @odilitime in https://github.com/elizaOS/eliza/pull/1529 +* feat: add avalanche plugin by @snow-farmer in https://github.com/elizaOS/eliza/pull/842 +* feat: Add GitBook Plugin provider by @azep-ninja in https://github.com/elizaOS/eliza/pull/1126 +* chore: bump version to v.0.1.7-alpha.2 by @shakkernerd in https://github.com/elizaOS/eliza/pull/1530 +* chore: 1.7.0 prep, develop => main by @odilitime in https://github.com/elizaOS/eliza/pull/1519 + +#### New Contributors + +
+View New Contributors +* @onlyzerosonce made their first contribution in https://github.com/elizaOS/eliza/pull/1375 +* @trbutler4 made their first contribution in https://github.com/elizaOS/eliza/pull/1350 +* @hcaumo made their first contribution in https://github.com/elizaOS/eliza/pull/1392 +* @jasonqindev made their first contribution in https://github.com/elizaOS/eliza/pull/1402 +* @UD1sto made their first contribution in https://github.com/elizaOS/eliza/pull/1272 +* @aeither made their first contribution in https://github.com/elizaOS/eliza/pull/1180 +* @harveyjavier made their first contribution in https://github.com/elizaOS/eliza/pull/1420 +* @fyInALT made their first contribution in https://github.com/elizaOS/eliza/pull/1437 +* @alessandromazza98 made their first contribution in https://github.com/elizaOS/eliza/pull/1429 +* @yerinle made their first contribution in https://github.com/elizaOS/eliza/pull/1428 +* @omahs made their first contribution in https://github.com/elizaOS/eliza/pull/1423 +* @RiceChuan made their first contribution in https://github.com/elizaOS/eliza/pull/1424 +* @0xJord4n made their first contribution in https://github.com/elizaOS/eliza/pull/1432 +* @nulLeeKH made their first contribution in https://github.com/elizaOS/eliza/pull/1433 +* @mhxw made their first contribution in https://github.com/elizaOS/eliza/pull/1443 +* @hanyh2004 made their first contribution in https://github.com/elizaOS/eliza/pull/1450 +* @harperaa made their first contribution in https://github.com/elizaOS/eliza/pull/1449 +* @0xPBIT made their first contribution in https://github.com/elizaOS/eliza/pull/1444 +* @vishal-kanna made their first contribution in https://github.com/elizaOS/eliza/pull/1327 +* @remiroyc made their first contribution in https://github.com/elizaOS/eliza/pull/450 +* @mdqst made their first contribution in https://github.com/elizaOS/eliza/pull/1465 +* @samarth30 made their first contribution in https://github.com/elizaOS/eliza/pull/1464 +* @zkvm made their first contribution in https://github.com/elizaOS/eliza/pull/1463 +* @Archethect made their first contribution in https://github.com/elizaOS/eliza/pull/1473 +* @todorkolev made their first contribution in https://github.com/elizaOS/eliza/pull/1469 +* @ag-wnl made their first contribution in https://github.com/elizaOS/eliza/pull/1475 +* @swizzmagik made their first contribution in https://github.com/elizaOS/eliza/pull/1483 +* @Ed-Marcavage made their first contribution in https://github.com/elizaOS/eliza/pull/1343 +* @chandiniv1 made their first contribution in https://github.com/elizaOS/eliza/pull/1496 +* @qwdsds made their first contribution in https://github.com/elizaOS/eliza/pull/1489 +* @e-fu made their first contribution in https://github.com/elizaOS/eliza/pull/1498 +* @janeyJo made their first contribution in https://github.com/elizaOS/eliza/pull/1500 +* @ShaneOxM made their first contribution in https://github.com/elizaOS/eliza/pull/1490 +* @Dhaiwat10 made their first contribution in https://github.com/elizaOS/eliza/pull/1512 +* @timolegros made their first contribution in https://github.com/elizaOS/eliza/pull/1508 +* @Rudrakc made their first contribution in https://github.com/elizaOS/eliza/pull/1502 +* @y4my4my4m made their first contribution in https://github.com/elizaOS/eliza/pull/1312 +* @pythonberg1997 made their first contribution in https://github.com/elizaOS/eliza/pull/1456 +* @imtms made their first contribution in https://github.com/elizaOS/eliza/pull/1522 +* @HowieDuhzit made their first contribution in https://github.com/elizaOS/eliza/pull/1528 +* @vanshika-srivastava made their first contribution in https://github.com/elizaOS/eliza/pull/1527 +* @snow-farmer made their first contribution in https://github.com/elizaOS/eliza/pull/842 +
+ +#### Full Changelog: https://github.com/elizaOS/eliza/compare/v0.1.7-alpha.1...v0.1.7-alpha.2 + +--- + +## v0.1.7-alpha.1 (December 22, 2024) + +#### What's Changed + +* chore: rebase develop branch by @shakkernerd in https://github.com/elizaOS/eliza/pull/1301 +* no token needed for gaianet by @suicidalgoofy in https://github.com/elizaOS/eliza/pull/1306 +* fix: add lint script for plugin evm and fix lint errors by @nicky-ru in https://github.com/elizaOS/eliza/pull/1171 +* chore: remove TWITTER_COOKIES env var by @ChristopherTrimboli in https://github.com/elizaOS/eliza/pull/1288 +* fix: update turbo to fix "cannot find package" error by @oxSaturn in https://github.com/elizaOS/eliza/pull/1307 +* fix: set default value for cache store by @oxSaturn in https://github.com/elizaOS/eliza/pull/1308 +* fix: support google model. by @oxSaturn in https://github.com/elizaOS/eliza/pull/1310 +* chore: bump agent-twitter-client version to v0.0.17 by @shakkernerd in https://github.com/elizaOS/eliza/pull/1311 +* fix: use MAX_TWEET_LENGTH from setting by @oxSaturn in https://github.com/elizaOS/eliza/pull/1323 +* fix: Add OLLAMA model to the getTokenForProvider class by @amirkhonov in https://github.com/elizaOS/eliza/pull/1338 +* fix: postgres adapter schema by @ryanleecode in https://github.com/elizaOS/eliza/pull/1345 +* Update farcaster client max cast length by @0x330a in https://github.com/elizaOS/eliza/pull/1347 +* chore: revert discord url by @madjin in https://github.com/elizaOS/eliza/pull/1355 +* feat: elizaOS by @lalalune in https://github.com/elizaOS/eliza/pull/1352 +* chore: Merge Develop into Main by @lalalune in https://github.com/elizaOS/eliza/pull/1356 +* Update DOCUMENTATION links to point to https://elizaOS.github.io/eliza/ by @imwylin in https://github.com/elizaOS/eliza/pull/1353 +* feat: change @elizaos/eliza to @elizaos/core by @lalalune in https://github.com/elizaOS/eliza/pull/1357 +* chore: develop -> main, change elizaos/eliza to elizaos/core by @lalalune in https://github.com/elizaOS/eliza/pull/1359 +* chore: New version 0.1.7 alpha.1 by @shakkernerd in https://github.com/elizaOS/eliza/pull/1360 +* chore: bump version to v0.1.7-alpha.1 by @shakkernerd in https://github.com/elizaOS/eliza/pull/1361 + +#### New Contributors + +
+View New Contributors +* @suicidalgoofy made their first contribution in https://github.com/elizaOS/eliza/pull/1306 +* @ChristopherTrimboli made their first contribution in https://github.com/elizaOS/eliza/pull/1288 +* @amirkhonov made their first contribution in https://github.com/elizaOS/eliza/pull/1338 +* @ryanleecode made their first contribution in https://github.com/elizaOS/eliza/pull/1345 +* @0x330a made their first contribution in https://github.com/elizaOS/eliza/pull/1347 +* @imwylin made their first contribution in https://github.com/elizaOS/eliza/pull/1353 +
+ +#### Full Changelog: https://github.com/elizaOS/eliza/compare/v0.1.6...v0.1.7-alpha.2 + +#### What's Changed + +* chore: rebase develop branch by @shakkernerd in https://github.com/elizaOS/eliza/pull/1301 +* no token needed for gaianet by @suicidalgoofy in https://github.com/elizaOS/eliza/pull/1306 +* fix: add lint script for plugin evm and fix lint errors by @nicky-ru in https://github.com/elizaOS/eliza/pull/1171 +* chore: remove TWITTER_COOKIES env var by @ChristopherTrimboli in https://github.com/elizaOS/eliza/pull/1288 +* fix: update turbo to fix "cannot find package" error by @oxSaturn in https://github.com/elizaOS/eliza/pull/1307 +* fix: set default value for cache store by @oxSaturn in https://github.com/elizaOS/eliza/pull/1308 +* fix: support google model. by @oxSaturn in https://github.com/elizaOS/eliza/pull/1310 +* chore: bump agent-twitter-client version to v0.0.17 by @shakkernerd in https://github.com/elizaOS/eliza/pull/1311 +* fix: use MAX_TWEET_LENGTH from setting by @oxSaturn in https://github.com/elizaOS/eliza/pull/1323 +* fix: Add OLLAMA model to the getTokenForProvider class by @amirkhonov in https://github.com/elizaOS/eliza/pull/1338 +* fix: postgres adapter schema by @ryanleecode in https://github.com/elizaOS/eliza/pull/1345 +* Update farcaster client max cast length by @0x330a in https://github.com/elizaOS/eliza/pull/1347 +* chore: revert discord url by @madjin in https://github.com/elizaOS/eliza/pull/1355 +* feat: elizaOS by @lalalune in https://github.com/elizaOS/eliza/pull/1352 +* chore: Merge Develop into Main by @lalalune in https://github.com/elizaOS/eliza/pull/1356 +* Update DOCUMENTATION links to point to https://elizaOS.github.io/eliza/ by @imwylin in https://github.com/elizaOS/eliza/pull/1353 +* feat: change @elizaos/eliza to @elizaos/core by @lalalune in https://github.com/elizaOS/eliza/pull/1357 +* chore: develop -> main, change elizaos/eliza to elizaos/core by @lalalune in https://github.com/elizaOS/eliza/pull/1359 +* chore: New version 0.1.7 alpha.1 by @shakkernerd in https://github.com/elizaOS/eliza/pull/1360 +* chore: bump version to v0.1.7-alpha.1 by @shakkernerd in https://github.com/elizaOS/eliza/pull/1361 + +#### New Contributors + +* @suicidalgoofy made their first contribution in https://github.com/elizaOS/eliza/pull/1306 +* @ChristopherTrimboli made their first contribution in https://github.com/elizaOS/eliza/pull/1288 +* @amirkhonov made their first contribution in https://github.com/elizaOS/eliza/pull/1338 +* @ryanleecode made their first contribution in https://github.com/elizaOS/eliza/pull/1345 +* @0x330a made their first contribution in https://github.com/elizaOS/eliza/pull/1347 +* @imwylin made their first contribution in https://github.com/elizaOS/eliza/pull/1353 + +**Full Changelog**: https://github.com/elizaOS/eliza/compare/v0.1.6...v0.1.7-alpha.1 + +--- + +## v0.1.6-alpha.5 (December 21, 2024) + +#### What's Changed + +* fix: Enable multiple bots to join Discord voice channels by @tcm390 in https://github.com/ai16z/eliza/pull/1156 +* chore: print commands to start the client and remove unused --non-iteraโ€ฆ by @yang-han in https://github.com/ai16z/eliza/pull/1163 +* feat: make script dash compatible by @shakkernerd in https://github.com/ai16z/eliza/pull/1165 +* fix: Fix typo in multiversx plugin prompt for creating token by @thomasWos in https://github.com/ai16z/eliza/pull/1170 +* docs: Update "What Did You Get Done This Week? 5" spaces notes by @YoungPhlo in https://github.com/ai16z/eliza/pull/1174 +* docs: fixed CONTRIBUTING.md file Issue: 1048 by @ileana-pr in https://github.com/ai16z/eliza/pull/1191 +* test: adding tests for runtime.ts. Modified README since we switched to vitest by @ai16z-demirix in https://github.com/ai16z/eliza/pull/1190 +* feat: integration tests fixes + library improvements by @jzvikart in https://github.com/ai16z/eliza/pull/1177 +* docs(cn): add python 3.7 by @9547 in https://github.com/ai16z/eliza/pull/1201 +* fix: gitpod cicd bug by @v1xingyue in https://github.com/ai16z/eliza/pull/1207 +* docs: Update README.md by @marcNY in https://github.com/ai16z/eliza/pull/1209 +* docs: Update "CN README" with more details by @tomguluson92 in https://github.com/ai16z/eliza/pull/1196 +* chore: New docs by @madjin in https://github.com/ai16z/eliza/pull/1211 +* fix: improve twitter post generation prompt by @cygaar in https://github.com/ai16z/eliza/pull/1217 +* fix: Allow the bot to post messages with images generated by the imageGenerationPlugin on Telegram. by @tcm390 in https://github.com/ai16z/eliza/pull/1220 +* fix: postgres needs the user to exist before you can add a participant by @odilitime in https://github.com/ai16z/eliza/pull/1219 +* fix: CircuitBreaker.ts by @tomguluson92 in https://github.com/ai16z/eliza/pull/1226 +* chore: clean up scripts by @danbednarski in https://github.com/ai16z/eliza/pull/1218 +* fix: fail when cannot get token, add Akash to generateText switch by @vpavlin in https://github.com/ai16z/eliza/pull/1214 +* feat: add parse mode=Markdown, enhance telegram bot output by @simpletrontdip in https://github.com/ai16z/eliza/pull/1229 +* feat: make twitter login retry times as env by @renlulu in https://github.com/ai16z/eliza/pull/1244 +* fix: Sync UI Client with server port env by @jonathangus in https://github.com/ai16z/eliza/pull/1239 +* Update README for french, spanish and italian language by @azurwastaken in https://github.com/ai16z/eliza/pull/1236 +* Update trump.character.json - Enhance terminology in the project for clarity and inclusivity by @yjshi2015 in https://github.com/ai16z/eliza/pull/1237 +* Fix visibility issue github image cicd by @luisalrp in https://github.com/ai16z/eliza/pull/1243 +* fix: twitterShouldRespondTemplate Fails When Defined as a String in JSON Character Config by @tcm390 in https://github.com/ai16z/eliza/pull/1242 +* fix: optional chaining on search to avoid startup errors when search is not enabled by @netdragonx in https://github.com/ai16z/eliza/pull/1202 +* feat: make express payload limit configurable by @renlulu in https://github.com/ai16z/eliza/pull/1245 +* fix: Fix local_llama key warning by @odilitime in https://github.com/ai16z/eliza/pull/1250 +* doc: add Twitter automation label notice (#1253) by @julienbrs in https://github.com/ai16z/eliza/pull/1254 +* Update trump.character.json by @lalalune in https://github.com/ai16z/eliza/pull/1252 +* fix: unsupported model provider: claude_vertex by @tcm390 in https://github.com/ai16z/eliza/pull/1258 +* feat: upgrade Tavily API with comprehensive input and constrain the token consumption by @tomguluson92 in https://github.com/ai16z/eliza/pull/1246 +* feat: add README_DE.md in docs directory by @derRizzMeister in https://github.com/ai16z/eliza/pull/1262 +* fix: pnpm lockfile by @shakkernerd in https://github.com/ai16z/eliza/pull/1273 +* chore: Revert "fix: pnpm lockfile" by @shakkernerd in https://github.com/ai16z/eliza/pull/1275 +* fix: Fix client.push issue and update README for Slack client verification by @SumeetChougule in https://github.com/ai16z/eliza/pull/1182 +* fix: write summary file before trying to cache it by @tobbelobb in https://github.com/ai16z/eliza/pull/1205 +* fix: fix ENABLE_ACTION_PROCESSING logic by @oxSaturn in https://github.com/ai16z/eliza/pull/1268 +* fix: fix lockfile by @odilitime in https://github.com/ai16z/eliza/pull/1283 +* chore: clean up merged PR1168 by @odilitime in https://github.com/ai16z/eliza/pull/1289 +* feat: Redis Cache Implementation by @shakkernerd in https://github.com/ai16z/eliza/pull/1279 +* fix: integration tests fix by @twilwa in https://github.com/ai16z/eliza/pull/1291 +* fix: pnpm lock file by @shakkernerd in https://github.com/ai16z/eliza/pull/1292 +* fix: add missing claude vertex case to handleProvider by @shakkernerd in https://github.com/ai16z/eliza/pull/1293 +* fix: output checkable variable for conditional by @twilwa in https://github.com/ai16z/eliza/pull/1294 +* feat: Add caching support for Redis by @shakkernerd in https://github.com/ai16z/eliza/pull/1295 +* chore: bump version to 0.1.6-alpha.5 by @shakkernerd in https://github.com/ai16z/eliza/pull/1296 +* feat: Update main for v0.1.6-alpha.5 by @odilitime in https://github.com/ai16z/eliza/pull/1290 + +#### New Contributors + +
+View New Contributors +* @yang-han made their first contribution in https://github.com/ai16z/eliza/pull/1163 +* @thomasWos made their first contribution in https://github.com/ai16z/eliza/pull/1170 +* @9547 made their first contribution in https://github.com/ai16z/eliza/pull/1201 +* @marcNY made their first contribution in https://github.com/ai16z/eliza/pull/1209 +* @danbednarski made their first contribution in https://github.com/ai16z/eliza/pull/1218 +* @vpavlin made their first contribution in https://github.com/ai16z/eliza/pull/1214 +* @simpletrontdip made their first contribution in https://github.com/ai16z/eliza/pull/1229 +* @renlulu made their first contribution in https://github.com/ai16z/eliza/pull/1244 +* @jonathangus made their first contribution in https://github.com/ai16z/eliza/pull/1239 +* @azurwastaken made their first contribution in https://github.com/ai16z/eliza/pull/1236 +* @yjshi2015 made their first contribution in https://github.com/ai16z/eliza/pull/1237 +* @luisalrp made their first contribution in https://github.com/ai16z/eliza/pull/1243 +* @netdragonx made their first contribution in https://github.com/ai16z/eliza/pull/1202 +* @julienbrs made their first contribution in https://github.com/ai16z/eliza/pull/1254 +* @SumeetChougule made their first contribution in https://github.com/ai16z/eliza/pull/1182 +* @tobbelobb made their first contribution in https://github.com/ai16z/eliza/pull/1205 +
+ +#### Full Changelog: https://github.com/ai16z/eliza/compare/v0.1.6-alpha.4...v0.1.6-alpha.5 + +--- + +## v0.1.6 (December 21, 2024) + +#### What's Changed + +* fix: When the plugins field in the .character.json file is configured with plugin name. by @xwxtwd in https://github.com/ai16z/eliza/pull/784 +* fixs: uuid compatible for number by @tomguluson92 in https://github.com/ai16z/eliza/pull/785 +* Update generation.ts to fix TOGETHER/LLAMACLOUD image generation by @ProphetX10 in https://github.com/ai16z/eliza/pull/786 +* fix: dev command by @shakkernerd in https://github.com/ai16z/eliza/pull/793 +* chore: update README_KOR.md to match latest README.md by @mike0295 in https://github.com/ai16z/eliza/pull/789 +* fix: enviroment -> environment by @tomguluson92 in https://github.com/ai16z/eliza/pull/787 +* fix: Docker default non-interactive mode for Cloud instances by @rarepepi in https://github.com/ai16z/eliza/pull/796 +* fix: swap type error, create user trust on first message in telegram by @MarcoMandar in https://github.com/ai16z/eliza/pull/800 +* fix: update npm publication workflow by @cygaar in https://github.com/ai16z/eliza/pull/805 +* refactor: Improve actions samples random selection by @dievardump in https://github.com/ai16z/eliza/pull/799 +* fix: part 2 of updating the npm publish workflow by @cygaar in https://github.com/ai16z/eliza/pull/806 +* fix: release workflow part 3 by @cygaar in https://github.com/ai16z/eliza/pull/807 +* fix: update package version to v0.1.5-alpha.0 by @cygaar in https://github.com/ai16z/eliza/pull/808 +* fix: lerna publish command by @cygaar in https://github.com/ai16z/eliza/pull/811 +* feat: (core) Add circuit breaker pattern for database operations -โ€ฆ by @augchan42 in https://github.com/ai16z/eliza/pull/812 +* use github access token by @tcm390 in https://github.com/ai16z/eliza/pull/825 +* loading indicator by @tcm390 in https://github.com/ai16z/eliza/pull/827 +* fix: pin all node dependencies + update @solana/web3.js to safe version by @cygaar in https://github.com/ai16z/eliza/pull/832 +* fix: docker-setup.md by @Freytes in https://github.com/ai16z/eliza/pull/826 +* fix: twitter cache expires by @palsp in https://github.com/ai16z/eliza/pull/824 +* chore: bump version to 0.1.5-alpha.1 by @cygaar in https://github.com/ai16z/eliza/pull/833 +* chore: revert viem package version by @shakkernerd in https://github.com/ai16z/eliza/pull/834 +* chore: Revert/viem version and bump @goat-sdk/plugin-erc20 by @shakkernerd in https://github.com/ai16z/eliza/pull/836 +* chore: bump version to 0.1.5-alpha.3 by @cygaar in https://github.com/ai16z/eliza/pull/838 +* feat: add coinbase ERC20, ERC721, and ERC1155 tokenContract deployment / invokement plugin by @monilpat in https://github.com/ai16z/eliza/pull/803 +* fix: Include scripts/postinstall.js in the final NPM package by @martincik in https://github.com/ai16z/eliza/pull/843 +* fix: run release workflow after a github release is created by @cygaar in https://github.com/ai16z/eliza/pull/846 +* feat: add Aptos plugin by @0xaptosj in https://github.com/ai16z/eliza/pull/818 +* fix: plugins docs by @cygaar in https://github.com/ai16z/eliza/pull/848 +* fix: Use LARGE models for responses by @lalalune in https://github.com/ai16z/eliza/pull/853 +* Update Node version in local-development.md by @oxSaturn in https://github.com/ai16z/eliza/pull/850 +* Updated quickstart.md to contemplate common issue by @fede2442 in https://github.com/ai16z/eliza/pull/861 +* Remove duplicated coinbase CDP options in .env.example by @juntao in https://github.com/ai16z/eliza/pull/863 +* feat: coinbase webhook + add more examples + testing by @monilpat in https://github.com/ai16z/eliza/pull/801 +* test: adding environment and knowledge tests by @ai16z-demirix in https://github.com/ai16z/eliza/pull/862 +* Update quickstart.md by @oxSaturn in https://github.com/ai16z/eliza/pull/872 +* docs: Add AI Agent Dev School Parts 2 and 3 summaries and timestamps by @YoungPhlo in https://github.com/ai16z/eliza/pull/877 +* Add google model env vars by @peersky in https://github.com/ai16z/eliza/pull/875 +* feat: working farcaster client with neynar by @sayangel in https://github.com/ai16z/eliza/pull/570 +* fix: re-enable coverage report upload to Codecov in CI workflow by @snobbee in https://github.com/ai16z/eliza/pull/880 +* chore: disable building docs on build command by @shakkernerd in https://github.com/ai16z/eliza/pull/884 +* feat: Add Flow Blockchain plugin by @btspoony in https://github.com/ai16z/eliza/pull/874 +* chore: enhance dev script, performance improvement and add help message by @shakkernerd in https://github.com/ai16z/eliza/pull/887 +* chore: added more help message to the important notice text. by @shakkernerd in https://github.com/ai16z/eliza/pull/891 +* chore: improved dev command by @shakkernerd in https://github.com/ai16z/eliza/pull/892 +* fix: twitter actions not triggering by @cygaar in https://github.com/ai16z/eliza/pull/903 +* chore: update models for groq by @oxSaturn in https://github.com/ai16z/eliza/pull/890 +* fix: evaluation json parsing by @cygaar in https://github.com/ai16z/eliza/pull/907 +* docs: Add What Did You Get Done This Week #4 summaries and timestamps by @YoungPhlo in https://github.com/ai16z/eliza/pull/895 +* feat: create README_TH.md by @asianviking in https://github.com/ai16z/eliza/pull/918 +* feat: update gaianet config by @L-jasmine in https://github.com/ai16z/eliza/pull/915 +* feat: allow users to configure models for groq by @oxSaturn in https://github.com/ai16z/eliza/pull/910 +* chore: Consistent language for Community & Contact link label by @golryang in https://github.com/ai16z/eliza/pull/899 +* chore: deprecate text based way of generating JSON by @monilpat in https://github.com/ai16z/eliza/pull/920 +* fix: Farcater client cleanup and fixed response logic by @sayangel in https://github.com/ai16z/eliza/pull/914 +* feat: MAX_TWEET_LENGTH env implementation by @onur-saf in https://github.com/ai16z/eliza/pull/912 +* feat: implement advanced coinbase trading by @monilpat in https://github.com/ai16z/eliza/pull/725 +* feat: add dynamic watch paths for agent development by @samuveth in https://github.com/ai16z/eliza/pull/931 +* fix: use of Heurist model env vars by @boxhock in https://github.com/ai16z/eliza/pull/924 +* fix: update quickstart and .env.example by @oxSaturn in https://github.com/ai16z/eliza/pull/932 +* feat: add readContract / invokeContract functionality to Coinbase plugin by @monilpat in https://github.com/ai16z/eliza/pull/923 +* fix: telegram response memory userId to agentId by @bmgalego in https://github.com/ai16z/eliza/pull/948 +* feat: Config eternalai model from env by @genesis-0000 in https://github.com/ai16z/eliza/pull/927 +* feat: add hyperbolic api to eliza by @meppsilon in https://github.com/ai16z/eliza/pull/828 +* docs: add WSL installation guide by @ileana-pr in https://github.com/ai16z/eliza/pull/946 +* fix: Revert "docs: add WSL installation guide" by @monilpat in https://github.com/ai16z/eliza/pull/959 +* Fix farcaster client process action issue by @sin-bufan in https://github.com/ai16z/eliza/pull/963 +* fix(agent): correct EVM plugin activation condition by @0xAsten in https://github.com/ai16z/eliza/pull/962 +* fix: use MAX_TWEET_LENGTH from setting by @oxSaturn in https://github.com/ai16z/eliza/pull/960 +* feat: Supports upload files to AWS S3. by @xwxtwd in https://github.com/ai16z/eliza/pull/941 +* fix: update package name in faq by @oxSaturn in https://github.com/ai16z/eliza/pull/937 +* feat: process all responses actions by @bmgalego in https://github.com/ai16z/eliza/pull/940 +* chore: 947 add other evm chains to wallet by @n00b21337 in https://github.com/ai16z/eliza/pull/949 +* feat: add dev script to plugin-aptos by @asianviking in https://github.com/ai16z/eliza/pull/956 +* feat: Add hyperbolic env vars to override model class by @meppsilon in https://github.com/ai16z/eliza/pull/974 +* chore: pass env variables when setting up GOAT and update GOAT readme by @0xaguspunk in https://github.com/ai16z/eliza/pull/898 +* feat: Add TEE Mode to Solana Plugin by @HashWarlock in https://github.com/ai16z/eliza/pull/835 +* chore: fix broken lockfile by @shakkernerd in https://github.com/ai16z/eliza/pull/977 +* fix: revert llamacloud endpoint change by @odilitime in https://github.com/ai16z/eliza/pull/954 +* feat: add callback handler to runtime evaluate method by @bmgalego in https://github.com/ai16z/eliza/pull/938 +* fix: docker trying to filter out missing docs package by @odilitime in https://github.com/ai16z/eliza/pull/978 +* chore: rename intiface plugin by @odilitime in https://github.com/ai16z/eliza/pull/955 +* feat: allow character.json settings models for open router by @odilitime in https://github.com/ai16z/eliza/pull/953 +* LinkedIn Client by @bkellgren in https://github.com/ai16z/eliza/pull/973 +* fix: a typo in characterfile.md by @oxSaturn in https://github.com/ai16z/eliza/pull/986 +* fix: Goat Plugin + AWS S3 Service error when env vars absent by @jnaulty in https://github.com/ai16z/eliza/pull/985 +* docs: add WSL Setup Guide to documentation by @ileana-pr in https://github.com/ai16z/eliza/pull/983 +* chore: add how to startup chat ui by @yodamaster726 in https://github.com/ai16z/eliza/pull/976 +* feat: flow update generate object by @btspoony in https://github.com/ai16z/eliza/pull/929 +* feat : github image cicd by @v1xingyue in https://github.com/ai16z/eliza/pull/889 +* feat: Add NanoGPT provider by @dylan1951 in https://github.com/ai16z/eliza/pull/926 +* fix: Fix Twitter Search Logic and Add Galadriel Image Model by @dontAskVI in https://github.com/ai16z/eliza/pull/994 +* feat: create README_DE.md by @GottliebFreudenreich in https://github.com/ai16z/eliza/pull/995 +* test: adding parsing tests. changed files parsing.test.ts by @ai16z-demirix in https://github.com/ai16z/eliza/pull/996 +* feat: allow users to configure models for openai and anthropic by @oxSaturn in https://github.com/ai16z/eliza/pull/999 +* fix: typo initialize by @cryptofish7 in https://github.com/ai16z/eliza/pull/1000 +* fix: add callback to action in farcaster client by @sin-bufan in https://github.com/ai16z/eliza/pull/1002 +* chore: Bring Develop up to date with HEAD by @odilitime in https://github.com/ai16z/eliza/pull/1006 +* feat: twitter client enhancements by @tharak123455 in https://github.com/ai16z/eliza/pull/913 +* docs: Add templates documentation to the project by @Lukapetro in https://github.com/ai16z/eliza/pull/1013 +* feat: Plugin evm multichain by @nicky-ru in https://github.com/ai16z/eliza/pull/1009 +* test: Initial release of smoke/integration tests + testing framework by @jzvikart in https://github.com/ai16z/eliza/pull/993 +* docs: "AI Agent Dev School Part 4" livestream notes by @YoungPhlo in https://github.com/ai16z/eliza/pull/1015 +* chore: Twitter search switch by @odilitime in https://github.com/ai16z/eliza/pull/1003 +* feat: improve Twitter client with action processing by @dorianjanezic in https://github.com/ai16z/eliza/pull/1007 +* fix: refactor contributor page by @tcm390 in https://github.com/ai16z/eliza/pull/809 +* chore: Update CI configuration to enable test coverage and add coveraโ€ฆ by @snobbee in https://github.com/ai16z/eliza/pull/1019 +* chore: Twitter fetchHomeTimeline rework by @odilitime in https://github.com/ai16z/eliza/pull/1021 +* docs: Update README.md by @sergical in https://github.com/ai16z/eliza/pull/1024 +* feat: Add custom fetch logic for agent by @v1xingyue in https://github.com/ai16z/eliza/pull/1010 +* docs: Update README.md by @sergical in https://github.com/ai16z/eliza/pull/1025 +* add echochambers by @savageops in https://github.com/ai16z/eliza/pull/997 +* chore: Push Develop into Main by @odilitime in https://github.com/ai16z/eliza/pull/1028 +* feat: create example folder with example plugin by @monilpat in https://github.com/ai16z/eliza/pull/1004 +* feat: add venice.ai api model provider by @proteanx in https://github.com/ai16z/eliza/pull/1008 +* feat: Add AI Agent Dev School Tutorial Link by @lalalune in https://github.com/ai16z/eliza/pull/1038 +* feat: Add Discord Team features by @azep-ninja in https://github.com/ai16z/eliza/pull/1032 +* docs: characterfile.md docs outdated with latest eliza version by @tqdpham96 in https://github.com/ai16z/eliza/pull/1042 +* feat: improve voice processing and add deepgram transcription option by @tcm390 in https://github.com/ai16z/eliza/pull/1026 +* fix: use pull_request_target for integration tests by @jnaulty in https://github.com/ai16z/eliza/pull/1035 +* feat: client-discord stop implementation / agent improvements by @odilitime in https://github.com/ai16z/eliza/pull/1029 +* fix: re-enable generateNewTweetLoop / lint fixes by @odilitime in https://github.com/ai16z/eliza/pull/1043 +* chore: release develop into main by @odilitime in https://github.com/ai16z/eliza/pull/1045 +* chore: improve smokeTests environment validation and logging by @aramxc in https://github.com/ai16z/eliza/pull/1046 +* fix: add auto to clients in types to use client-auto by @HashWarlock in https://github.com/ai16z/eliza/pull/1050 +* feat: add/change change through REST api (client-direct) by @odilitime in https://github.com/ai16z/eliza/pull/1052 +* fix: discord client ci issues by @cygaar in https://github.com/ai16z/eliza/pull/1054 +* fix: Fix pnpm lockfiles by @jzvikart in https://github.com/ai16z/eliza/pull/1055 +* fix: Allow bot to post tweets with images generated by the imageGenerationPlugin by @tcm390 in https://github.com/ai16z/eliza/pull/1040 +* feat: Add Telegram Team features by @azep-ninja in https://github.com/ai16z/eliza/pull/1033 +* feat: add venice.ai image generation by @proteanx in https://github.com/ai16z/eliza/pull/1057 +* feat: improve X/Twitter login with cookie validation and retry mechanism by @arslanaybars in https://github.com/ai16z/eliza/pull/856 +* feat: create README_VI.md by @tqdpham96 in https://github.com/ai16z/eliza/pull/1058 +* Update docs (CONTRIBUTING.md) by @lessuselesss in https://github.com/ai16z/eliza/pull/1053 +* feat: add README_TH.md in docs directory by @derRizzMeister in https://github.com/ai16z/eliza/pull/1034 +* feat: multiversx plugin by @mgavrila in https://github.com/ai16z/eliza/pull/860 +* feat: Add NEAR Protocol plugin by @serrrfirat in https://github.com/ai16z/eliza/pull/847 +* chore: commented out unused variables in solana swap action's plugin by @shakkernerd in https://github.com/ai16z/eliza/pull/1073 +* fix: incorrect eslint config file path by @shakkernerd in https://github.com/ai16z/eliza/pull/1074 +* feat: add plugin-ton by @jinbangyi in https://github.com/ai16z/eliza/pull/1039 +* fix: remove unnecessary devDependencies by @shakkernerd in https://github.com/ai16z/eliza/pull/1075 +* chore: Update package.json by @Freytes in https://github.com/ai16z/eliza/pull/1031 +* chore: improve eslint by --cache by @shengxj1 in https://github.com/ai16z/eliza/pull/1056 +* fix: missing eslint config file by @shakkernerd in https://github.com/ai16z/eliza/pull/1076 +* fix: remove unnecessary devDependencies by @shakkernerd in https://github.com/ai16z/eliza/pull/1077 +* Add slack plugin by @AIFlowML in https://github.com/ai16z/eliza/pull/859 +* fix: errors in swap action in plugin-near by @shakkernerd in https://github.com/ai16z/eliza/pull/1078 +* Adding plugin for ZKsync Era by @arose00 in https://github.com/ai16z/eliza/pull/906 +* fix: transfer action linting errors by @shakkernerd in https://github.com/ai16z/eliza/pull/1079 +* chore: add npmignore file by @shakkernerd in https://github.com/ai16z/eliza/pull/1080 +* chore: fix broken pnpm lockfile by @shakkernerd in https://github.com/ai16z/eliza/pull/1081 +* fix: eslint command by @shakkernerd in https://github.com/ai16z/eliza/pull/1082 +* chore: remove unnecessary packages by @shakkernerd in https://github.com/ai16z/eliza/pull/1083 +* fix: dynamic import of fs module by @shakkernerd in https://github.com/ai16z/eliza/pull/1084 +* chore: remove unused imports and rename runtime variable by @shakkernerd in https://github.com/ai16z/eliza/pull/1085 +* fix: client slack linting errors by @shakkernerd in https://github.com/ai16z/eliza/pull/1086 +* fix: syntax error: invalid arithmetic operator by @shakkernerd in https://github.com/ai16z/eliza/pull/1088 +* chore: increase timeout to 3mins by @shakkernerd in https://github.com/ai16z/eliza/pull/1092 +* chore: kill pnpm start by @shakkernerd in https://github.com/ai16z/eliza/pull/1093 +* chore: debugging start behaviour by @shakkernerd in https://github.com/ai16z/eliza/pull/1094 +* docs: add README.md to plugin-evm by @nicky-ru in https://github.com/ai16z/eliza/pull/1095 +* fix: return types of createAgent & startAgent by @BlockJuic3 in https://github.com/ai16z/eliza/pull/1097 +* feat: Smoke Test script by @shakkernerd in https://github.com/ai16z/eliza/pull/1101 +* feat: allow users to configure models for grok by @oxSaturn in https://github.com/ai16z/eliza/pull/1091 +* test: adding tests. changed files actions.test.ts, messages.test.ts, models.test.ts by @ai16z-demirix in https://github.com/ai16z/eliza/pull/998 +* chore: improving client typing by @BalanaguYashwanth in https://github.com/ai16z/eliza/pull/1036 +* fix: handle no termination message by @shakkernerd in https://github.com/ai16z/eliza/pull/1102 +* chore: fix broken pnpm lockfile by @shakkernerd in https://github.com/ai16z/eliza/pull/1103 +* fix: Fixed twitter posts include from including `/n` in the text by @Titan-Node in https://github.com/ai16z/eliza/pull/1070 +* fix: add missing imports by @shakkernerd in https://github.com/ai16z/eliza/pull/1104 +* chore: improve formatting of .env.example for better readability by @guzus in https://github.com/ai16z/eliza/pull/897 +* feat: Lens client by @imthatcarlos in https://github.com/ai16z/eliza/pull/1098 +* feat: Add plugin-nft-generation: create Solana NFT collections. by @xwxtwd in https://github.com/ai16z/eliza/pull/1011 +* Documentation: Plugin list numbering and titles by @brunocalmels in https://github.com/ai16z/eliza/pull/1107 +* feat: add plugin-sui by @jnaulty in https://github.com/ai16z/eliza/pull/934 +* feat: plugin-story by @jacob-tucker in https://github.com/ai16z/eliza/pull/1030 +* Fix/charity by @awidearray in https://github.com/ai16z/eliza/pull/852 +* Feat: Update community section of docs by @madjin in https://github.com/ai16z/eliza/pull/1111 +* fix: Revert "Feat: Update community section of docs" by @monilpat in https://github.com/ai16z/eliza/pull/1112 +* feat: New docs for community section by @madjin in https://github.com/ai16z/eliza/pull/1114 +* chore: fix broken pnpm lockfile by @shakkernerd in https://github.com/ai16z/eliza/pull/1115 +* fix: load image from diff endpoints by @qgpcybs in https://github.com/ai16z/eliza/pull/837 +* feat: Updated characters types, Discord & Telegram enhancements by @azep-ninja in https://github.com/ai16z/eliza/pull/957 +* FAL image settings escape hatch by @daojonesceo in https://github.com/ai16z/eliza/pull/814 +* fix: add more heplful default agents (Dobby and C3PO) by @n00b21337 in https://github.com/ai16z/eliza/pull/1124 +* fix: discord client duplicate function removal by @azep-ninja in https://github.com/ai16z/eliza/pull/1125 +* fix: Refactor to prevent unnecessary lockfile changes by @monilpat in https://github.com/ai16z/eliza/pull/1120 +* fix: fix the name by @n00b21337 in https://github.com/ai16z/eliza/pull/1133 +* feat: Add `chatapi.akash.network` to available list of model providers (FREE LLAMA API ACCESS!) by @MbBrainz in https://github.com/ai16z/eliza/pull/1131 +* feat: add support for handlebars templating engine as an option by @erise133 in https://github.com/ai16z/eliza/pull/1136 +* clean newlines for new tweet by @owlcode in https://github.com/ai16z/eliza/pull/1141 +* fix: telegram client duplicate function removal by @azep-ninja in https://github.com/ai16z/eliza/pull/1140 +* fix: Fix Parameter Parsing in plugin-evm TransferAction and Return Transaction Hash by @FWangZil in https://github.com/ai16z/eliza/pull/965 +* feat: allow agents to create/buy/sell tokens on FOMO.fund's bonding curve in plugin-solana by @0xNerd in https://github.com/ai16z/eliza/pull/1135 +* chore: remove comment by @shakkernerd in https://github.com/ai16z/eliza/pull/1143 +* fix: remove docker compose command since Docker file already runs by @rarepepi in https://github.com/ai16z/eliza/pull/1139 +* fix: improve fomo integration by @odilitime in https://github.com/ai16z/eliza/pull/1147 +* chore: fix PR #1147 by @odilitime in https://github.com/ai16z/eliza/pull/1148 +* chore: Merge monday, merging develop into main by @odilitime in https://github.com/ai16z/eliza/pull/1144 +* feat: update packages version script by @shakkernerd in https://github.com/ai16z/eliza/pull/1150 +* chore: bump version to 0.1.6-alpha.3 by @shakkernerd in https://github.com/ai16z/eliza/pull/1152 +* fix: fetch log level to debug by @shakkernerd in https://github.com/ai16z/eliza/pull/1153 +* fix: fix direct-client ability to start agents by @odilitime in https://github.com/ai16z/eliza/pull/1154 +* chore: develop into main by @shakkernerd in https://github.com/ai16z/eliza/pull/1155 +* fix: client twitter login and auth handler by @shakkernerd in https://github.com/ai16z/eliza/pull/1158 +* chore: bump version to 0.1.6-alpha.4 by @shakkernerd in https://github.com/ai16z/eliza/pull/1159 +* fix: Enable multiple bots to join Discord voice channels by @tcm390 in https://github.com/ai16z/eliza/pull/1156 +* chore: print commands to start the client and remove unused --non-iteraโ€ฆ by @yang-han in https://github.com/ai16z/eliza/pull/1163 +* feat: make script dash compatible by @shakkernerd in https://github.com/ai16z/eliza/pull/1165 +* fix: Fix typo in multiversx plugin prompt for creating token by @thomasWos in https://github.com/ai16z/eliza/pull/1170 +* docs: Update "What Did You Get Done This Week? 5" spaces notes by @YoungPhlo in https://github.com/ai16z/eliza/pull/1174 +* docs: fixed CONTRIBUTING.md file Issue: 1048 by @ileana-pr in https://github.com/ai16z/eliza/pull/1191 +* test: adding tests for runtime.ts. Modified README since we switched to vitest by @ai16z-demirix in https://github.com/ai16z/eliza/pull/1190 +* feat: integration tests fixes + library improvements by @jzvikart in https://github.com/ai16z/eliza/pull/1177 +* docs(cn): add python 3.7 by @9547 in https://github.com/ai16z/eliza/pull/1201 +* fix: gitpod cicd bug by @v1xingyue in https://github.com/ai16z/eliza/pull/1207 +* docs: Update README.md by @marcNY in https://github.com/ai16z/eliza/pull/1209 +* docs: Update "CN README" with more details by @tomguluson92 in https://github.com/ai16z/eliza/pull/1196 +* chore: New docs by @madjin in https://github.com/ai16z/eliza/pull/1211 +* fix: improve twitter post generation prompt by @cygaar in https://github.com/ai16z/eliza/pull/1217 +* fix: Allow the bot to post messages with images generated by the imageGenerationPlugin on Telegram. by @tcm390 in https://github.com/ai16z/eliza/pull/1220 +* fix: postgres needs the user to exist before you can add a participant by @odilitime in https://github.com/ai16z/eliza/pull/1219 +* fix: CircuitBreaker.ts by @tomguluson92 in https://github.com/ai16z/eliza/pull/1226 +* chore: clean up scripts by @danbednarski in https://github.com/ai16z/eliza/pull/1218 +* fix: fail when cannot get token, add Akash to generateText switch by @vpavlin in https://github.com/ai16z/eliza/pull/1214 +* feat: add parse mode=Markdown, enhance telegram bot output by @simpletrontdip in https://github.com/ai16z/eliza/pull/1229 +* feat: make twitter login retry times as env by @renlulu in https://github.com/ai16z/eliza/pull/1244 +* fix: Sync UI Client with server port env by @jonathangus in https://github.com/ai16z/eliza/pull/1239 +* Update README for french, spanish and italian language by @azurwastaken in https://github.com/ai16z/eliza/pull/1236 +* Update trump.character.json - Enhance terminology in the project for clarity and inclusivity by @yjshi2015 in https://github.com/ai16z/eliza/pull/1237 +* Fix visibility issue github image cicd by @luisalrp in https://github.com/ai16z/eliza/pull/1243 +* fix: twitterShouldRespondTemplate Fails When Defined as a String in JSON Character Config by @tcm390 in https://github.com/ai16z/eliza/pull/1242 +* fix: optional chaining on search to avoid startup errors when search is not enabled by @netdragonx in https://github.com/ai16z/eliza/pull/1202 +* feat: make express payload limit configurable by @renlulu in https://github.com/ai16z/eliza/pull/1245 +* fix: Fix local_llama key warning by @odilitime in https://github.com/ai16z/eliza/pull/1250 +* doc: add Twitter automation label notice (#1253) by @julienbrs in https://github.com/ai16z/eliza/pull/1254 +* Update trump.character.json by @lalalune in https://github.com/ai16z/eliza/pull/1252 +* fix: unsupported model provider: claude_vertex by @tcm390 in https://github.com/ai16z/eliza/pull/1258 +* feat: upgrade Tavily API with comprehensive input and constrain the token consumption by @tomguluson92 in https://github.com/ai16z/eliza/pull/1246 +* feat: add README_DE.md in docs directory by @derRizzMeister in https://github.com/ai16z/eliza/pull/1262 +* fix: pnpm lockfile by @shakkernerd in https://github.com/ai16z/eliza/pull/1273 +* chore: Revert "fix: pnpm lockfile" by @shakkernerd in https://github.com/ai16z/eliza/pull/1275 +* fix: Fix client.push issue and update README for Slack client verification by @SumeetChougule in https://github.com/ai16z/eliza/pull/1182 +* fix: write summary file before trying to cache it by @tobbelobb in https://github.com/ai16z/eliza/pull/1205 +* fix: fix ENABLE_ACTION_PROCESSING logic by @oxSaturn in https://github.com/ai16z/eliza/pull/1268 +* fix: fix lockfile by @odilitime in https://github.com/ai16z/eliza/pull/1283 +* chore: clean up merged PR1168 by @odilitime in https://github.com/ai16z/eliza/pull/1289 +* feat: Redis Cache Implementation by @shakkernerd in https://github.com/ai16z/eliza/pull/1279 +* fix: integration tests fix by @twilwa in https://github.com/ai16z/eliza/pull/1291 +* fix: pnpm lock file by @shakkernerd in https://github.com/ai16z/eliza/pull/1292 +* fix: add missing claude vertex case to handleProvider by @shakkernerd in https://github.com/ai16z/eliza/pull/1293 +* fix: output checkable variable for conditional by @twilwa in https://github.com/ai16z/eliza/pull/1294 +* feat: Add caching support for Redis by @shakkernerd in https://github.com/ai16z/eliza/pull/1295 +* chore: bump version to 0.1.6-alpha.5 by @shakkernerd in https://github.com/ai16z/eliza/pull/1296 +* feat: Update main for v0.1.6-alpha.5 by @odilitime in https://github.com/ai16z/eliza/pull/1290 +* fix: remove clients from default character by @shakkernerd in https://github.com/ai16z/eliza/pull/1297 +* fix: default character model to LLAMALOCAL by @shakkernerd in https://github.com/ai16z/eliza/pull/1299 +* feat: release version 0.1.6 by @shakkernerd in https://github.com/ai16z/eliza/pull/1300 + +#### New Contributors + +
+View New Contributors +* @xwxtwd made their first contribution in https://github.com/ai16z/eliza/pull/784 +* @ProphetX10 made their first contribution in https://github.com/ai16z/eliza/pull/786 +* @mike0295 made their first contribution in https://github.com/ai16z/eliza/pull/789 +* @rarepepi made their first contribution in https://github.com/ai16z/eliza/pull/796 +* @dievardump made their first contribution in https://github.com/ai16z/eliza/pull/799 +* @palsp made their first contribution in https://github.com/ai16z/eliza/pull/824 +* @0xaptosj made their first contribution in https://github.com/ai16z/eliza/pull/818 +* @oxSaturn made their first contribution in https://github.com/ai16z/eliza/pull/850 +* @fede2442 made their first contribution in https://github.com/ai16z/eliza/pull/861 +* @juntao made their first contribution in https://github.com/ai16z/eliza/pull/863 +* @peersky made their first contribution in https://github.com/ai16z/eliza/pull/875 +* @sayangel made their first contribution in https://github.com/ai16z/eliza/pull/570 +* @asianviking made their first contribution in https://github.com/ai16z/eliza/pull/918 +* @golryang made their first contribution in https://github.com/ai16z/eliza/pull/899 +* @onur-saf made their first contribution in https://github.com/ai16z/eliza/pull/912 +* @samuveth made their first contribution in https://github.com/ai16z/eliza/pull/931 +* @boxhock made their first contribution in https://github.com/ai16z/eliza/pull/924 +* @meppsilon made their first contribution in https://github.com/ai16z/eliza/pull/828 +* @ileana-pr made their first contribution in https://github.com/ai16z/eliza/pull/946 +* @sin-bufan made their first contribution in https://github.com/ai16z/eliza/pull/963 +* @0xAsten made their first contribution in https://github.com/ai16z/eliza/pull/962 +* @n00b21337 made their first contribution in https://github.com/ai16z/eliza/pull/949 +* @bkellgren made their first contribution in https://github.com/ai16z/eliza/pull/973 +* @jnaulty made their first contribution in https://github.com/ai16z/eliza/pull/985 +* @dylan1951 made their first contribution in https://github.com/ai16z/eliza/pull/926 +* @GottliebFreudenreich made their first contribution in https://github.com/ai16z/eliza/pull/995 +* @cryptofish7 made their first contribution in https://github.com/ai16z/eliza/pull/1000 +* @tharak123455 made their first contribution in https://github.com/ai16z/eliza/pull/913 +* @Lukapetro made their first contribution in https://github.com/ai16z/eliza/pull/1013 +* @nicky-ru made their first contribution in https://github.com/ai16z/eliza/pull/1009 +* @jzvikart made their first contribution in https://github.com/ai16z/eliza/pull/993 +* @sergical made their first contribution in https://github.com/ai16z/eliza/pull/1024 +* @savageops made their first contribution in https://github.com/ai16z/eliza/pull/997 +* @proteanx made their first contribution in https://github.com/ai16z/eliza/pull/1008 +* @azep-ninja made their first contribution in https://github.com/ai16z/eliza/pull/1032 +* @tqdpham96 made their first contribution in https://github.com/ai16z/eliza/pull/1042 +* @aramxc made their first contribution in https://github.com/ai16z/eliza/pull/1046 +* @arslanaybars made their first contribution in https://github.com/ai16z/eliza/pull/856 +* @derRizzMeister made their first contribution in https://github.com/ai16z/eliza/pull/1034 +* @mgavrila made their first contribution in https://github.com/ai16z/eliza/pull/860 +* @serrrfirat made their first contribution in https://github.com/ai16z/eliza/pull/847 +* @jinbangyi made their first contribution in https://github.com/ai16z/eliza/pull/1039 +* @shengxj1 made their first contribution in https://github.com/ai16z/eliza/pull/1056 +* @AIFlowML made their first contribution in https://github.com/ai16z/eliza/pull/859 +* @arose00 made their first contribution in https://github.com/ai16z/eliza/pull/906 +* @BlockJuic3 made their first contribution in https://github.com/ai16z/eliza/pull/1097 +* @BalanaguYashwanth made their first contribution in https://github.com/ai16z/eliza/pull/1036 +* @Titan-Node made their first contribution in https://github.com/ai16z/eliza/pull/1070 +* @guzus made their first contribution in https://github.com/ai16z/eliza/pull/897 +* @imthatcarlos made their first contribution in https://github.com/ai16z/eliza/pull/1098 +* @brunocalmels made their first contribution in https://github.com/ai16z/eliza/pull/1107 +* @jacob-tucker made their first contribution in https://github.com/ai16z/eliza/pull/1030 +* @qgpcybs made their first contribution in https://github.com/ai16z/eliza/pull/837 +* @daojonesceo made their first contribution in https://github.com/ai16z/eliza/pull/814 +* @MbBrainz made their first contribution in https://github.com/ai16z/eliza/pull/1131 +* @erise133 made their first contribution in https://github.com/ai16z/eliza/pull/1136 +* @owlcode made their first contribution in https://github.com/ai16z/eliza/pull/1141 +* @FWangZil made their first contribution in https://github.com/ai16z/eliza/pull/965 +* @0xNerd made their first contribution in https://github.com/ai16z/eliza/pull/1135 +* @yang-han made their first contribution in https://github.com/ai16z/eliza/pull/1163 +* @thomasWos made their first contribution in https://github.com/ai16z/eliza/pull/1170 +* @9547 made their first contribution in https://github.com/ai16z/eliza/pull/1201 +* @marcNY made their first contribution in https://github.com/ai16z/eliza/pull/1209 +* @danbednarski made their first contribution in https://github.com/ai16z/eliza/pull/1218 +* @vpavlin made their first contribution in https://github.com/ai16z/eliza/pull/1214 +* @simpletrontdip made their first contribution in https://github.com/ai16z/eliza/pull/1229 +* @renlulu made their first contribution in https://github.com/ai16z/eliza/pull/1244 +* @jonathangus made their first contribution in https://github.com/ai16z/eliza/pull/1239 +* @azurwastaken made their first contribution in https://github.com/ai16z/eliza/pull/1236 +* @yjshi2015 made their first contribution in https://github.com/ai16z/eliza/pull/1237 +* @luisalrp made their first contribution in https://github.com/ai16z/eliza/pull/1243 +* @netdragonx made their first contribution in https://github.com/ai16z/eliza/pull/1202 +* @julienbrs made their first contribution in https://github.com/ai16z/eliza/pull/1254 +* @SumeetChougule made their first contribution in https://github.com/ai16z/eliza/pull/1182 +* @tobbelobb made their first contribution in https://github.com/ai16z/eliza/pull/1205 +
+ +#### Full Changelog: https://github.com/ai16z/eliza/compare/v0.1.5...v0.1.6 + +--- + +## v0.1.6-alpha.4 (December 17, 2024) + +#### What's Changed + +* fix: client twitter login and auth handler by @shakkernerd in https://github.com/ai16z/eliza/pull/1158 +* chore: bump version to 0.1.6-alpha.4 by @shakkernerd in https://github.com/ai16z/eliza/pull/1159 + +**Full Changelog**: https://github.com/ai16z/eliza/compare/v0.1.6-alpha.3...v0.1.6-alpha.4 + +--- + +## v0.1.6-alpha.3 (December 17, 2024) + +#### What's Changed + +* feat: update packages version script by @shakkernerd in https://github.com/ai16z/eliza/pull/1150 +* chore: bump version to 0.1.6-alpha.3 by @shakkernerd in https://github.com/ai16z/eliza/pull/1152 +* fix: fetch log level to debug by @shakkernerd in https://github.com/ai16z/eliza/pull/1153 +* fix: fix direct-client ability to start agents by @odilitime in https://github.com/ai16z/eliza/pull/1154 +* chore: develop into main by @shakkernerd in https://github.com/ai16z/eliza/pull/1155 + +**Full Changelog**: https://github.com/ai16z/eliza/compare/v0.1.6-alpha.2...v0.1.6-alpha.3 + +--- + +## v0.1.6-alpha.2 (December 17, 2024) + +December 16th 2024 release + +#### Features (feat) + +- allow agents to create/buy/sell tokens on FOMO.fund's bonding curve in plugin-solana #1135 +- add support for handlebars templating engine as an option #1136 +- Add Discord Team features #1032 +- Add Telegram Team features #1033 +- Updated characters types, Discord & Telegram enhancements #957 +- Plugin evm multichain #1009 +- add plugin-sui #934 +- add plugin-ton #1039 +- Add NEAR Protocol plugin #847 +- multiversx plugin #860 +- add plugin-nft-generation: create Solana NFT collections #1011 +- Lens client #1098 +- allow users to configure models for grok #1091 +- Smoke Test script #1101 +- plugin-story #1030 +- add venice.ai image generation #1057 +- improve X/Twitter login with cookie validation and retry mechanism #856 +- add/change change through REST api (client-direct) #1052 +- twitter client enhancements #913 +- github image cicd #889 +- add README_TH.md in docs directory #1034 +- Adding plugin for ZKsync Era #906 +- Add slack plugin #859 + +#### Fixes (fix) + +- improve fomo integration #1147 +- Fix Parameter Parsing in plugin-evm TransferAction and Return Transaction Hash #965 +- telegram client duplicate function removal #1140 +- discord client duplicate function removal #1125 +- Docker default non-interactive mode for Cloud instances #796 +- Use LARGE models for responses #853 +- load image from diff endpoints #837 +- fix the name #1133 +- add more helpful default agents (Dobby and C3PO) #1124 +- Refactor to prevent unnecessary lockfile changes #1120 +- add missing imports #1104 +- Fixed twitter posts include from including /n in the text #1070 +- handle no termination message #1102 +- return types of createAgent & startAgent #1097 +- syntax error: invalid arithmetic operator #1088 +- client slack linting errors #1086 +- dynamic import of fs module #1084 +- transfer action linting errors #1079 +- errors in swap action in plugin-near #1078 +- remove unnecessary devDependencies #1077 +- missing eslint config file #1076 +- Allow bot to post tweets with images generated by the imageGenerationPlugin #1040 +- discord client ci issues #1054 +- Fix pnpm lockfiles #1055 +- add auto to clients in types to use client-auto #1050 + +#### Chores (chore) + +- fix PR #1147 #1148 +- remove comment #1143 +- fix broken pnpm lockfile #1115 +- fix broken pnpm lockfile #1103 +- debugging start behaviour #1094 +- kill pnpm start #1093 +- increase timeout to 3mins #1092 +- remove unused imports and rename runtime variable #1085 +- remove unnecessary packages #1083 +- fix broken pnpm lockfile #1081 +- add npmignore file #1080 +- commented out unused variables in solana swap action's plugin #1073 +- improve eslint by --cache #1056 +- Update package.json #1031 +- improve smokeTests environment validation and logging #1046 +- improve formatting of .env.example for better readability #897 + +#### Documentation (docs) + +- add README.md to plugin-evm #1095 +- New docs for community section #1114 +- Update docs (CONTRIBUTING.md) #1053 +- Update community section of docs #1111 +- Plugin list numbering and titles #1107 + +#### Tests (test) + +- adding tests. changed files actions.test.ts, messages.test.ts, models.test.ts #998 + +#### Other (Misc) +- clean newlines for new tweet #1141 +- FAL image settings escape hatch #814 +- Revert "Feat: Update community section of docs" #1112 +- Fix/charity #852 + +--- + +## v0.1.6-alpha.1 (December 13, 2024) +Week of December 9th 2024 release, Many bug fixes + +#### What's Changed + +#### Features +- Add Flow Blockchain plugin - [#874](https://github.com/ai16z/eliza/pull/874) +- Add hyperbolic API to Eliza - [#828](https://github.com/ai16z/eliza/pull/828) +- MAX_TWEET_LENGTH env implementation - [#912](https://github.com/ai16z/eliza/pull/912) +- Add advanced Coinbase trading - [#725](https://github.com/ai16z/eliza/pull/725) +- Add readContract/invokeContract functionality to Coinbase plugin - [#923](https://github.com/ai16z/eliza/pull/923) +- Add NanoGPT provider - [#926](https://github.com/ai16z/eliza/pull/926) +- Config eternalai model from env - [#927](https://github.com/ai16z/eliza/pull/927) +- Add hyperbolic env vars to override model class - [#974](https://github.com/ai16z/eliza/pull/974) +- Add TEE Mode to Solana Plugin - [#835](https://github.com/ai16z/eliza/pull/835) +- Add callback handler to runtime evaluate method - [#938](https://github.com/ai16z/eliza/pull/938) +- Add dynamic watch paths for agent development - [#931](https://github.com/ai16z/eliza/pull/931) +- Plugin evm multichain - [#1009](https://github.com/ai16z/eliza/pull/1009) +- Add venice.ai API model provider - [#1008](https://github.com/ai16z/eliza/pull/1008) +- Improve Twitter client with action processing - [#1007](https://github.com/ai16z/eliza/pull/1007) +- Add custom fetch logic for agent - [#1010](https://github.com/ai16z/eliza/pull/1010) +- Add Discord Team features - [#1032](https://github.com/ai16z/eliza/pull/1032) +- Improve voice processing and add deepgram transcription option - [#1026](https://github.com/ai16z/eliza/pull/1026) +- Create example folder with example plugin - [#1004](https://github.com/ai16z/eliza/pull/1004) + +#### Fixes +- Re-enable coverage report upload to Codecov in CI workflow - [#880](https://github.com/ai16z/eliza/pull/880) +- Twitter actions not triggering - [#903](https://github.com/ai16z/eliza/pull/903) +- Evaluation JSON parsing - [#907](https://github.com/ai16z/eliza/pull/907) +- Telegram response memory userId to agentId - [#948](https://github.com/ai16z/eliza/pull/948) +- Farcaster client cleanup and fixed response logic - [#914](https://github.com/ai16z/eliza/pull/914) +- Use MAX_TWEET_LENGTH from setting - [#960](https://github.com/ai16z/eliza/pull/960) +- Correct EVM plugin activation condition - [#962](https://github.com/ai16z/eliza/pull/962) +- Docker trying to filter out missing docs package - [#978](https://github.com/ai16z/eliza/pull/978) +- Re-enable generateNewTweetLoop / lint fixes - [#1043](https://github.com/ai16z/eliza/pull/1043) +- Fix Twitter Search Logic and add Galadriel Image Model - [#994](https://github.com/ai16z/eliza/pull/994) +- Fix farcaster client process action issue - [#963](https://github.com/ai16z/eliza/pull/963) +- Fix typo in characterfile.md - [#986](https://github.com/ai16z/eliza/pull/986) +- Fix typo initialize - [#1000](https://github.com/ai16z/eliza/pull/1000) +- Fix package name in FAQ - [#937](https://github.com/ai16z/eliza/pull/937) + +#### Chores +- Disable building docs on build command - [#884](https://github.com/ai16z/eliza/pull/884) +- Enhance dev script, performance improvement, and add help message - [#887](https://github.com/ai16z/eliza/pull/887) +- Improve dev command - [#892](https://github.com/ai16z/eliza/pull/892) +- Consistent language for Community & Contact link label - [#899](https://github.com/ai16z/eliza/pull/899) +- Fix broken lockfile - [#977](https://github.com/ai16z/eliza/pull/977) +- Pass env variables when setting up GOAT and update GOAT readme - [#898](https://github.com/ai16z/eliza/pull/898) +- Deprecate text-based way of generating JSON - [#920](https://github.com/ai16z/eliza/pull/920) +- Bring Develop up to date with HEAD - [#1006](https://github.com/ai16z/eliza/pull/1006) +- Push Develop into Main - [#1028](https://github.com/ai16z/eliza/pull/1028) +- Release develop into main - [#1045](https://github.com/ai16z/eliza/pull/1045) + +#### Docs +- Add What Did You Get Done This Week #4 summaries and timestamps - [#895](https://github.com/ai16z/eliza/pull/895) +- Add templates documentation to the project - [#1013](https://github.com/ai16z/eliza/pull/1013) +- Update README.md - [#1024](https://github.com/ai16z/eliza/pull/1024) and [#1025](https://github.com/ai16z/eliza/pull/1025) +- Create README_TH.md - [#918](https://github.com/ai16z/eliza/pull/918) +- Add AI Agent Dev School Tutorial Link - [#1038](https://github.com/ai16z/eliza/pull/1038) +- Add WSL Setup Guide to documentation - [#983](https://github.com/ai16z/eliza/pull/983) + +#### Tests +- Initial release of smoke/integration tests + testing framework - [#993](https://github.com/ai16z/eliza/pull/993) +- Adding parsing tests. Changed files parsing.test.ts - [#996](https://github.com/ai16z/eliza/pull/996) + + +#### New Contributors +
+New Contributors +* @asianviking made their first contribution in https://github.com/ai16z/eliza/pull/918 +* @golryang made their first contribution in https://github.com/ai16z/eliza/pull/899 +* @onur-saf made their first contribution in https://github.com/ai16z/eliza/pull/912 +* @samuveth made their first contribution in https://github.com/ai16z/eliza/pull/931 +* @boxhock made their first contribution in https://github.com/ai16z/eliza/pull/924 +* @meppsilon made their first contribution in https://github.com/ai16z/eliza/pull/828 +* @ileana-pr made their first contribution in https://github.com/ai16z/eliza/pull/946 +* @sin-bufan made their first contribution in https://github.com/ai16z/eliza/pull/963 +* @0xAsten made their first contribution in https://github.com/ai16z/eliza/pull/962 +* @n00b21337 made their first contribution in https://github.com/ai16z/eliza/pull/949 +* @bkellgren made their first contribution in https://github.com/ai16z/eliza/pull/973 +* @jnaulty made their first contribution in https://github.com/ai16z/eliza/pull/985 +* @dylan1951 made their first contribution in https://github.com/ai16z/eliza/pull/926 +* @GottliebFreudenreich made their first contribution in https://github.com/ai16z/eliza/pull/995 +* @cryptofish7 made their first contribution in https://github.com/ai16z/eliza/pull/1000 +* @tharak123455 made their first contribution in https://github.com/ai16z/eliza/pull/913 +* @Lukapetro made their first contribution in https://github.com/ai16z/eliza/pull/1013 +* @nicky-ru made their first contribution in https://github.com/ai16z/eliza/pull/1009 +* @jzvikart made their first contribution in https://github.com/ai16z/eliza/pull/993 +* @sergical made their first contribution in https://github.com/ai16z/eliza/pull/1024 +* @savageops made their first contribution in https://github.com/ai16z/eliza/pull/997 +* @proteanx made their first contribution in https://github.com/ai16z/eliza/pull/1008 +* @azep-ninja made their first contribution in https://github.com/ai16z/eliza/pull/1032 +* @tqdpham96 made their first contribution in https://github.com/ai16z/eliza/pull/1042 +
+ +#### Full Changelog: https://github.com/ai16z/eliza/compare/v0.1.5-alpha.5...v0.1.6-alpha.1 + +--- + +## v0.1.5-alpha.5 (December 07, 2024) + +#### What's Changed +* feat: working farcaster client with neynar by @sayangel in https://github.com/ai16z/eliza/pull/570 + +
+New Contributors +* @sayangel made their first contribution in https://github.com/ai16z/eliza/pull/570 +
+ +#### Full Changelog: https://github.com/ai16z/eliza/compare/v0.1.5-alpha.4...v0.1.5-alpha.5 + +--- + +## v0.1.5-alpha.4 (December 06, 2024) + +#### What's Changed +* feat: add coinbase ERC20, ERC721, and ERC1155 tokenContract deployment / invokement plugin by @monilpat in https://github.com/ai16z/eliza/pull/803 +* fix: Include scripts/postinstall.js in the final NPM package by @martincik in https://github.com/ai16z/eliza/pull/843 +* fix: run release workflow after a github release is created by @cygaar in https://github.com/ai16z/eliza/pull/846 +* feat: add Aptos plugin by @0xaptosj in https://github.com/ai16z/eliza/pull/818 +* fix: plugins docs by @cygaar in https://github.com/ai16z/eliza/pull/848 +* fix: Use LARGE models for responses by @lalalune in https://github.com/ai16z/eliza/pull/853 +* Update Node version in local-development.md by @oxSaturn in https://github.com/ai16z/eliza/pull/850 +* Updated quickstart.md to contemplate common issue by @fede2442 in https://github.com/ai16z/eliza/pull/861 +* Remove duplicated coinbase CDP options in .env.example by @juntao in https://github.com/ai16z/eliza/pull/863 +* feat: coinbase webhook + add more examples + testing by @monilpat in https://github.com/ai16z/eliza/pull/801 +* test: adding environment and knowledge tests by @ai16z-demirix in https://github.com/ai16z/eliza/pull/862 +* Update quickstart.md by @oxSaturn in https://github.com/ai16z/eliza/pull/872 +* docs: Add AI Agent Dev School Parts 2 and 3 summaries and timestamps by @YoungPhlo in https://github.com/ai16z/eliza/pull/877 +* Add google model env vars by @peersky in https://github.com/ai16z/eliza/pull/875 + +#### New Contributors + +
+New Contributors +* @0xaptosj made their first contribution in https://github.com/ai16z/eliza/pull/818 +* @oxSaturn made their first contribution in https://github.com/ai16z/eliza/pull/850 +* @fede2442 made their first contribution in https://github.com/ai16z/eliza/pull/861 +* @juntao made their first contribution in https://github.com/ai16z/eliza/pull/863 +* @peersky made their first contribution in https://github.com/ai16z/eliza/pull/875 +
+ +#### Full Changelog: https://github.com/ai16z/eliza/compare/v0.1.5-alpha.3...v0.1.5-alpha.4 + +--- + +## v0.1.5-alpha.3 (December 04, 2024) + +#### What's Changed +* fix: lerna publish command by @cygaar in https://github.com/ai16z/eliza/pull/811 +* feat: (core) Add circuit breaker pattern for database operations -โ€ฆ by @augchan42 in https://github.com/ai16z/eliza/pull/812 +* fix: pin all node dependencies + update @solana/web3.js to safe version by @cygaar in https://github.com/ai16z/eliza/pull/832 +* fix: docker-setup.md by @Freytes in https://github.com/ai16z/eliza/pull/826 +* fix: twitter cache expires by @palsp in https://github.com/ai16z/eliza/pull/824 +* chore: bump version to 0.1.5-alpha.1 by @cygaar in https://github.com/ai16z/eliza/pull/833 +* chore: revert viem package version by @shakkernerd in https://github.com/ai16z/eliza/pull/834 +* chore: Revert/viem version and bump @goat-sdk/plugin-erc20 by @shakkernerd in https://github.com/ai16z/eliza/pull/836 +* chore: bump version to 0.1.5-alpha.3 by @cygaar in https://github.com/ai16z/eliza/pull/838 + +#### New Contributors + +
+New Contributors +* @palsp made their first contribution in https://github.com/ai16z/eliza/pull/824 +
+ +#### Full Changelog: https://github.com/ai16z/eliza/compare/v0.1.5-alpha.0...v0.1.5-alpha.3 + +--- + +## v0.1.5-alpha.0 (December 03, 2024) + +#### What's Changed +* fix: When the plugins field in the .character.json file is configured with plugin name. by @xwxtwd in https://github.com/ai16z/eliza/pull/784 +* fixs: uuid compatible for number by @tomguluson92 in https://github.com/ai16z/eliza/pull/785 +* Update generation.ts to fix TOGETHER/LLAMACLOUD image generation by @ProphetX10 in https://github.com/ai16z/eliza/pull/786 +* fix: dev command by @shakkernerd in https://github.com/ai16z/eliza/pull/793 +* chore: update README_KOR.md to match latest README.md by @mike0295 in https://github.com/ai16z/eliza/pull/789 +* fix: enviroment -> environment by @tomguluson92 in https://github.com/ai16z/eliza/pull/787 +* fix: Docker default non-interactive mode for Cloud instances by @rarepepi in https://github.com/ai16z/eliza/pull/796 +* fix: swap type error, create user trust on first message in telegram by @MarcoMandar in https://github.com/ai16z/eliza/pull/800 +* fix: update npm publication workflow by @cygaar in https://github.com/ai16z/eliza/pull/805 +* refactor: Improve actions samples random selection by @dievardump in https://github.com/ai16z/eliza/pull/799 +* fix: part 2 of updating the npm publish workflow by @cygaar in https://github.com/ai16z/eliza/pull/806 +* fix: release workflow part 3 by @cygaar in https://github.com/ai16z/eliza/pull/807 +* fix: update package version to v0.1.5-alpha.0 by @cygaar in https://github.com/ai16z/eliza/pull/808 + +#### New Contributors + +
+New Contributors +* @xwxtwd made their first contribution in https://github.com/ai16z/eliza/pull/784 +* @ProphetX10 made their first contribution in https://github.com/ai16z/eliza/pull/786 +* @mike0295 made their first contribution in https://github.com/ai16z/eliza/pull/789 +* @rarepepi made their first contribution in https://github.com/ai16z/eliza/pull/796 +* @dievardump made their first contribution in https://github.com/ai16z/eliza/pull/799 +
+ +#### Full Changelog: https://github.com/ai16z/eliza/compare/v0.1.5...v0.1.5-alpha.0 + +--- + +## v0.1.5 (December 02, 2024) + +#### What's Changed +* feat: adding back the renovate file for automated security scanning by @sirkitree in https://github.com/ai16z/eliza/pull/358 +* feat: readme and linting by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/449 +* fix: postgres embedding issues by @tarrencev in https://github.com/ai16z/eliza/pull/425 +* fix: X dry run by @laser-riot in https://github.com/ai16z/eliza/pull/452 +* Add npm install instructions to homepage header by @null-hax in https://github.com/ai16z/eliza/pull/459 +* docs: Fix my name in stream notes by @odilitime in https://github.com/ai16z/eliza/pull/442 +* feat: create-eliza-app by @coffeeorgreentea in https://github.com/ai16z/eliza/pull/462 +* fix: Add missing fuzzystrmatch extension for levenshtein() method to postgresql schema.sql definition by @martincik in https://github.com/ai16z/eliza/pull/460 +* fix: Fixing failling tests token.test.ts and videoGeneration.test.ts by @ai16z-demirix in https://github.com/ai16z/eliza/pull/465 +* feat: init github client by @tarrencev in https://github.com/ai16z/eliza/pull/456 +* docs: Add Discord username question by @odilitime in https://github.com/ai16z/eliza/pull/468 +* docs: Update Contributors to bring inline with PR468 by @odilitime in https://github.com/ai16z/eliza/pull/470 +* feat: Cache Manager by @bmgalego in https://github.com/ai16z/eliza/pull/378 +* ollama generate case was using console.debug. by @drew-royster in https://github.com/ai16z/eliza/pull/474 +* fix: ci by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/475 +* feat: Twitter Refactor by @bmgalego in https://github.com/ai16z/eliza/pull/478 +* refactor: add template types by @vivoidos in https://github.com/ai16z/eliza/pull/479 +* feat: adds check by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/466 +* fix: ignored modelEndpointOverride in generation by @darwintree in https://github.com/ai16z/eliza/pull/446 +* feat: Improvements by @bmgalego in https://github.com/ai16z/eliza/pull/482 +* fix: agent type error and sqlite file env by @bmgalego in https://github.com/ai16z/eliza/pull/484 +* fix: agent loadCharacters file resolver by @bmgalego in https://github.com/ai16z/eliza/pull/486 +* fix: fix character path loading by @bmgalego in https://github.com/ai16z/eliza/pull/487 +* fix: added missing packages to tsup configs' externals by @massivefermion in https://github.com/ai16z/eliza/pull/488 +* docs: Create best-practices.md documentation by @snobbee in https://github.com/ai16z/eliza/pull/463 +* feat: Added TWITTER_COOKIE example on quickstart.md by @haeunchin in https://github.com/ai16z/eliza/pull/476 +* feat: Improve knowledge embeddings by @tarrencev in https://github.com/ai16z/eliza/pull/472 +* feat: improve type saftey by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/494 +* fix: improve embeddings by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/496 +* node-v by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/501 +* fix: deps by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/503 +* chore: add contributor license by @awidearray in https://github.com/ai16z/eliza/pull/502 +* fix: remove sol dep by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/504 +* fix: issue with npm by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/505 +* fix: services fix by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/509 +* fix: speech service fix by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/512 +* docs: add template and client configuration guide by @oguzserdar in https://github.com/ai16z/eliza/pull/510 +* Wrap `fastembed` in try catch to allow non node environments to build by @antpb in https://github.com/ai16z/eliza/pull/508 +* fix: husky and pre-commit by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/514 +* fix: lint by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/515 +* test: add linter to all packages and enable vitest by @snobbee in https://github.com/ai16z/eliza/pull/490 +* feat: add coinbase plugin starting with cb commerce functionality by @monilpat in https://github.com/ai16z/eliza/pull/513 +* fix: Gracefully Handle Add Participants Unique Constraint Error in Postgres by @VarKrishin in https://github.com/ai16z/eliza/pull/495 +* fix: Ollama fix by @yodamaster726 in https://github.com/ai16z/eliza/pull/524 +* fix: ollama local and llama local by @yodamaster726 in https://github.com/ai16z/eliza/pull/521 +* fix: Fix/telegram by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/530 +* fix(deps): update dependency @ai-sdk/anthropic to ^0.0.56 by @renovate in https://github.com/ai16z/eliza/pull/528 +* fix(deps): pin dependencies by @renovate in https://github.com/ai16z/eliza/pull/529 +* chore(deps): pin dependencies by @renovate in https://github.com/ai16z/eliza/pull/526 +* fix(deps): update dependency @ai-sdk/openai to v1.0.4 by @renovate in https://github.com/ai16z/eliza/pull/533 +* fix(deps): update dependency @ai-sdk/google-vertex to ^0.0.43 by @renovate in https://github.com/ai16z/eliza/pull/532 +* fix: pass runtime to video service by @0xFlicker in https://github.com/ai16z/eliza/pull/535 +* fix: discord voice memory id not unique by @bmgalego in https://github.com/ai16z/eliza/pull/540 +* fix: db queries not using agentId in all memory queries by @bmgalego in https://github.com/ai16z/eliza/pull/539 +* fix: error in getGoals and remove coinbase package-lock.json by @bmgalego in https://github.com/ai16z/eliza/pull/545 +* fix: Use BigInt for tweet IDs in client-twitter by @wraitii in https://github.com/ai16z/eliza/pull/552 +* fix: add try catch to process action by @bmgalego in https://github.com/ai16z/eliza/pull/546 +* fix: generateText format consistency by @tomguluson92 in https://github.com/ai16z/eliza/pull/550 +* fix: bump echogarden to fix case sensitive issue by @0xFlicker in https://github.com/ai16z/eliza/pull/561 +* Improved Twitter Documentation by @grallc in https://github.com/ai16z/eliza/pull/559 +* fix: sql command by @0xFlicker in https://github.com/ai16z/eliza/pull/560 +* fix: remove db adapters depencies from core and remove plugin-node from telegram by @bmgalego in https://github.com/ai16z/eliza/pull/571 +* fix: add missing documents and knowledge memory managers to runtime interface by @bmgalego in https://github.com/ai16z/eliza/pull/572 +* fix: remove postinstall script from plugin-coinbase by @bmgalego in https://github.com/ai16z/eliza/pull/573 +* fix: postgres by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/557 +* fix: Token provider getHighestLiquidityPair by @bmgalego in https://github.com/ai16z/eliza/pull/547 +* Add community stream notes for WDYGDTW 2 by @YoungPhlo in https://github.com/ai16z/eliza/pull/580 +* feat: add new pages by @madjin in https://github.com/ai16z/eliza/pull/581 +* fix: Devex Fixes by @lalalune in https://github.com/ai16z/eliza/pull/583 +* feat: update api docs by @madjin in https://github.com/ai16z/eliza/pull/582 +* feat: Update packages by @lalalune in https://github.com/ai16z/eliza/pull/584 +* Update dependency @echogarden/espeak-ng-emscripten to v0.3.3 by @renovate in https://github.com/ai16z/eliza/pull/537 +* Update dependency @opendocsg/pdf2md to v0.1.32 by @renovate in https://github.com/ai16z/eliza/pull/538 +* Update dependency agent-twitter-client to v0.0.14 by @renovate in https://github.com/ai16z/eliza/pull/542 +* Update docusaurus monorepo to v3.6.3 by @renovate in https://github.com/ai16z/eliza/pull/543 +* Update dependency clsx to v2.1.1 by @renovate in https://github.com/ai16z/eliza/pull/544 +* feat: More package updates by @lalalune in https://github.com/ai16z/eliza/pull/585 +* Pin dependency vue to 3.5.13 by @renovate in https://github.com/ai16z/eliza/pull/527 +* feat: Shaw/realityspiral/coinbase fixes by @lalalune in https://github.com/ai16z/eliza/pull/586 +* feat: implement coinbase mass payments across base/sol/eth/pol/arb by @monilpat in https://github.com/ai16z/eliza/pull/569 +* Shaw/logger fixes by @lalalune in https://github.com/ai16z/eliza/pull/587 +* fix: missing updates for logger.ts by @yodamaster726 in https://github.com/ai16z/eliza/pull/525 +* fix: React Client fixes by @lalalune in https://github.com/ai16z/eliza/pull/588 +* feat: add agent selection, router and sidebar layout in React client by @vivoidos in https://github.com/ai16z/eliza/pull/536 +* fix: fixing failing goals, cache and token tests by @ai16z-demirix in https://github.com/ai16z/eliza/pull/522 +* fix: Shaw/fix zerog by @lalalune in https://github.com/ai16z/eliza/pull/589 +* feat: Add 0G plugin for file storage by @Wilbert957 in https://github.com/ai16z/eliza/pull/416 +* fix: enable test run in CI for core package by @pgoos in https://github.com/ai16z/eliza/pull/590 +* CS - first api hookups. by @justabot in https://github.com/ai16z/eliza/pull/564 +* feat: update sidebars by @madjin in https://github.com/ai16z/eliza/pull/593 +* Download updates by @justabot in https://github.com/ai16z/eliza/pull/594 +* feat: Farcaster Client by @bmgalego in https://github.com/ai16z/eliza/pull/386 +* Pr 33 by @MarcoMandar in https://github.com/ai16z/eliza/pull/596 +* fix: discord crash on sending message to null channel by @odilitime in https://github.com/ai16z/eliza/pull/598 +* fix: db queries in sqljs database adapter not using agentId by @bmgalego in https://github.com/ai16z/eliza/pull/606 +* fix: agent DirectClient is not a type by @odilitime in https://github.com/ai16z/eliza/pull/605 +* fix: add Memory Manager getMemoriesByRoomIds missing tableName param by @bmgalego in https://github.com/ai16z/eliza/pull/602 +* fix: time prompt to include UTC, convert to verbose english to help prompting by @odilitime in https://github.com/ai16z/eliza/pull/603 +* feat: add knowledge to state by @bmgalego in https://github.com/ai16z/eliza/pull/600 +* feat: Adding tests for actions and generation. Skiping test step in defaultCharacters by @ai16z-demirix in https://github.com/ai16z/eliza/pull/591 +* feat: sell simulation service by @MarcoMandar in https://github.com/ai16z/eliza/pull/597 +* fix: use correct getCachedEmbeddings query_field_sub_name by @bmgalego in https://github.com/ai16z/eliza/pull/607 +* fix: knowledge module exporting process by @bmgalego in https://github.com/ai16z/eliza/pull/609 +* fix: add client farcaster templates to character type by @bmgalego in https://github.com/ai16z/eliza/pull/610 +* feat: make node-plugin lazy-loaded for faster boot times by @bmgalego in https://github.com/ai16z/eliza/pull/599 +* chore(nvmrc): update Node.js version from v23.1.0 to v23.3.0 by @wolfcito in https://github.com/ai16z/eliza/pull/611 +* fix: Fix buttplug.io integration and merge by @lalalune in https://github.com/ai16z/eliza/pull/612 +* feat: Add buttplug.io integration by @8times4 in https://github.com/ai16z/eliza/pull/517 +* fix: Update and add Conflux by @lalalune in https://github.com/ai16z/eliza/pull/613 +* feat: add Conflux plugin by @darwintree in https://github.com/ai16z/eliza/pull/481 +* feat: Add decentralized inferencing for Eliza (LLAMA, Hermes, Flux) by @genesis-0000 in https://github.com/ai16z/eliza/pull/516 +* fix: memory similarity log & new knowledge ingestion by @yoniebans in https://github.com/ai16z/eliza/pull/616 +* feat: starknet portfolio provider by @milancermak in https://github.com/ai16z/eliza/pull/595 +* bugfix: Modify docker run error after agent folder move by @THtianhao in https://github.com/ai16z/eliza/pull/458 +* fix: handle when tweet_results is empty better by @odilitime in https://github.com/ai16z/eliza/pull/620 +* fix: small improvements to agent process exits by @cygaar in https://github.com/ai16z/eliza/pull/625 +* Feat/sell simulation by @MarcoMandar in https://github.com/ai16z/eliza/pull/627 +* fix: Add Tweet Response Deduplication Check by @tsubasakong in https://github.com/ai16z/eliza/pull/622 +* fix: node package builds by @cygaar in https://github.com/ai16z/eliza/pull/636 +* dicord bot voice by @tcm390 in https://github.com/ai16z/eliza/pull/633 +* feat: Initial TEE Plugin by @HashWarlock in https://github.com/ai16z/eliza/pull/632 +* Notes for AI Agent Dev School #1 by @YoungPhlo in https://github.com/ai16z/eliza/pull/638 +* feat: Merge EVM and add character override by @lalalune in https://github.com/ai16z/eliza/pull/643 +* fix: Add docs, update providers for TEE Plugin by @HashWarlock in https://github.com/ai16z/eliza/pull/640 +* fix: running a character.json fails when running per docs by @yodamaster726 in https://github.com/ai16z/eliza/pull/624 +* feat: support starkname by @irisdv in https://github.com/ai16z/eliza/pull/628 +* refactor: better db connection handling by @cygaar in https://github.com/ai16z/eliza/pull/635 +* add connection instruction for connecting with X by @zjasper666 in https://github.com/ai16z/eliza/pull/641 +* Feat/simulation sell types by @MarcoMandar in https://github.com/ai16z/eliza/pull/642 +* updates postgres setup instructions in docs by @DataRelic in https://github.com/ai16z/eliza/pull/645 +* Update ci.yaml by @snobbee in https://github.com/ai16z/eliza/pull/652 +* feat: improve browser service by @cygaar in https://github.com/ai16z/eliza/pull/653 +* added support for LlamaLocal's path outside plugin-node/dist by @dr-fusion in https://github.com/ai16z/eliza/pull/649 +* CS - adding better errors and readme. by @justabot in https://github.com/ai16z/eliza/pull/654 +* feat: implement coinbase trading by @monilpat in https://github.com/ai16z/eliza/pull/608 +* fix: pnpm-lock.yaml by @monilpat in https://github.com/ai16z/eliza/pull/664 +* feat: add minimal config file for code cov by @pgoos in https://github.com/ai16z/eliza/pull/659 +* fix: embedding search for non-openai models by @cygaar in https://github.com/ai16z/eliza/pull/660 +* feat: evm pubkey derivation by @St4rgarden in https://github.com/ai16z/eliza/pull/667 +* fix: add missing commands to quickstart by @0xaguspunk in https://github.com/ai16z/eliza/pull/665 +* Add Galadriel LLM Inference Provider by @dontAskVI in https://github.com/ai16z/eliza/pull/651 +* redpill custom models by @v1xingyue in https://github.com/ai16z/eliza/pull/668 +* feat: Add wallet history (transactions, balances) to coinbase providers by @monilpat in https://github.com/ai16z/eliza/pull/658 +* fix: discord permissions and duplicate reactions, new /joinchannel command by @augchan42 in https://github.com/ai16z/eliza/pull/662 +* feat: add image text model provider separation and fal.ai integration by @yoniebans in https://github.com/ai16z/eliza/pull/650 +* feat : whatsapp by @awidearray in https://github.com/ai16z/eliza/pull/626 +* feat: add ICP token creation support by @asDNSk in https://github.com/ai16z/eliza/pull/357 +* integrate tavily by @tcm390 in https://github.com/ai16z/eliza/pull/518 +* incorrect package install location Update plugins.md by @cryptoradagast in https://github.com/ai16z/eliza/pull/669 +* fix: eslint not working by @cygaar in https://github.com/ai16z/eliza/pull/672 +* fix: add missing viem dependency by @HashWarlock in https://github.com/ai16z/eliza/pull/674 +* fix: embeddings for messages with urls by @cygaar in https://github.com/ai16z/eliza/pull/671 +* Fix: run tests with coverage by @pgoos in https://github.com/ai16z/eliza/pull/676 +* feat: improve embeddings, models and connectivity by @augchan42 in https://github.com/ai16z/eliza/pull/677 +* fix: Make TEE Plugin available to launch agent & fix previous launch error by @HashWarlock in https://github.com/ai16z/eliza/pull/678 +* fix: getEmbeddingZeroVector calls by @cygaar in https://github.com/ai16z/eliza/pull/682 +* feat: add Turborepo by @lalalune in https://github.com/ai16z/eliza/pull/670 +* feat: make twitter client polling configurable by @cygaar in https://github.com/ai16z/eliza/pull/683 +* chore: remove unused packages introduced in #677 by @shakkernerd in https://github.com/ai16z/eliza/pull/693 +* Fix/logging issues by @augchan42 in https://github.com/ai16z/eliza/pull/688 +* chore: Remove web-agent folder - duplicate of client folder by @shakkernerd in https://github.com/ai16z/eliza/pull/699 +* fix: update docker image to support turbo and reduce build time by @HashWarlock in https://github.com/ai16z/eliza/pull/702 +* fix: Switch from tiktoken to js-tiktoken for worker compatibility by @antpb in https://github.com/ai16z/eliza/pull/703 +* fix: simplify linting dependencies by @cygaar in https://github.com/ai16z/eliza/pull/721 +* fix: twitter recent interactions by @cygaar in https://github.com/ai16z/eliza/pull/729 +* feat: add new pages, update sidebar by @madjin in https://github.com/ai16z/eliza/pull/728 +* feat: increase knowledge context by @cygaar in https://github.com/ai16z/eliza/pull/730 +* refactor: ClientBase to use a map for managing multiple Twitter clients by account identifier by @tcm390 in https://github.com/ai16z/eliza/pull/722 +* fix: move `fastembed` import to the isnode condition check by @antpb in https://github.com/ai16z/eliza/pull/709 +* chore: remove unused env var by @2pmflow in https://github.com/ai16z/eliza/pull/737 +* fix (core): message completion footer format by @CodingTux in https://github.com/ai16z/eliza/pull/742 +* fix(deps): pin dependencies by @renovate in https://github.com/ai16z/eliza/pull/744 +* fix: packagejson updated to latest agent-client 0.0.16 by @denizekiz in https://github.com/ai16z/eliza/pull/753 +* Add running with Gitpod by @v1xingyue in https://github.com/ai16z/eliza/pull/758 +* fix(deps): update dependency @ai-sdk/openai to v1.0.5 by @renovate in https://github.com/ai16z/eliza/pull/751 +* Update environment, add twitter quality of life updates by @lalalune in https://github.com/ai16z/eliza/pull/765 +* fix: improve twitter post content quality by @cygaar in https://github.com/ai16z/eliza/pull/763 +* fix(deps): update dependency tailwind-merge to v2.5.5 by @renovate in https://github.com/ai16z/eliza/pull/761 +* fix: recentPosts always empty by @tcm390 in https://github.com/ai16z/eliza/pull/756 +* feat: Pin dependencies and unify tsconfig by @lalalune in https://github.com/ai16z/eliza/pull/767 +* Update dependency dompurify to v3.2.2 by @renovate in https://github.com/ai16z/eliza/pull/548 +* Update dependency @supabase/supabase-js to v2.46.2 by @renovate in https://github.com/ai16z/eliza/pull/754 +* Update dependency clsx to v2.1.1 by @renovate in https://github.com/ai16z/eliza/pull/760 +* Update dependency uuid to v11.0.3 by @renovate in https://github.com/ai16z/eliza/pull/766 +* fix: follow-up improvements for ICP token creation (PR #357) by @asDNSk in https://github.com/ai16z/eliza/pull/757 +* feat: more dependency updates by @lalalune in https://github.com/ai16z/eliza/pull/771 +* fix(deps): replace dependency eslint-plugin-vitest with @vitest/eslint-plugin 1.0.1 by @renovate in https://github.com/ai16z/eliza/pull/749 +* chore(deps): update dependency @eslint/js to v9.16.0 by @renovate in https://github.com/ai16z/eliza/pull/769 +* chore(deps): update dependency @vitest/eslint-plugin to v1.1.13 by @renovate in https://github.com/ai16z/eliza/pull/770 +* fix(deps): update sqlite related by @renovate in https://github.com/ai16z/eliza/pull/768 +* fix: Integrate jin's docs changes and rebuild docs with a16z by @lalalune in https://github.com/ai16z/eliza/pull/772 +* feat: Create community section by @madjin in https://github.com/ai16z/eliza/pull/745 +* Integrate goat plugin by @lalalune in https://github.com/ai16z/eliza/pull/773 +* feat: add goat plugin by @0xaguspunk in https://github.com/ai16z/eliza/pull/736 +* Add decentralized GenAI backend by @L-jasmine in https://github.com/ai16z/eliza/pull/762 +* Integrate more LLMs, fix case issue in switch by @lalalune in https://github.com/ai16z/eliza/pull/774 +* Merge more model providers and fix issues by @lalalune in https://github.com/ai16z/eliza/pull/775 +* feat: Add two more providers: Ali Bailian(Qwen) and Volengine(Doubao, Bytedance) by @btspoony in https://github.com/ai16z/eliza/pull/747 +* add simulator tutor for plugin-tee docs by @shelvenzhou in https://github.com/ai16z/eliza/pull/746 +* feat: (voice) enhance character card voice configuration support by @augchan42 in https://github.com/ai16z/eliza/pull/698 +* feat: donate 1% of coinbase transactions by default by @monilpat in https://github.com/ai16z/eliza/pull/759 +* Create docker-setup.md by @Freytes in https://github.com/ai16z/eliza/pull/776 +* fix: Refactor image interface and update to move llama cloud -> together provider by @lalalune in https://github.com/ai16z/eliza/pull/777 +* fix: Text2Image interface refactored by @tomguluson92 in https://github.com/ai16z/eliza/pull/752 +* refactor: refactor dockerfile to reduce image and build time by @HashWarlock in https://github.com/ai16z/eliza/pull/782 +* feat: Update default character by @lalalune in https://github.com/ai16z/eliza/pull/781 + +#### New Contributors + +
+New Contributors +* @laser-riot made their first contribution in https://github.com/ai16z/eliza/pull/452 +* @null-hax made their first contribution in https://github.com/ai16z/eliza/pull/459 +* @coffeeorgreentea made their first contribution in https://github.com/ai16z/eliza/pull/462 +* @drew-royster made their first contribution in https://github.com/ai16z/eliza/pull/474 +* @darwintree made their first contribution in https://github.com/ai16z/eliza/pull/446 +* @massivefermion made their first contribution in https://github.com/ai16z/eliza/pull/488 +* @snobbee made their first contribution in https://github.com/ai16z/eliza/pull/463 +* @haeunchin made their first contribution in https://github.com/ai16z/eliza/pull/476 +* @awidearray made their first contribution in https://github.com/ai16z/eliza/pull/502 +* @antpb made their first contribution in https://github.com/ai16z/eliza/pull/508 +* @VarKrishin made their first contribution in https://github.com/ai16z/eliza/pull/495 +* @yodamaster726 made their first contribution in https://github.com/ai16z/eliza/pull/524 +* @0xFlicker made their first contribution in https://github.com/ai16z/eliza/pull/535 +* @wraitii made their first contribution in https://github.com/ai16z/eliza/pull/552 +* @tomguluson92 made their first contribution in https://github.com/ai16z/eliza/pull/550 +* @grallc made their first contribution in https://github.com/ai16z/eliza/pull/559 +* @YoungPhlo made their first contribution in https://github.com/ai16z/eliza/pull/580 +* @Wilbert957 made their first contribution in https://github.com/ai16z/eliza/pull/416 +* @pgoos made their first contribution in https://github.com/ai16z/eliza/pull/590 +* @justabot made their first contribution in https://github.com/ai16z/eliza/pull/564 +* @wolfcito made their first contribution in https://github.com/ai16z/eliza/pull/611 +* @8times4 made their first contribution in https://github.com/ai16z/eliza/pull/517 +* @genesis-0000 made their first contribution in https://github.com/ai16z/eliza/pull/516 +* @yoniebans made their first contribution in https://github.com/ai16z/eliza/pull/616 +* @milancermak made their first contribution in https://github.com/ai16z/eliza/pull/595 +* @THtianhao made their first contribution in https://github.com/ai16z/eliza/pull/458 +* @cygaar made their first contribution in https://github.com/ai16z/eliza/pull/625 +* @irisdv made their first contribution in https://github.com/ai16z/eliza/pull/628 +* @zjasper666 made their first contribution in https://github.com/ai16z/eliza/pull/641 +* @DataRelic made their first contribution in https://github.com/ai16z/eliza/pull/645 +* @dr-fusion made their first contribution in https://github.com/ai16z/eliza/pull/649 +* @St4rgarden made their first contribution in https://github.com/ai16z/eliza/pull/667 +* @0xaguspunk made their first contribution in https://github.com/ai16z/eliza/pull/665 +* @dontAskVI made their first contribution in https://github.com/ai16z/eliza/pull/651 +* @augchan42 made their first contribution in https://github.com/ai16z/eliza/pull/662 +* @asDNSk made their first contribution in https://github.com/ai16z/eliza/pull/357 +* @cryptoradagast made their first contribution in https://github.com/ai16z/eliza/pull/669 +* @2pmflow made their first contribution in https://github.com/ai16z/eliza/pull/737 +* @CodingTux made their first contribution in https://github.com/ai16z/eliza/pull/742 +* @L-jasmine made their first contribution in https://github.com/ai16z/eliza/pull/762 +* @btspoony made their first contribution in https://github.com/ai16z/eliza/pull/747 +* @shelvenzhou made their first contribution in https://github.com/ai16z/eliza/pull/746 +* @Freytes made their first contribution in https://github.com/ai16z/eliza/pull/776 +
+ +#### Full Changelog: https://github.com/ai16z/eliza/compare/v0.1.3...v0.1.5 + +--- + +## v0.1.4-alpha.3 (November 28, 2024) + +#### What's Changed + +* feat: adding back the renovate file for automated security scanning by @sirkitree in https://github.com/ai16z/eliza/pull/358 +* feat: readme and linting by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/449 +* fix: postgres embedding issues by @tarrencev in https://github.com/ai16z/eliza/pull/425 +* fix: X dry run by @laser-riot in https://github.com/ai16z/eliza/pull/452 +* Add npm install instructions to homepage header by @null-hax in https://github.com/ai16z/eliza/pull/459 +* docs: Fix my name in stream notes by @odilitime in https://github.com/ai16z/eliza/pull/442 +* feat: create-eliza-app by @coffeeorgreentea in https://github.com/ai16z/eliza/pull/462 +* fix: Add missing fuzzystrmatch extension for levenshtein() method to postgresql schema.sql definition by @martincik in https://github.com/ai16z/eliza/pull/460 +* fix: Fixing failling tests token.test.ts and videoGeneration.test.ts by @ai16z-demirix in https://github.com/ai16z/eliza/pull/465 +* feat: init github client by @tarrencev in https://github.com/ai16z/eliza/pull/456 +* docs: Add Discord username question by @odilitime in https://github.com/ai16z/eliza/pull/468 +* docs: Update Contributors to bring inline with PR468 by @odilitime in https://github.com/ai16z/eliza/pull/470 +* feat: Cache Manager by @bmgalego in https://github.com/ai16z/eliza/pull/378 +* ollama generate case was using console.debug. by @drew-royster in https://github.com/ai16z/eliza/pull/474 +* fix: ci by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/475 +* feat: Twitter Refactor by @bmgalego in https://github.com/ai16z/eliza/pull/478 +* refactor: add template types by @vivoidos in https://github.com/ai16z/eliza/pull/479 +* feat: adds check by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/466 +* fix: ignored modelEndpointOverride in generation by @darwintree in https://github.com/ai16z/eliza/pull/446 +* feat: Improvements by @bmgalego in https://github.com/ai16z/eliza/pull/482 +* fix: agent type error and sqlite file env by @bmgalego in https://github.com/ai16z/eliza/pull/484 +* fix: agent loadCharacters file resolver by @bmgalego in https://github.com/ai16z/eliza/pull/486 +* fix: fix character path loading by @bmgalego in https://github.com/ai16z/eliza/pull/487 +* fix: added missing packages to tsup configs' externals by @massivefermion in https://github.com/ai16z/eliza/pull/488 +* docs: Create best-practices.md documentation by @snobbee in https://github.com/ai16z/eliza/pull/463 +* feat: Added TWITTER_COOKIE example on quickstart.md by @haeunchin in https://github.com/ai16z/eliza/pull/476 +* feat: Improve knowledge embeddings by @tarrencev in https://github.com/ai16z/eliza/pull/472 +* feat: improve type saftey by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/494 +* fix: improve embeddings by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/496 +* node-v by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/501 +* fix: deps by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/503 +* chore: add contributor license by @awidearray in https://github.com/ai16z/eliza/pull/502 +* fix: remove sol dep by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/504 +* fix: issue with npm by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/505 +* fix: services fix by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/509 +* fix: speech service fix by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/512 + +#### New Contributors + +
+New Contributors +* @laser-riot made their first contribution in https://github.com/ai16z/eliza/pull/452 +* @null-hax made their first contribution in https://github.com/ai16z/eliza/pull/459 +* @coffeeorgreentea made their first contribution in https://github.com/ai16z/eliza/pull/462 +* @drew-royster made their first contribution in https://github.com/ai16z/eliza/pull/474 +* @massivefermion made their first contribution in https://github.com/ai16z/eliza/pull/488 +* @haeunchin made their first contribution in https://github.com/ai16z/eliza/pull/476 +* @awidearray made their first contribution in https://github.com/ai16z/eliza/pull/502 +
+ +#### Full Changelog: https://github.com/ai16z/eliza/compare/v0.1.3...v0.1.4-alpha.3 + +--- + +## v0.1.3-alpha.2 (November 20, 2024) + +#### What's Changed +* fix: configs by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/431 +* docs: Update contributing.md to incorporate Contribution Guidelines by @monilpat in https://github.com/ai16z/eliza/pull/430 +* fix: linting and imports ready for npm by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/433 +* feat: don't require .env to exist by @odilitime in https://github.com/ai16z/eliza/pull/427 +* chore: Update pr.yaml to show actual condition so easier to follow by @monilpat in https://github.com/ai16z/eliza/pull/429 +* fix: imports by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/435 + +#### Full Changelog: https://github.com/ai16z/eliza/compare/v0.1.1...v0.1.3-alpha.2 + +--- + +## v0.1.3 (November 20, 2024) + +#### What's Changed +* docs: Update contributing.md to incorporate Contribution Guidelines by @monilpat in https://github.com/ai16z/eliza/pull/430 +* fix: linting and imports ready for npm by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/433 +* feat: don't require .env to exist by @odilitime in https://github.com/ai16z/eliza/pull/427 +* chore: Update pr.yaml to show actual condition so easier to follow by @monilpat in https://github.com/ai16z/eliza/pull/429 +* fix: imports by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/435 +* fix: path by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/436 +* fix: since agent is moved out of packages, adjust default path by @odilitime in https://github.com/ai16z/eliza/pull/432 +* fix: Fix linter issues by @martincik in https://github.com/ai16z/eliza/pull/397 +* feat: add all the style guidelines to the context by @o-on-x in https://github.com/ai16z/eliza/pull/441 +* fix: fixes some console logs by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/440 +* fix: The bot is by default deafened and we don't want that by @martincik in https://github.com/ai16z/eliza/pull/437 +* fix: unrug by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/444 +* fix: voice perms by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/447 + +#### Full Changelog: https://github.com/ai16z/eliza/compare/v0.1.2...v0.1.3 + +--- + +## v0.1.1 (November 20, 2024) + +#### What's Changed +* Groq api integration by @juke in https://github.com/ai16z/eliza/pull/194 +* Updated documentation by @atvonsc in https://github.com/ai16z/eliza/pull/195 +* Major documentation updates by @madjin in https://github.com/ai16z/eliza/pull/199 +* swap Dao action initital by @MarcoMandar in https://github.com/ai16z/eliza/pull/196 +* Swap functionality by @lalalune in https://github.com/ai16z/eliza/pull/197 +* Add RedPill API Support by @HashWarlock in https://github.com/ai16z/eliza/pull/198 +* Fix Discord Voice and DMs by @lalalune in https://github.com/ai16z/eliza/pull/203 +* Shaw fix characters paths, .ts requirement and missings args by @lalalune in https://github.com/ai16z/eliza/pull/204 +* Implement grok beta by @MeDott29 in https://github.com/ai16z/eliza/pull/216 +* add the template overrides by @lalalune in https://github.com/ai16z/eliza/pull/207 +* lazy load llama by @lalalune in https://github.com/ai16z/eliza/pull/220 +* Abstracts Eliza into a Package to enble publishing onto NPM along with plugin system by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/214 +* Add OLLAMA as Model Provider by @o-on-x in https://github.com/ai16z/eliza/pull/221 +* models.gguf stored in models file, & tsconfig changes for ref @eliza/core & other things by @o-on-x in https://github.com/ai16z/eliza/pull/224 +* plugin-image-generation tsconfig.json fix & ollama error handling by @o-on-x in https://github.com/ai16z/eliza/pull/228 +* Update Docs by @madjin in https://github.com/ai16z/eliza/pull/231 +* update docs by @madjin in https://github.com/ai16z/eliza/pull/233 +* move code out to plugins, adapters and clients by @lalalune in https://github.com/ai16z/eliza/pull/225 +* Added OpenRouter model provider by @o-on-x in https://github.com/ai16z/eliza/pull/245 +* Support google models in generation by @parzival418 in https://github.com/ai16z/eliza/pull/246 +* trust integration by @MarcoMandar in https://github.com/ai16z/eliza/pull/248 +* Working PostGres Adapter by @cvartanian in https://github.com/ai16z/eliza/pull/247 +* use openai embeddings setting by @o-on-x in https://github.com/ai16z/eliza/pull/252 +* refactor embeddings by @o-on-x in https://github.com/ai16z/eliza/pull/254 +* embedding set to use openai endpoint when using openai embeddings by @o-on-x in https://github.com/ai16z/eliza/pull/255 +* bigint support in logger by @o-on-x in https://github.com/ai16z/eliza/pull/256 +* Fix: changed claude-3-5-haiku to claude-3-5-haiku-20241022 for fixingโ€ฆ by @denizekiz in https://github.com/ai16z/eliza/pull/257 +* Update docs by @madjin in https://github.com/ai16z/eliza/pull/253 +* cachedEmbeddings fix by @dorianjanezic in https://github.com/ai16z/eliza/pull/262 +* add verbose config with logger by @v1xingyue in https://github.com/ai16z/eliza/pull/249 +* recommendations, token info, client auto by @MarcoMandar in https://github.com/ai16z/eliza/pull/250 +* fix: docs features darkmode color by @fabianhug in https://github.com/ai16z/eliza/pull/266 +* docs homepage rework by @mrpspring in https://github.com/ai16z/eliza/pull/280 +* Improve Docs by @madjin in https://github.com/ai16z/eliza/pull/273 +* Don't blow up if the wallet is missing by @ferric-sol in https://github.com/ai16z/eliza/pull/281 +* Fix embedding calculation for sqlite by @ferric-sol in https://github.com/ai16z/eliza/pull/261 +* Fix: compute unit increasein swapts, default is too low to make transโ€ฆ by @denizekiz in https://github.com/ai16z/eliza/pull/276 +* add modelProvider to json to resolve embeddings error by @twilwa in https://github.com/ai16z/eliza/pull/274 +* fix docs: add python as a prerequisite (needed for node-gyp) by @metadiver in https://github.com/ai16z/eliza/pull/277 +* Bundles by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/285 +* Loaf stuff by @lalalune in https://github.com/ai16z/eliza/pull/286 +* Added missing GROK model provider key initialization by @FabriceIRANKUNDA in https://github.com/ai16z/eliza/pull/296 +* Added Transfer / Send Token Action by @o-on-x in https://github.com/ai16z/eliza/pull/297 +* telegram: start agent after client initialization by @o-on-x in https://github.com/ai16z/eliza/pull/304 +* Telegram client refactor for bot info availability by @ropresearch in https://github.com/ai16z/eliza/pull/308 +* Increased llama and llama based model temperatures by @alanneary17 in https://github.com/ai16z/eliza/pull/310 +* docs: add a new Japanese README by @eltociear in https://github.com/ai16z/eliza/pull/307 +* Add Korean and French README by @BugByClaude in https://github.com/ai16z/eliza/pull/312 +* fix service call patterns but needs testing by @lalalune in https://github.com/ai16z/eliza/pull/311 +* add node version check by @thearyanag in https://github.com/ai16z/eliza/pull/299 +* added working pumpfun.ts by @o-on-x in https://github.com/ai16z/eliza/pull/313 +* Fix broken docs by @madjin in https://github.com/ai16z/eliza/pull/321 +* docs: add a new Portuguese README version by @gabrielsants in https://github.com/ai16z/eliza/pull/320 +* Update Quickstart Guide by @odilitime in https://github.com/ai16z/eliza/pull/325 +* Save Trade on creation to the backend by @MarcoMandar in https://github.com/ai16z/eliza/pull/328 +* utils.ts example tweet splitting by @o-on-x in https://github.com/ai16z/eliza/pull/323 +* [LLM Object Generation][1/2] Leverage AI Lib's Generate Object instead of parsing strings by @monilpat in https://github.com/ai16z/eliza/pull/309 +* claude vertex configs added to generation.ts (was missing) by @denizekiz in https://github.com/ai16z/eliza/pull/330 +* README_KOR.md Korean version edited by a Korean by @sumin13245 in https://github.com/ai16z/eliza/pull/329 +* Dockerized application for local development, testing and deployment by @pindaroso in https://github.com/ai16z/eliza/pull/293 +* fix: Build error for packages requiring @ai16z/eliza by @shakkernerd in https://github.com/ai16z/eliza/pull/331 +* Docs: README.md improvements: clarify testing, add additional docker information by @odilitime in https://github.com/ai16z/eliza/pull/333 +* Docs: additional Quickstart clarification and improvements by @odilitime in https://github.com/ai16z/eliza/pull/334 +* added clientConfig to optionally ignore bots and DMs by @vivoidos in https://github.com/ai16z/eliza/pull/336 +* feat: Add Heurist API Integration as New Model Provider by @tsubasakong in https://github.com/ai16z/eliza/pull/335 +* feat: Starknet plugin by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/287 +* fix: dev build by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/343 +* Update Heurist Integration Documentation and Examples by @tsubasakong in https://github.com/ai16z/eliza/pull/339 +* getOrCreateRecommenderWithTelegramId by @MarcoMandar in https://github.com/ai16z/eliza/pull/345 +* fix: imports and cleanups by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/344 +* trust fixes by @MarcoMandar in https://github.com/ai16z/eliza/pull/347 +* feat: trust db by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/349 +* Add Community & contact and Star History by @thejoven in https://github.com/ai16z/eliza/pull/353 +* fix: solana by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/354 +* fix: some trust fixes by @lalalune in https://github.com/ai16z/eliza/pull/346 +* change default configuration of Heurist by @wjw12 in https://github.com/ai16z/eliza/pull/348 +* update tweet interval to 90-180 mins by @oguzserdar in https://github.com/ai16z/eliza/pull/360 +* feat: update docs with new stream notes by @madjin in https://github.com/ai16z/eliza/pull/364 +* post time set in env by @o-on-x in https://github.com/ai16z/eliza/pull/368 +* default set to new standard post time 90-180 type: post time by @o-on-x in https://github.com/ai16z/eliza/pull/369 +* feat: readme by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/370 +* twitter-profile-remake by @alextitonis in https://github.com/ai16z/eliza/pull/263 +* fix: bug in getRecentMessageInteractions not awating for promisses before formating by @bmgalego in https://github.com/ai16z/eliza/pull/366 +* feat: starknet token transfer by @enitrat in https://github.com/ai16z/eliza/pull/373 +* feat: Adding unit tests for start - Covering goals, defaultCharacters, relationships, evaulators, posts, database, messages by @ai16z-demirix in https://github.com/ai16z/eliza/pull/367 +* feat: Enhance Heurist Image Generation Settings and Image Handling by @tsubasakong in https://github.com/ai16z/eliza/pull/375 +* feat: install clients from plugin by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/371 +* fix: openrouter 70b don't support 128000, changed to 405b in model.ts by @denizekiz in https://github.com/ai16z/eliza/pull/356 +* feat: client by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/382 +* feat: Complete Starknet DB Trust by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/355 +* fix: client null by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/390 +* fix: ca for btc was spam/fake by @thearyanag in https://github.com/ai16z/eliza/pull/374 +* feat: Logging improvements by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/393 +* Fix tweet truncation issue by truncating at complete sentences by @boyaloxer in https://github.com/ai16z/eliza/pull/388 +* feat: Create README_ES.md by @metadiver in https://github.com/ai16z/eliza/pull/400 +* Register memory managers if passed to runtime by @martincik in https://github.com/ai16z/eliza/pull/396 +* fix: tsup build error (client-twitter) by @leomercier in https://github.com/ai16z/eliza/pull/402 +* docs: add Russian(RU) translation of README by @whonion in https://github.com/ai16z/eliza/pull/380 +* docs: Update README_FR.md by @xclicx in https://github.com/ai16z/eliza/pull/377 +* docs: add Turkish (TR) translation of README by @oguzserdar in https://github.com/ai16z/eliza/pull/376 +* feat: Contextual Twitter Threads + Spam Reduction by @ropresearch in https://github.com/ai16z/eliza/pull/383 +* fix: Lint by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/404 +* fix: adds Groq to getTokenForProvider by @bmgalego in https://github.com/ai16z/eliza/pull/381 +* fix: console by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/405 +* feat: unruggable by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/398 +* fix: Fixes by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/407 +* docs: refresh eliza's tagline, fix broken links, unify formatting for core concepts by @wahndo in https://github.com/ai16z/eliza/pull/389 +* docs: add GROK_API_KEY by @whalelephant in https://github.com/ai16z/eliza/pull/409 +* Add italian README.md translation by @fabrizioff in https://github.com/ai16z/eliza/pull/411 +* feat: video generation plugin by @dorianjanezic in https://github.com/ai16z/eliza/pull/394 +* Readme update WSL 2 link added. by @denizekiz in https://github.com/ai16z/eliza/pull/419 +* feat: services by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/412 +* fix: removed ollama embeddings. fastembeddings or openai only by @o-on-x in https://github.com/ai16z/eliza/pull/413 +* fix: Update adapters.md psql schema by @tarrencev in https://github.com/ai16z/eliza/pull/424 +* feat: [Issue-185] Token Provider Tests by @normand1 in https://github.com/ai16z/eliza/pull/365 +* feat: unruggable on starknet by @RedBeardEth in https://github.com/ai16z/eliza/pull/418 +* fix: don't continue to load if a specified file is not found by @odilitime in https://github.com/ai16z/eliza/pull/426 +* feat: lerna an npm by @ponderingdemocritus in https://github.com/ai16z/eliza/pull/428 + +#### New Contributors + +
+New Contributors +* @juke made their first contribution in https://github.com/ai16z/eliza/pull/194 +* @atvonsc made their first contribution in https://github.com/ai16z/eliza/pull/195 +* @HashWarlock made their first contribution in https://github.com/ai16z/eliza/pull/198 +* @MeDott29 made their first contribution in https://github.com/ai16z/eliza/pull/216 +* @parzival418 made their first contribution in https://github.com/ai16z/eliza/pull/246 +* @cvartanian made their first contribution in https://github.com/ai16z/eliza/pull/247 +* @denizekiz made their first contribution in https://github.com/ai16z/eliza/pull/257 +* @dorianjanezic made their first contribution in https://github.com/ai16z/eliza/pull/262 +* @v1xingyue made their first contribution in https://github.com/ai16z/eliza/pull/249 +* @fabianhug made their first contribution in https://github.com/ai16z/eliza/pull/266 +* @mrpspring made their first contribution in https://github.com/ai16z/eliza/pull/280 +* @FabriceIRANKUNDA made their first contribution in https://github.com/ai16z/eliza/pull/296 +* @ropresearch made their first contribution in https://github.com/ai16z/eliza/pull/308 +* @alanneary17 made their first contribution in https://github.com/ai16z/eliza/pull/310 +* @BugByClaude made their first contribution in https://github.com/ai16z/eliza/pull/312 +* @thearyanag made their first contribution in https://github.com/ai16z/eliza/pull/299 +* @gabrielsants made their first contribution in https://github.com/ai16z/eliza/pull/320 +* @odilitime made their first contribution in https://github.com/ai16z/eliza/pull/325 +* @monilpat made their first contribution in https://github.com/ai16z/eliza/pull/309 +* @sumin13245 made their first contribution in https://github.com/ai16z/eliza/pull/329 +* @pindaroso made their first contribution in https://github.com/ai16z/eliza/pull/293 +* @shakkernerd made their first contribution in https://github.com/ai16z/eliza/pull/331 +* @vivoidos made their first contribution in https://github.com/ai16z/eliza/pull/336 +* @tsubasakong made their first contribution in https://github.com/ai16z/eliza/pull/335 +* @thejoven made their first contribution in https://github.com/ai16z/eliza/pull/353 +* @wjw12 made their first contribution in https://github.com/ai16z/eliza/pull/348 +* @oguzserdar made their first contribution in https://github.com/ai16z/eliza/pull/360 +* @bmgalego made their first contribution in https://github.com/ai16z/eliza/pull/366 +* @enitrat made their first contribution in https://github.com/ai16z/eliza/pull/373 +* @ai16z-demirix made their first contribution in https://github.com/ai16z/eliza/pull/367 +* @boyaloxer made their first contribution in https://github.com/ai16z/eliza/pull/388 +* @martincik made their first contribution in https://github.com/ai16z/eliza/pull/396 +* @whonion made their first contribution in https://github.com/ai16z/eliza/pull/380 +* @xclicx made their first contribution in https://github.com/ai16z/eliza/pull/377 +* @whalelephant made their first contribution in https://github.com/ai16z/eliza/pull/409 +* @fabrizioff made their first contribution in https://github.com/ai16z/eliza/pull/411 +* @tarrencev made their first contribution in https://github.com/ai16z/eliza/pull/424 +* @normand1 made their first contribution in https://github.com/ai16z/eliza/pull/365 +* @RedBeardEth made their first contribution in https://github.com/ai16z/eliza/pull/418 +
+ +#### Full Changelog: https://github.com/ai16z/eliza/compare/v0.0.10...v0.1.1 +--- diff --git a/docs/docs/core/characterfile.md b/docs/docs/core/characterfile.md index 90ddfb3edd9..e8aed23f2ad 100644 --- a/docs/docs/core/characterfile.md +++ b/docs/docs/core/characterfile.md @@ -2,6 +2,10 @@ Character files are JSON-formatted configurations that define AI agent personas, combining personality traits, knowledge bases, and interaction patterns to create consistent and effective AI agents. For a full list of capabilities check the `character` type [API docs](/api/type-aliases/character). You can also view and contribute to open sourced example characterfiles here: https://github.com/elizaos/characters. +> For making characters, check out the open source elizagen!: https://elizagen.howieduhzit.best/ +> [![](/img/elizagen.png)](/img/elizagen.png) + +--- ## Required Fields diff --git a/docs/docs/core/clients.md b/docs/docs/core/clients.md index ca8cdce15e4..b4ba1bd3fa1 100644 --- a/docs/docs/core/clients.md +++ b/docs/docs/core/clients.md @@ -6,10 +6,33 @@ sidebar_position: 3 Clients are core components in Eliza that enable AI agents to interact with external platforms and services. Each client provides a specialized interface for communication while maintaining consistent agent behavior across different platforms. +--- + +## Supported Clients + +| Client | Type | Key Features | Use Cases | +|--------|------|--------------|------------| +| [Discord](https://github.com/elizaos-plugins/client-discord) | Communication | โ€ข Voice channels โ€ข Server management โ€ข Moderation tools โ€ข Channel management | โ€ข Community management โ€ข Gaming servers โ€ข Event coordination | +| [Twitter](https://github.com/elizaos-plugins/client-twitter) | Social Media | โ€ข Post scheduling โ€ข Timeline monitoring โ€ข Engagement analytics โ€ข Content automation | โ€ข Brand management โ€ข Content creation โ€ข Social engagement | +| [Telegram](https://github.com/elizaos-plugins/client-telegram) | Messaging | โ€ข Bot API โ€ข Group chat โ€ข Media handling โ€ข Command system | โ€ข Customer support โ€ข Community engagement โ€ข Broadcast messaging | +| [Direct](https://github.com/elizaOS/eliza/tree/develop/packages/client-direct/src) | API | โ€ข REST endpoints โ€ข Web integration โ€ข Custom applications โ€ข Real-time communication | โ€ข Backend integration โ€ข Web apps โ€ข Custom interfaces | +| [GitHub](https://github.com/elizaos-plugins/client-github) | Development | โ€ข Repository management โ€ข Issue tracking โ€ข Pull requests โ€ข Code review | โ€ข Development workflow โ€ข Project management โ€ข Team collaboration | +| [Slack](https://github.com/elizaos-plugins/client-slack) | Enterprise | โ€ข Channel management โ€ข Conversation analysis โ€ข Workspace tools โ€ข Integration hooks | โ€ข Team collaboration โ€ข Process automation โ€ข Internal tools | +| [Lens](https://github.com/elizaos-plugins/client-lens) | Web3 | โ€ข Decentralized networking โ€ข Content publishing โ€ข Memory management โ€ข Web3 integration | โ€ข Web3 social networking โ€ข Content distribution โ€ข Decentralized apps | +| [Farcaster](https://github.com/elizaos-plugins/client-farcaster) | Web3 | โ€ข Decentralized social โ€ข Content publishing โ€ข Community engagement | โ€ข Web3 communities โ€ข Content creation โ€ข Social networking | +| [Auto](https://github.com/elizaos-plugins/client-auto) | Automation | โ€ข Workload management โ€ข Task scheduling โ€ข Process automation | โ€ข Background jobs โ€ข Automated tasks โ€ข System maintenance | + +***Additional clients**: +- Instagram: Social media content and engagement +- XMTP: Web3 messaging and communications +- Alexa: Voice interface and smart device control +- Home Assistant: Home automation OS +- Devai.me: AI first social client +- Simsai: Jeeter / Social media platform for AI --- -## Overview +## System Overview Clients serve as bridges between Eliza agents and various platforms, providing core capabilities: @@ -32,33 +55,10 @@ Clients serve as bridges between Eliza agents and various platforms, providing c - Platform-specific feature support ---- - -## Supported Clients - -| Client | Type | Key Features | Use Cases | -|--------|------|--------------|------------| -| [Discord](https://github.com/elizaos-plugins/client-discord) | Communication | โ€ข Voice channels โ€ข Server management โ€ข Moderation tools โ€ข Channel management | โ€ข Community management โ€ข Gaming servers โ€ข Event coordination | -| [Twitter](https://github.com/elizaos-plugins/client-twitter) | Social Media | โ€ข Post scheduling โ€ข Timeline monitoring โ€ข Engagement analytics โ€ข Content automation | โ€ข Brand management โ€ข Content creation โ€ข Social engagement | -| [Telegram](https://github.com/elizaos-plugins/client-telegram) | Messaging | โ€ข Bot API โ€ข Group chat โ€ข Media handling โ€ข Command system | โ€ข Customer support โ€ข Community engagement โ€ข Broadcast messaging | -| [Direct](https://github.com/elizaOS/eliza/tree/develop/packages/client-direct/src) | API | โ€ข REST endpoints โ€ข Web integration โ€ข Custom applications โ€ข Real-time communication | โ€ข Backend integration โ€ข Web apps โ€ข Custom interfaces | -| [GitHub](https://github.com/elizaos-plugins/client-github) | Development | โ€ข Repository management โ€ข Issue tracking โ€ข Pull requests โ€ข Code review | โ€ข Development workflow โ€ข Project management โ€ข Team collaboration | -| [Slack](https://github.com/elizaos-plugins/client-slack) | Enterprise | โ€ข Channel management โ€ข Conversation analysis โ€ข Workspace tools โ€ข Integration hooks | โ€ข Team collaboration โ€ข Process automation โ€ข Internal tools | -| [Lens](https://github.com/elizaos-plugins/client-lens) | Web3 | โ€ข Decentralized networking โ€ข Content publishing โ€ข Memory management โ€ข Web3 integration | โ€ข Web3 social networking โ€ข Content distribution โ€ข Decentralized apps | -| [Farcaster](https://github.com/elizaos-plugins/client-farcaster) | Web3 | โ€ข Decentralized social โ€ข Content publishing โ€ข Community engagement | โ€ข Web3 communities โ€ข Content creation โ€ข Social networking | -| [Auto](https://github.com/elizaos-plugins/client-auto) | Automation | โ€ข Workload management โ€ข Task scheduling โ€ข Process automation | โ€ข Background jobs โ€ข Automated tasks โ€ข System maintenance | - -***Additional clients**: -- Instagram: Social media content and engagement -- XMTP: Web3 messaging and communications -- Alexa: Voice interface and smart device control - ---- - ## Client Configuration -Clients are configured through the [`Character`](api/type-aliases/Character) configuration's `clientConfig` property: +Clients are configured through the [`Character`](/api/type-aliases/Character) configuration's [`clientConfig`](/api/type-aliases/Character/#clientconfig) property: ```typescript export type Character = { @@ -176,7 +176,7 @@ const recentMessages = await runtime.messageManager.getMemories({ ## Direct Client Example -The [Direct client](https://github.com/elizaOS/eliza/tree/develop/packages/client-direct) provides message processing, webhook integration, and a REST API interfacefor Eliza agents. It's the primary client used for testing and development. +The [Direct client](https://github.com/elizaOS/eliza/tree/develop/packages/client-direct) provides message processing, webhook integration, and a REST API interface for Eliza agents. It's the primary client used for testing and development. Key features of the Direct client: diff --git a/docs/docs/core/overview.md b/docs/docs/core/overview.md index 7ee49c27f5b..32e461e62b4 100644 --- a/docs/docs/core/overview.md +++ b/docs/docs/core/overview.md @@ -45,7 +45,7 @@ The character file defines who your agent is - like a script for an actor. It in - Which platforms to connect to -## Client System +## [Clients](./clients.md) **The Interface** diff --git a/docs/docs/core/plugins.md b/docs/docs/core/plugins.md new file mode 100644 index 00000000000..2e7b449ceb7 --- /dev/null +++ b/docs/docs/core/plugins.md @@ -0,0 +1,209 @@ +# ElizaOS Plugins + +ElizaOS plugins are modular extensions that enhance the capabilities of ElizaOS agents. They provide a flexible way to add new functionality, integrate external services, and customize agent behavior across different platforms. + +## Overview + +Plugins in ElizaOS can provide various components: + +- **Actions**: Custom behaviors and responses +- **Providers**: Data sources and context providers +- **Evaluators**: Analysis and learning systems +- **Services**: Background processes and integrations +- **Clients**: Platform-specific communication interfaces +- **Adapters**: Database and storage implementations + +## Using Plugins + +### Installation + +1. Add the plugin to your project's dependencies: + +```json +{ + "dependencies": { + "@elizaos/plugin-example": "github:elizaos-plugins/plugin-example" + } +} +``` + +2. Configure the plugin in your character file: + +```json +{ + "name": "MyAgent", + "plugins": [ + "@elizaos/plugin-example" + ], + "settings": { + "example-plugin": { + // Plugin-specific configuration + } + } +} +``` + +### Available Plugins + +ElizaOS maintains an official plugin registry at [github.com/elizaos-plugins/registry](https://github.com/elizaos-plugins/registry). Some key categories include: + +#### Database Adapters +- `@elizaos-plugins/adapter-mongodb`: MongoDB integration +- `@elizaos-plugins/adapter-postgres`: PostgreSQL with vector support +- `@elizaos-plugins/adapter-sqlite`: Lightweight SQLite storage +- `@elizaos-plugins/adapter-qdrant`: Vector-focused storage +- `@elizaos-plugins/adapter-supabase`: Cloud-hosted vector database + +#### Platform Clients +- `@elizaos-plugins/client-discord`: Discord bot integration +- `@elizaos-plugins/client-twitter`: Twitter/X integration +- `@elizaos-plugins/client-telegram`: Telegram messaging +- `@elizaos-plugins/client-slack`: Slack workspace integration +- `@elizaos-plugins/client-farcaster`: Web3 social networking + +#### Utility Plugins +- `@elizaos-plugins/plugin-browser`: Web scraping capabilities +- `@elizaos-plugins/plugin-pdf`: PDF processing +- `@elizaos-plugins/plugin-image`: Image analysis and generation +- `@elizaos-plugins/plugin-video`: Video processing +- `@elizaos-plugins/plugin-llama`: Local LLaMA model integration + +## Creating Plugins + +### Project Structure + +``` +plugin-name/ +โ”œโ”€โ”€ package.json +โ”œโ”€โ”€ tsconfig.json +โ”œโ”€โ”€ src/ +โ”‚ โ”œโ”€โ”€ index.ts # Main plugin entry +โ”‚ โ”œโ”€โ”€ actions/ # Custom actions +โ”‚ โ”œโ”€โ”€ providers/ # Data providers +โ”‚ โ”œโ”€โ”€ types.ts # Type definitions +โ”‚ โ””โ”€โ”€ environment.ts # Configuration +โ”œโ”€โ”€ README.md +โ””โ”€โ”€ LICENSE +``` + +### Basic Plugin Implementation + +```typescript +import { Plugin, Action, Provider } from "@elizaos/core"; + +const exampleAction: Action = { + name: "EXAMPLE_ACTION", + similes: ["ALTERNATE_NAME"], + description: "Description of what this action does", + validate: async (runtime, message) => { + // Validation logic + return true; + }, + handler: async (runtime, message) => { + // Implementation logic + return true; + } +}; + +const exampleProvider: Provider = { + get: async (runtime, message) => { + // Provider implementation + return "Context string"; + } +}; + +export const examplePlugin: Plugin = { + name: "example-plugin", + description: "Plugin description", + actions: [exampleAction], + providers: [exampleProvider] +}; +``` + +### Package Configuration + +Your `package.json` must include: + +```json +{ + "name": "@elizaos/plugin-example", + "version": "1.0.0", + "agentConfig": { + "pluginType": "elizaos:plugin:1.0.0", + "pluginParameters": { + "API_KEY": { + "type": "string", + "description": "API key for the service" + } + } + } +} +``` + + + +## Best Practices + +1. **Minimal Dependencies** + - Only include necessary dependencies + - Use peer dependencies when possible + - Document all required dependencies + +2. **Error Handling** + - Validate configuration before use + - Provide meaningful error messages + - Implement proper error recovery + +3. **Type Safety** + - Use TypeScript throughout + - Define clear interfaces + - Document type constraints + +4. **Documentation** + - Include clear README + - Document all configuration options + - Provide usage examples + +5. **Testing** + - Include unit tests + - Provide integration tests + - Document testing procedures + +## FAQ + +### What exactly is a plugin in ElizaOS? + +A plugin is a modular extension that adds new capabilities to ElizaOS agents, such as API integrations, custom actions, or platform connections. Plugins allow you to expand agent functionality and share reusable components with other developers. + +### When should I create a plugin versus using existing ones? + +Create a plugin when you need custom functionality not available in existing plugins, want to integrate with external services, or plan to share reusable agent capabilities with the community. + +### What are the main types of plugin components? + +Actions handle specific tasks, Providers supply data, Evaluators analyze responses, Services run background processes, Clients manage platform connections, and Adapters handle storage solutions. + +### How do I test a plugin during development? + +Use the mock client with `pnpm mock-eliza --characters=./characters/test.character.json` for rapid testing, then progress to platform-specific testing like web interface or Twitter integration. + +### Why isn't my plugin being recognized? + +Most commonly this occurs due to missing dependencies, incorrect registration in your character file, or build configuration issues. Ensure you've run `pnpm build` and properly imported the plugin. + +### Can I monetize my plugin? + +Yes, plugins can be monetized through the ElizaOS marketplace or by offering premium features/API access, making them an effective distribution mechanism for software products. + +### How do I debug plugin issues? + +Enable debug logging, use the mock client for isolated testing, and check the runtime logs for detailed error messages about plugin initialization and execution. + +### What's the difference between Actions and Services? + +Actions handle specific agent responses or behaviors, while Services provide ongoing background functionality or external API integrations that multiple actions might use. + +## Additional Resources + +- [ElizaOS Registry](https://github.com/elizaos-plugins/registry) +- [Example Plugins](https://github.com/elizaos-plugins) diff --git a/docs/docs/quickstart.md b/docs/docs/quickstart.md index 5572c7e00ae..06a85d9115c 100644 --- a/docs/docs/quickstart.md +++ b/docs/docs/quickstart.md @@ -8,55 +8,77 @@ sidebar_position: 2 Before getting started with Eliza, ensure you have: -- [Node.js 23+](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm) (using [nvm](https://github.com/nvm-sh/nvm) is recommended) +- [Node.js 23+](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm) (using [nvm](https://github.com/nvm-sh/nvm?tab=readme-ov-file#installing-and-updating) is recommended) - [pnpm 9+](https://pnpm.io/installation) - Git for version control - A code editor ([VS Code](https://code.visualstudio.com/), [Cursor](https://cursor.com/) or [VSCodium](https://vscodium.com) recommended) -- [CUDA Toolkit](https://developer.nvidia.com/cuda-toolkit) (optional, for GPU acceleration) +- Python (mainly for installing NPM) +- (Optional) FFmpeg (for audio/video handling) +- (Optional) [CUDA Toolkit](https://developer.nvidia.com/cuda-toolkit) (for GPU acceleration) + +> On Windows? See here before continuing to make life easier: [WSL setup guide](/docs/guides/wsl) --- ## Automated Installation -1. Use the [start script](https://howieduhzit.best/start-sh/) - - ๐Ÿ” Auto OS Detection | ๐Ÿ› ๏ธ Zero Config | ๐ŸŽญ Character Management | ๐Ÿ”„ One-click Updates | โš™๏ธ Guided Setup +1. Use https://github.com/elizaOS/eliza-starter ```bash -# Linux/macOS -./scripts/start.sh +git clone git@github.com:elizaos/eliza-starter.git +cd eliza-starter +cp .env.example .env +pnpm i && pnpm build && pnpm start ``` -
-Troubleshooting +2. Use the [start script](https://howieduhzit.best/start-sh/) + ```bash -# On Windows? Setup WSL2 first -wsl --install -d Ubuntu -# Open Ubuntu, set up user, update: -sudo apt update && sudo apt upgrade -y -``` +git clone git@github.com:elizaOS/eliza.git +cd eliza -### Usage +# usage start.sh [-v|--verbose] [--skip-nvm] +./scripts/start.sh ``` -start.sh [-v|--verbose] [--skip-nvm] + + +3. Using Docker + +Prerequisites: +- A Linux-based server (Ubuntu/Debian recommended) +- Git installed +- [Docker](https://docs.docker.com/get-started/get-docker/) + +```bash +git clone git@github.com:elizaOS/eliza.git +cd eliza +docker-compose build +docker-compose up ``` -### Common Error +> Note: If you get permission issues run the docker-compose commands with sudo or add yourself to the docker group + +
+Troubleshooting +#### Common Error +```bash - "characters not found": Check working directory - `./scripts/start.sh -v` Run with logging - Check console output - [Open an issue](https://github.com/elizaOS/eliza/issues) +``` -### Permission Issues +#### Permission Issues ``` sudo chmod +x scripts/start.sh # Linux/macOS Set-ExecutionPolicy RemoteSigned -Scope CurrentUser # Windows ``` -### Package Issues +#### Package Issues > Note: Always verify scripts before running it ``` ## Linux -sudo apt update +sudo apt update ## MacOS /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" @@ -66,53 +88,75 @@ brew update # Run as admin ``` -### Node.js Issues -- Required: Node.js 22+ +#### Node.js Issues +- Ensure Node.js 23.3.0 is installed +- Use `node -v` to check version +- Consider using [nvm](https://github.com/nvm-sh/nvm) to manage Node versions - Use `--skip-nvm` for system Node - Check PATH configuration -**Notes** -- Temporary files: `/tmp/eliza_*` -- Config location: `./config` -- Characters: `./characters/*.json` +If you see Sharp-related errors, try this: -
+```bash +pnpm install --include=optional sharp +``` + +If you see errors about better-sqlite3, try `pnpm rebuild better-sqlite3` or go into `node_modules/better-sqlite3` and run `pnpm i` +You can also add a postinstall script in your `package.json` if you want to automate this: +```json +scripts: { + "postinstall": "npm rebuild better-sqlite3" +} +``` -2. Using https://github.com/elizaOS/eliza-starter +pnpm may be bundled with a different node version, ignoring nvm. If this is the case, try: ```bash -git clone git@github.com:elizaos/eliza-starter.git -cd eliza-starter -cp .env.example .env -pnpm i && pnpm build && pnpm start +pnpm env use --global 23.3.0 ``` +#### Docker issues + +Some tips on cleaning your working directory before rebuilding: +- List all docker images: `sudo docker images` +- Reomove all Docker images: `docker rmi -f $(docker images -aq)` +- Remove all build cache: `docker builder prune -a -f` +- Verify cleanup: `docker system df` +
+ +--- + ## Manual Installation -After installing the prerequisites, clone the repository and enter the directory +After installing the prerequisites, clone the repository and enter the directory: ```bash git clone git@github.com:elizaOS/eliza.git cd eliza ``` -Switch to the latest [stable version tag](https://github.com/elizaOS/eliza/tags) -This project moves quick, checkout the latest release known to work: +:::tip +If you're planning on doing development, we suggest using the code on the develop branch: +```bash +git checkout develop +``` +From the main repo you can also download [sample character files](https://github.com/elizaos/characters) this way: ```bash -git checkout $(git describe --tags --abbrev=0) +git submodule update --init ``` +::: Install the dependencies ```bash -pnpm install --no-frozen-lockfile +pnpm install ``` -> **Note:** Please only use the `--no-frozen-lockfile` option when you're initially instantiating the repo or are bumping the version of a package or adding a new package to your package.json. This practice helps maintain consistency in your project's dependencies and prevents unintended changes to the lockfile. +> **Note:** you may need to use --no-frozen-lockfile if it gives a message about the frozen lock file being out of date. -Build the local libraries +Compile the typescript: ```bash pnpm build @@ -120,73 +164,9 @@ pnpm build --- -## Configure Environment - -Copy example environment file - -```bash -cp .env.example .env -``` - -Edit `.env` and add your values. Do NOT add this file to version control. - -```bash -# Suggested quickstart environment variables -DISCORD_APPLICATION_ID= # For Discord integration -DISCORD_API_TOKEN= # Bot token -HEURIST_API_KEY= # Heurist API key for LLM and image generation -OPENAI_API_KEY= # OpenAI API key -GROK_API_KEY= # Grok API key -ELEVENLABS_XI_API_KEY= # API key from elevenlabs (for voice) -LIVEPEER_GATEWAY_URL= # Livepeer gateway URL -``` - -## Choose Your Model - -Eliza supports multiple AI models and you set which model to use inside the character JSON file. - -- **Heurist**: Set `modelProvider: "heurist"` in your character file. Most models are uncensored. -- LLM: Select available LLMs [here](https://docs.heurist.ai/dev-guide/supported-models#large-language-models-llms) and configure `SMALL_HEURIST_MODEL`,`MEDIUM_HEURIST_MODEL`,`LARGE_HEURIST_MODEL` -- Image Generation: Select available Stable Diffusion or Flux models [here](https://docs.heurist.ai/dev-guide/supported-models#image-generation-models) and configure `HEURIST_IMAGE_MODEL` (default is FLUX.1-dev) -- **Llama**: Set `OLLAMA_MODEL` to your chosen model -- **Grok**: Set `GROK_API_KEY` to your Grok API key and set `modelProvider: "grok"` in your character file -- **OpenAI**: Set `OPENAI_API_KEY` to your OpenAI API key and set `modelProvider: "openai"` in your character file -- **Livepeer**: Set `LIVEPEER_IMAGE_MODEL` to your chosen Livepeer image model, available models [here](https://livepeer-eliza.com/) - -- **Llama**: Set `XAI_MODEL=meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo` -- **Grok**: Set `XAI_MODEL=grok-beta` -- **OpenAI**: Set `XAI_MODEL=gpt-4o-mini` or `gpt-4o` -- **Livepeer**: Set `SMALL_LIVEPEER_MODEL`,`MEDIUM_LIVEPEER_MODEL`,`LARGE_LIVEPEER_MODEL` and `IMAGE_LIVEPEER_MODEL` to your desired models listed [here](https://livepeer-eliza.com/). - -### For llama_local inference: - -- The system will automatically download the model from Hugging Face -- `LOCAL_LLAMA_PROVIDER` can be blank - -Note: llama_local requires a GPU, it currently will not work with CPU inference - -### For Ollama inference: - -- If `OLLAMA_SERVER_URL` is left blank, it defaults to `localhost:11434` -- If `OLLAMA_EMBEDDING_MODE` is left blank, it defaults to `mxbai-embed-large` - -## Create Your First Agent +## Start the Agent -**Create a Character File** - -Check out the `characters/` directory for a number of character files to try out. -Additionally you can read `packages/core/src/defaultCharacter.ts`. - -Copy one of the example character files and make it your own - -```bash -cp characters/sbf.character.json characters/deep-thought.character.json -``` -๐Ÿ“ [Character Documentation](./core/characterfile.md) - -**Start the Agent** - -Inform it which character you want to run: +[Character files](./core/characterfile.md) are where you can configure your agent's personality, lore, and capabilities via plugins. Inform eliza which character you want to run: ```bash pnpm start --character="characters/deep-thought.character.json" @@ -195,14 +175,14 @@ pnpm start --character="characters/deep-thought.character.json" You can load multiple characters with a comma-separated list: ```bash -pnpm start --characters="characters/deep-thought.character.json, characters/sbf.character.json" +pnpm start --characters="characters/deep-thought.character.json,characters/sbf.character.json" ``` -**Interact with the Agent** +By default the agent will be accessible via the terminal and REST API. -Now you're ready to start a conversation with your agent. +#### Chat Client -Open a new terminal window and run the client's http server. +If you're using the main [eliza repo](https://github.com/elizaos/eliza) and want to use the chat client, open a new terminal window and run the client's http server: ```bash pnpm start:client @@ -216,185 +196,131 @@ Once the client is running, you'll see a message like this: Simply click the link or open your browser to `http://localhost:5173/`. You'll see the chat interface connect to the system, and you can begin interacting with your character. -## Platform Integration - -### Discord Bot Setup - -1. Create a new application at [Discord Developer Portal](https://discord.com/developers/applications) -2. Create a bot and get your token -3. Add bot to your server using OAuth2 URL generator -4. Set `DISCORD_API_TOKEN` and `DISCORD_APPLICATION_ID` in your `.env` - -### Twitter Integration - -Add to your `.env`: - -```bash -TWITTER_USERNAME= # Account username -TWITTER_PASSWORD= # Account password -TWITTER_EMAIL= # Account email -``` +--- -**Important:** Log in to the [Twitter Developer Portal](https://developer.twitter.com) and enable the "Automated" label for your account to avoid being flagged as inauthentic. +## Additional Configuration -### Telegram Bot +### Add Plugins and Clients -1. Create a bot -2. Add your bot token to `.env`: +You can load plugins or additional client support with your character file to unlock more capabilities for your agent. There are two ways to get a list of available plugins: -```bash -TELEGRAM_BOT_TOKEN=your_token_here -``` +1. Web Interface -## Optional: GPU Acceleration +Go https://elizaos.github.io/registry/ or the [Showcase](/showcase) and search for plugins -If you have an NVIDIA GPU: +2. CLI Interface ```bash -# Install CUDA support -npx --no node-llama-cpp source download --gpu cuda - -# Ensure CUDA Toolkit, cuDNN, and cuBLAS are installed +$ npx elizaos plugins list ``` -## Basic Usage Examples +Here's a sample list of plugins you can check out! -### Chat with Your Agent +| plugin name | Description | +| ----------- | ----------- | +| [`@elizaos/plugin-llama`](https://github.com/elizaos-plugins/plugin-llama) | Run LLM models on your local machine +| [`@elizaos/client-twitter`](https://github.com/elizaos-plugins/client-twitter) | Twitter bot integration +| [`@elizaos/client-discord`](https://github.com/elizaos-plugins/client-discord) | Discord bot integration +| [`@elizaos/client-telegram`](https://github.com/elizaos-plugins/client-telegram) | Telegram integration +| [`@elizaos/plugin-image`](https://github.com/elizaos-plugins/plugin-image) | Image processing and analysis +| [`@elizaos/plugin-video`](https://github.com/elizaos-plugins/plugin-video) | Video processing capabilities +| [`@elizaos/plugin-browser`](https://github.com/elizaos-plugins/plugin-browser) | Web scraping capabilities +| [`@elizaos/plugin-pdf`](https://github.com/elizaos-plugins/plugin-pdf) | PDF processing -```bash -# Start chat interface -pnpm start -``` -### Run Multiple Agents +Here's how to import and register plugins in your character file: -```bash -pnpm start --characters="characters/trump.character.json,characters/tate.character.json" +```typescript +{ + "name": "Eliza", + "clients": ["telegram"], + // ... other config options + "plugins": ["@elizaos/plugin-image"], +} ``` -## Common Issues & Solutions - -1. **Node.js Version** - -- Ensure Node.js 23.3.0 is installed -- Use `node -v` to check version -- Consider using [nvm](https://github.com/nvm-sh/nvm) to manage Node versions - -NOTE: pnpm may be bundled with a different node version, ignoring nvm. If this is the case, you can use +### Configure Environment -```bash -pnpm env use --global 23.3.0 -``` +There are two ways to configure elizaOS -to force it to use the correct one. +### Option 1: Default .env file -2. **Sharp Installation** -If you see Sharp-related errors: +Copying the `.example.env` file and editing is the simpler option especially if you plan to just host one agent: ```bash -pnpm install --include=optional sharp +cp .env.example .env +nano .env ``` -3. **CUDA Setup** +### Option 2: Secrets in the character file -- Verify CUDA Toolkit installation -- Check GPU compatibility with toolkit -- Ensure proper environment variables are set - -4. **Exit Status 1** -If you see - -``` -triggerUncaughtException( -^ -[Object: null prototype] { -[Symbol(nodejs.util.inspect.custom)]: [Function: [nodejs.util.inspect.custom]] -} -``` +This option allows you finer grain control over which character uses what resources and is required if you want multiple agents but using different keys. For example: -You can try these steps, which aim to add `@types/node` to various parts of the project +```typescript +{ + "name": "eliza", + // ... other config options + "settings": { + "secrets": { + "DISCORD_APPLICATION_ID": "1234", + "DISCORD_API_TOKEN": "xxxx", + "OPENAI_API_KEY": "sk-proj-xxxxxxxxx-..." + } + } ``` -# Add dependencies to workspace root -pnpm add -w -D ts-node typescript @types/node -# Add dependencies to the agent package specifically -pnpm add -D ts-node typescript @types/node --filter "@elizaos/agent" +Watch the commas to make sure it's valid json! Here's a few more config tips: -# Also add to the core package since it's needed there too -pnpm add -D ts-node typescript @types/node --filter "@elizaos/core" +
+Discord Bot Setup -# First clean everything -pnpm clean +1. Create a new application at [Discord Developer Portal](https://discord.com/developers/applications) +2. Create a bot and get your token +3. Add bot to your server using OAuth2 URL generator +4. Set `DISCORD_API_TOKEN` and `DISCORD_APPLICATION_ID` in your `.env` +
-# Install all dependencies recursively -pnpm install -r +
+Twitter Integration -# Build the project -pnpm build +Add to your `.env`: -# Then try to start -pnpm start +```bash +TWITTER_USERNAME= # Account username +TWITTER_PASSWORD= # Account password +TWITTER_EMAIL= # Account email ``` -5. **Better sqlite3 was compiled against a different Node.js version** -If you see +**Important:** Log in to the [Twitter Developer Portal](https://developer.twitter.com) and enable the "Automated" label for your account to avoid being flagged as inauthentic. +
-``` -Error starting agents: Error: The module '.../eliza-agents/dv/eliza/node_modules/better-sqlite3/build/Release/better_sqlite3.node' -was compiled against a different Node.js version using -NODE_MODULE_VERSION 131. This version of Node.js requires -NODE_MODULE_VERSION 127. Please try re-compiling or re-installing -``` +
+Telegram Bot -or +1. Create a bot +2. Add your bot token to `.env`: +```bash +TELEGRAM_BOT_TOKEN=your_token_here ``` -Error: Could not locate the bindings file. Tried: -.../better_sqlite3.node -... -``` +
-You can try this, which will attempt to rebuild better-sqlite3. -```bash -pnpm rebuild better-sqlite3 -``` -If that doesn't work, try clearing your node_modules in the root folder -```bash -rm -fr node_modules; pnpm store prune -``` +### GPU Acceleration -Then reinstall the requirements +If you have a Nvidia GPU you can enable CUDA support. First ensure CUDA Toolkit, cuDNN, and cuBLAS are first installed, then: `npx --no node-llama-cpp source download --gpu cuda` -```bash -pnpm i -``` -You can also add a postinstall script in your `package.json` if you want to automate this: -```json -scripts: { - "postinstall": "npm rebuild better-sqlite3" -} -``` --- ## FAQ -### How do I install and set up ElizaOS? -Clone the repository, run `pnpm install --no-frozen-lockfile`, then `pnpm build`. Requires Node.js version 23.3.0. - -### Which Node.js version should I use? -Use Node.js version 23+ (specifically 23.3.0 is recommended) and pnpm v9.x for optimal compatibility. You can use nvm to manage Node versions with `nvm install 23` and `nvm use 23`. - -### How do I run multiple agents? -Create separate projects with unique character files and run in separate terminals, or use `pnpm start --characters="characters/agent1.json,characters/agent2.json"`. - ### What's the difference between eliza and eliza-starter? -Eliza-starter is a lightweight version for simpler setups, while the main eliza repository includes all advanced features and plugins. +Eliza-starter is a lightweight version for simpler setups, while the main eliza repository includes all advanced features and a web client. ### How do I fix build/installation issues? Use Node v23.3.0, run `pnpm clean`, then `pnpm install --no-frozen-lockfile`, followed by `pnpm build`. If issues persist, checkout the latest stable tag. @@ -417,4 +343,4 @@ Once you have your agent running, explore: 3. โšก [Add Custom Actions](./core/actions.md) 4. ๐Ÿ”ง [Advanced Configuration](./guides/configuration.md) -Join our [Discord community](https://discord.gg/ai16z) for support and updates! +Join the [Discord community](https://discord.gg/elizaOS) for support and to share what you're building! diff --git a/docs/docs/tutorials/.nader_tutorial_15min.md.swp b/docs/docs/tutorials/.nader_tutorial_15min.md.swp deleted file mode 100644 index 94fe147dc3f3758da485b5f72f61f040848baf89..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 12288 zcmeHN&2J<}74MB;Hvs|>9FR~Vy{wV4D|xy-fmm?eXkt2@+fgoRC0VKmx%Li6B9u{0$tF1Ch88q$J`?K|%-wh+kDt+dJNna3$)I zer|X7t5@&+-mCX&G!@S6wKwUCU-$5N$n(Cv`P1GT56Cm$t9jl{A??%m{TL<(?<)j> zuRvjt@l*vo5w}O zb)DQ+mx_Ukfr^2Ofr^2Ofr^2Ofr^2Ofr^2Ofr^2Of&W7W7=BuR9bf*x`ym*Q-~Y?+ z|Ns1i=e-5|4tN828F&f!(Z@aShkyY3z%#%ea0Pe-`1gaJ_b=cN!0&+1)&0OY_fumL;;)PPywe&8JN*N=GKE5HlDH-IkC20jD4{eb8F7I+=_HSks7dEgP? zVc;Ba7Wm8kp7##$P2dIK5XgZq08aol;6C6V=REK4z%PMc00%${G=MrV1DpqbbJp{| z4-A0>*ayB0JPiEt!>|K*2eGp8`i_lR^{E*6z%fvx=UVbmWJ(UXG_=QXI4DfG{?diM zF{xe-f}YUE?+Me-LqAf(AZDR3^TDO1xdy*-sXNa?KF6-ihjDy)A&wf0bKS=LT%&%` zgX$*lvOF=g-e(z$4A1UXd#ur&QQF>_oK*@F6$Y2P3%s$kFds)@oh>rf4I7J%rAz$s zT-<2zOT6Cb#&Zh`EJ#^2U_GvbNM$_GSro*@oX1o8M$c?4ICEM@Y?vne#2mUR68^3> zF;QQ-6-1@oUC0H_vLVCKDqbkk$S;RGpq4m+w2w|f!9+DeIvB-F2 zk}(NMrq2lx!Kp8nKz=ojNy!=Ur}%HKE!Rayw6N2>jbz zBk`EIxZ|J zqC2eYk^&WRpQA}<_;clF0q9ms>ly^1NseOm-%5Df|IdR_&wRNiHy16}4 z?Ml9z-qk<*vM_;=9k$gKw4lb{M6WGNZtd=*xF;8E|D1%j$q#vAYY-Y)q;eF;8m%!c zBHBeW*m2E(22za@9{0FgDc3Td@q=7wbThQgJ+v0JeC#k1$K-yoq6FzH`?lHt7;VhHXS0h{DF;O(Y7Q)4| zNJ}-6q*a7;q#=*dZC2Zp=3?wF#3m=hxpS$8D%Tk5x{d3!*ax8Rrpi`j<@OJ@D%<_S ztmE0%1_Pkmpu%ICT#AF7Pc>M2hFc>;oBgf}AtKKe@# + +
+