diff --git a/.env.example b/.env.example index 0b5ef9a50a..525d271f45 100644 --- a/.env.example +++ b/.env.example @@ -142,7 +142,8 @@ COINBASE_PRIVATE_KEY= # from coinbase developer portal # if not configured it will be generated and written to runtime.character.settings.secrets.COINBASE_GENERATED_WALLET_ID and runtime.character.settings.secrets.COINBASE_GENERATED_WALLET_HEX_SEED COINBASE_GENERATED_WALLET_ID= # not your address but the wallet id from generating a wallet through the plugin COINBASE_GENERATED_WALLET_HEX_SEED= # not your address but the wallet hex seed from generating a wallet through the plugin and calling export - +# for webhook plugin the uri you want to send the webhook to for dummy ones use https://webhook.site +COINBASE_NOTIFICATION_URI= # Conflux Configuration CONFLUX_CORE_PRIVATE_KEY= CONFLUX_CORE_SPACE_RPC_URL= diff --git a/agent/src/index.ts b/agent/src/index.ts index 9546aaa804..77d28ef061 100644 --- a/agent/src/index.ts +++ b/agent/src/index.ts @@ -32,6 +32,7 @@ import { coinbaseMassPaymentsPlugin, tradePlugin, tokenContractPlugin, + webhookPlugin, } from "@ai16z/plugin-coinbase"; import { confluxPlugin } from "@ai16z/plugin-conflux"; import { imageGenerationPlugin } from "@ai16z/plugin-image-generation"; @@ -393,6 +394,11 @@ export function createAgent( getSecret(character, "COINBASE_PRIVATE_KEY") ? [coinbaseMassPaymentsPlugin, tradePlugin, tokenContractPlugin] : []), + getSecret(character, "COINBASE_API_KEY") && + getSecret(character, "COINBASE_PRIVATE_KEY") && + getSecret(character, "COINBASE_NOTIFICATION_URI") + ? webhookPlugin + : null, getSecret(character, "WALLET_SECRET_SALT") ? teePlugin : null, getSecret(character, "ALCHEMY_API_KEY") ? goatPlugin : null, getSecret(character, "APTOS_PRIVATE_KEY") ? aptosPlugin : null, diff --git a/docs/api/classes/AgentRuntime.md b/docs/api/classes/AgentRuntime.md index 7e4ffddd6d..db1e503f0e 100644 --- a/docs/api/classes/AgentRuntime.md +++ b/docs/api/classes/AgentRuntime.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / AgentRuntime +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / AgentRuntime # Class: AgentRuntime @@ -83,7 +83,7 @@ Custom fetch function to use for making requests. #### Defined in -[packages/core/src/runtime.ts:208](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L208) +[packages/core/src/runtime.ts:208](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L208) ## Properties @@ -99,7 +99,7 @@ The ID of the agent #### Defined in -[packages/core/src/runtime.ts:63](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L63) +[packages/core/src/runtime.ts:63](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L63) *** @@ -115,7 +115,7 @@ The base URL of the server where the agent's requests are processed. #### Defined in -[packages/core/src/runtime.ts:67](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L67) +[packages/core/src/runtime.ts:67](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L67) *** @@ -131,7 +131,7 @@ The database adapter used for interacting with the database. #### Defined in -[packages/core/src/runtime.ts:72](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L72) +[packages/core/src/runtime.ts:72](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L72) *** @@ -147,7 +147,7 @@ Authentication token used for securing requests. #### Defined in -[packages/core/src/runtime.ts:77](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L77) +[packages/core/src/runtime.ts:77](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L77) *** @@ -163,7 +163,7 @@ Custom actions that the agent can perform. #### Defined in -[packages/core/src/runtime.ts:82](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L82) +[packages/core/src/runtime.ts:82](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L82) *** @@ -179,7 +179,7 @@ Evaluators used to assess and guide the agent's responses. #### Defined in -[packages/core/src/runtime.ts:87](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L87) +[packages/core/src/runtime.ts:87](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L87) *** @@ -195,7 +195,7 @@ Context providers used to provide context for message generation. #### Defined in -[packages/core/src/runtime.ts:92](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L92) +[packages/core/src/runtime.ts:92](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L92) *** @@ -209,7 +209,7 @@ Context providers used to provide context for message generation. #### Defined in -[packages/core/src/runtime.ts:94](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L94) +[packages/core/src/runtime.ts:94](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L94) *** @@ -225,7 +225,7 @@ The model to use for generateText. #### Defined in -[packages/core/src/runtime.ts:99](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L99) +[packages/core/src/runtime.ts:99](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L99) *** @@ -241,7 +241,7 @@ The model to use for generateImage. #### Defined in -[packages/core/src/runtime.ts:104](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L104) +[packages/core/src/runtime.ts:104](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L104) *** @@ -276,7 +276,7 @@ Some environments may not have access to the global fetch function and need a cu #### Defined in -[packages/core/src/runtime.ts:110](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L110) +[packages/core/src/runtime.ts:110](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L110) *** @@ -292,7 +292,7 @@ The character to use for the agent #### Defined in -[packages/core/src/runtime.ts:115](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L115) +[packages/core/src/runtime.ts:115](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L115) *** @@ -308,7 +308,7 @@ Store messages that are sent and received by the agent. #### Defined in -[packages/core/src/runtime.ts:120](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L120) +[packages/core/src/runtime.ts:120](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L120) *** @@ -324,7 +324,7 @@ Store and recall descriptions of users based on conversations. #### Defined in -[packages/core/src/runtime.ts:125](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L125) +[packages/core/src/runtime.ts:125](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L125) *** @@ -340,7 +340,7 @@ Manage the creation and recall of static information (documents, historical game #### Defined in -[packages/core/src/runtime.ts:130](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L130) +[packages/core/src/runtime.ts:130](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L130) *** @@ -356,7 +356,7 @@ Hold large documents that can be referenced #### Defined in -[packages/core/src/runtime.ts:135](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L135) +[packages/core/src/runtime.ts:135](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L135) *** @@ -372,7 +372,7 @@ Searchable document fragments #### Defined in -[packages/core/src/runtime.ts:140](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L140) +[packages/core/src/runtime.ts:140](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L140) *** @@ -386,7 +386,7 @@ Searchable document fragments #### Defined in -[packages/core/src/runtime.ts:142](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L142) +[packages/core/src/runtime.ts:142](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L142) *** @@ -396,7 +396,7 @@ Searchable document fragments #### Defined in -[packages/core/src/runtime.ts:143](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L143) +[packages/core/src/runtime.ts:143](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L143) *** @@ -410,7 +410,7 @@ Searchable document fragments #### Defined in -[packages/core/src/runtime.ts:144](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L144) +[packages/core/src/runtime.ts:144](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L144) ## Methods @@ -432,7 +432,7 @@ Searchable document fragments #### Defined in -[packages/core/src/runtime.ts:146](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L146) +[packages/core/src/runtime.ts:146](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L146) *** @@ -454,7 +454,7 @@ Searchable document fragments #### Defined in -[packages/core/src/runtime.ts:161](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L161) +[packages/core/src/runtime.ts:161](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L161) *** @@ -480,7 +480,7 @@ Searchable document fragments #### Defined in -[packages/core/src/runtime.ts:165](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L165) +[packages/core/src/runtime.ts:165](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L165) *** @@ -502,7 +502,7 @@ Searchable document fragments #### Defined in -[packages/core/src/runtime.ts:174](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L174) +[packages/core/src/runtime.ts:174](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L174) *** @@ -520,7 +520,7 @@ Searchable document fragments #### Defined in -[packages/core/src/runtime.ts:375](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L375) +[packages/core/src/runtime.ts:375](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L375) *** @@ -542,7 +542,7 @@ Searchable document fragments #### Defined in -[packages/core/src/runtime.ts:439](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L439) +[packages/core/src/runtime.ts:439](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L439) *** @@ -564,7 +564,7 @@ The number of recent messages to be kept in memory. #### Defined in -[packages/core/src/runtime.ts:461](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L461) +[packages/core/src/runtime.ts:461](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L461) *** @@ -590,7 +590,7 @@ The action to register. #### Defined in -[packages/core/src/runtime.ts:469](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L469) +[packages/core/src/runtime.ts:469](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L469) *** @@ -612,7 +612,7 @@ The evaluator to register. #### Defined in -[packages/core/src/runtime.ts:478](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L478) +[packages/core/src/runtime.ts:478](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L478) *** @@ -634,7 +634,7 @@ The context provider to register. #### Defined in -[packages/core/src/runtime.ts:486](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L486) +[packages/core/src/runtime.ts:486](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L486) *** @@ -666,7 +666,7 @@ The message to process. #### Defined in -[packages/core/src/runtime.ts:495](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L495) +[packages/core/src/runtime.ts:495](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L495) *** @@ -702,7 +702,7 @@ The results of the evaluation. #### Defined in -[packages/core/src/runtime.ts:572](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L572) +[packages/core/src/runtime.ts:572](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L572) *** @@ -734,7 +734,7 @@ An error if the participant cannot be added. #### Defined in -[packages/core/src/runtime.ts:642](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L642) +[packages/core/src/runtime.ts:642](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L642) *** @@ -770,7 +770,7 @@ The user name to ensure the existence of. #### Defined in -[packages/core/src/runtime.ts:658](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L658) +[packages/core/src/runtime.ts:658](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L658) *** @@ -794,7 +794,7 @@ The user name to ensure the existence of. #### Defined in -[packages/core/src/runtime.ts:678](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L678) +[packages/core/src/runtime.ts:678](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L678) *** @@ -824,7 +824,7 @@ The user name to ensure the existence of. #### Defined in -[packages/core/src/runtime.ts:695](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L695) +[packages/core/src/runtime.ts:695](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L695) *** @@ -855,7 +855,7 @@ An error if the room cannot be created. #### Defined in -[packages/core/src/runtime.ts:731](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L731) +[packages/core/src/runtime.ts:731](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L731) *** @@ -885,7 +885,7 @@ The state of the agent. #### Defined in -[packages/core/src/runtime.ts:744](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L744) +[packages/core/src/runtime.ts:744](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L744) *** @@ -907,4 +907,4 @@ The state of the agent. #### Defined in -[packages/core/src/runtime.ts:1190](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L1190) +[packages/core/src/runtime.ts:1190](https://github.com/monilpat/eliza/blob/main/packages/core/src/runtime.ts#L1190) diff --git a/docs/api/classes/CacheManager.md b/docs/api/classes/CacheManager.md index 87e229ec35..b9a7f402c1 100644 --- a/docs/api/classes/CacheManager.md +++ b/docs/api/classes/CacheManager.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / CacheManager +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / CacheManager # Class: CacheManager\ @@ -26,7 +26,7 @@ #### Defined in -[packages/core/src/cache.ts:93](https://github.com/ai16z/eliza/blob/main/packages/core/src/cache.ts#L93) +[packages/core/src/cache.ts:93](https://github.com/monilpat/eliza/blob/main/packages/core/src/cache.ts#L93) ## Properties @@ -36,7 +36,7 @@ #### Defined in -[packages/core/src/cache.ts:91](https://github.com/ai16z/eliza/blob/main/packages/core/src/cache.ts#L91) +[packages/core/src/cache.ts:91](https://github.com/monilpat/eliza/blob/main/packages/core/src/cache.ts#L91) ## Methods @@ -62,7 +62,7 @@ #### Defined in -[packages/core/src/cache.ts:97](https://github.com/ai16z/eliza/blob/main/packages/core/src/cache.ts#L97) +[packages/core/src/cache.ts:97](https://github.com/monilpat/eliza/blob/main/packages/core/src/cache.ts#L97) *** @@ -92,7 +92,7 @@ #### Defined in -[packages/core/src/cache.ts:116](https://github.com/ai16z/eliza/blob/main/packages/core/src/cache.ts#L116) +[packages/core/src/cache.ts:116](https://github.com/monilpat/eliza/blob/main/packages/core/src/cache.ts#L116) *** @@ -114,4 +114,4 @@ #### Defined in -[packages/core/src/cache.ts:123](https://github.com/ai16z/eliza/blob/main/packages/core/src/cache.ts#L123) +[packages/core/src/cache.ts:123](https://github.com/monilpat/eliza/blob/main/packages/core/src/cache.ts#L123) diff --git a/docs/api/classes/DatabaseAdapter.md b/docs/api/classes/DatabaseAdapter.md index 9443e7bfd5..16e8e69a69 100644 --- a/docs/api/classes/DatabaseAdapter.md +++ b/docs/api/classes/DatabaseAdapter.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / DatabaseAdapter +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / DatabaseAdapter # Class: `abstract` DatabaseAdapter\ @@ -17,12 +17,36 @@ like accounts, memories, actors, goals, and rooms. ### new DatabaseAdapter() -> **new DatabaseAdapter**\<`DB`\>(): [`DatabaseAdapter`](DatabaseAdapter.md)\<`DB`\> +> **new DatabaseAdapter**\<`DB`\>(`circuitBreakerConfig`?): [`DatabaseAdapter`](DatabaseAdapter.md)\<`DB`\> + +Creates a new DatabaseAdapter instance with optional circuit breaker configuration. + +#### Parameters + +• **circuitBreakerConfig?** + +Configuration options for the circuit breaker + +• **circuitBreakerConfig.failureThreshold?**: `number` + +Number of failures before circuit opens (defaults to 5) + +• **circuitBreakerConfig.resetTimeout?**: `number` + +Time in ms before attempting to close circuit (defaults to 60000) + +• **circuitBreakerConfig.halfOpenMaxAttempts?**: `number` + +Number of successful attempts needed to close circuit (defaults to 3) #### Returns [`DatabaseAdapter`](DatabaseAdapter.md)\<`DB`\> +#### Defined in + +[packages/core/src/database.ts:46](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L46) + ## Properties ### db @@ -37,7 +61,25 @@ The database instance. #### Defined in -[packages/core/src/database.ts:21](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L21) +[packages/core/src/database.ts:23](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L23) + +*** + +### circuitBreaker + +> `protected` **circuitBreaker**: `CircuitBreaker` + +Circuit breaker instance used to handle fault tolerance and prevent cascading failures. +Implements the Circuit Breaker pattern to temporarily disable operations when a failure threshold is reached. + +The circuit breaker has three states: +- CLOSED: Normal operation, requests pass through +- OPEN: Failure threshold exceeded, requests are blocked +- HALF_OPEN: Testing if service has recovered + +#### Defined in + +[packages/core/src/database.ts:36](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L36) ## Methods @@ -59,7 +101,7 @@ A Promise that resolves when initialization is complete. #### Defined in -[packages/core/src/database.ts:27](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L27) +[packages/core/src/database.ts:58](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L58) *** @@ -81,7 +123,7 @@ A Promise that resolves when closing is complete. #### Defined in -[packages/core/src/database.ts:33](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L33) +[packages/core/src/database.ts:64](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L64) *** @@ -109,7 +151,7 @@ A Promise that resolves to the Account object or null if not found. #### Defined in -[packages/core/src/database.ts:40](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L40) +[packages/core/src/database.ts:71](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L71) *** @@ -137,7 +179,7 @@ A Promise that resolves when the account creation is complete. #### Defined in -[packages/core/src/database.ts:47](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L47) +[packages/core/src/database.ts:78](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L78) *** @@ -175,7 +217,7 @@ A Promise that resolves to an array of Memory objects. #### Defined in -[packages/core/src/database.ts:54](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L54) +[packages/core/src/database.ts:85](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L85) *** @@ -203,7 +245,7 @@ A Promise that resolves to an array of Memory objects. #### Defined in -[packages/core/src/database.ts:62](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L62) +[packages/core/src/database.ts:93](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L93) *** @@ -225,7 +267,7 @@ A Promise that resolves to an array of Memory objects. #### Defined in -[packages/core/src/database.ts:68](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L68) +[packages/core/src/database.ts:99](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L99) *** @@ -265,7 +307,7 @@ A Promise that resolves to an array of objects containing embeddings and levensh #### Defined in -[packages/core/src/database.ts:75](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L75) +[packages/core/src/database.ts:106](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L106) *** @@ -301,7 +343,7 @@ A Promise that resolves when the log entry has been saved. #### Defined in -[packages/core/src/database.ts:101](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L101) +[packages/core/src/database.ts:132](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L132) *** @@ -331,7 +373,7 @@ A Promise that resolves to an array of Actor objects. #### Defined in -[packages/core/src/database.ts:113](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L113) +[packages/core/src/database.ts:144](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L144) *** @@ -373,7 +415,7 @@ A Promise that resolves to an array of Memory objects. #### Defined in -[packages/core/src/database.ts:120](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L120) +[packages/core/src/database.ts:151](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L151) *** @@ -405,7 +447,7 @@ A Promise that resolves when the goal status has been updated. #### Defined in -[packages/core/src/database.ts:135](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L135) +[packages/core/src/database.ts:166](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L166) *** @@ -449,7 +491,7 @@ A Promise that resolves to an array of Memory objects. #### Defined in -[packages/core/src/database.ts:146](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L146) +[packages/core/src/database.ts:177](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L177) *** @@ -485,7 +527,7 @@ A Promise that resolves when the memory has been created. #### Defined in -[packages/core/src/database.ts:165](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L165) +[packages/core/src/database.ts:196](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L196) *** @@ -517,7 +559,7 @@ A Promise that resolves when the memory has been removed. #### Defined in -[packages/core/src/database.ts:177](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L177) +[packages/core/src/database.ts:208](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L208) *** @@ -549,7 +591,7 @@ A Promise that resolves when all memories have been removed. #### Defined in -[packages/core/src/database.ts:185](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L185) +[packages/core/src/database.ts:216](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L216) *** @@ -585,7 +627,7 @@ A Promise that resolves to the number of memories. #### Defined in -[packages/core/src/database.ts:194](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L194) +[packages/core/src/database.ts:225](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L225) *** @@ -623,7 +665,7 @@ A Promise that resolves to an array of Goal objects. #### Defined in -[packages/core/src/database.ts:205](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L205) +[packages/core/src/database.ts:236](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L236) *** @@ -651,7 +693,7 @@ A Promise that resolves when the goal has been updated. #### Defined in -[packages/core/src/database.ts:218](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L218) +[packages/core/src/database.ts:249](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L249) *** @@ -679,7 +721,7 @@ A Promise that resolves when the goal has been created. #### Defined in -[packages/core/src/database.ts:225](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L225) +[packages/core/src/database.ts:256](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L256) *** @@ -707,7 +749,7 @@ A Promise that resolves when the goal has been removed. #### Defined in -[packages/core/src/database.ts:232](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L232) +[packages/core/src/database.ts:263](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L263) *** @@ -735,7 +777,7 @@ A Promise that resolves when all goals have been removed. #### Defined in -[packages/core/src/database.ts:239](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L239) +[packages/core/src/database.ts:270](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L270) *** @@ -763,7 +805,7 @@ A Promise that resolves to the room ID or null if not found. #### Defined in -[packages/core/src/database.ts:246](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L246) +[packages/core/src/database.ts:277](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L277) *** @@ -791,7 +833,7 @@ A Promise that resolves to the UUID of the created room. #### Defined in -[packages/core/src/database.ts:253](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L253) +[packages/core/src/database.ts:284](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L284) *** @@ -819,7 +861,7 @@ A Promise that resolves when the room has been removed. #### Defined in -[packages/core/src/database.ts:260](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L260) +[packages/core/src/database.ts:291](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L291) *** @@ -847,7 +889,7 @@ A Promise that resolves to an array of room IDs. #### Defined in -[packages/core/src/database.ts:267](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L267) +[packages/core/src/database.ts:298](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L298) *** @@ -875,7 +917,7 @@ A Promise that resolves to an array of room IDs. #### Defined in -[packages/core/src/database.ts:274](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L274) +[packages/core/src/database.ts:305](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L305) *** @@ -907,7 +949,7 @@ A Promise that resolves to a boolean indicating success or failure. #### Defined in -[packages/core/src/database.ts:282](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L282) +[packages/core/src/database.ts:313](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L313) *** @@ -939,7 +981,7 @@ A Promise that resolves to a boolean indicating success or failure. #### Defined in -[packages/core/src/database.ts:290](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L290) +[packages/core/src/database.ts:321](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L321) *** @@ -969,7 +1011,7 @@ A Promise that resolves to an array of Participant objects. ##### Defined in -[packages/core/src/database.ts:297](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L297) +[packages/core/src/database.ts:328](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L328) #### getParticipantsForAccount(userId) @@ -995,7 +1037,7 @@ A Promise that resolves to an array of Participant objects. ##### Defined in -[packages/core/src/database.ts:304](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L304) +[packages/core/src/database.ts:335](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L335) *** @@ -1023,7 +1065,7 @@ A Promise that resolves to an array of UUIDs representing the participants. #### Defined in -[packages/core/src/database.ts:311](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L311) +[packages/core/src/database.ts:342](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L342) *** @@ -1047,7 +1089,7 @@ A Promise that resolves to an array of UUIDs representing the participants. #### Defined in -[packages/core/src/database.ts:313](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L313) +[packages/core/src/database.ts:344](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L344) *** @@ -1073,7 +1115,7 @@ A Promise that resolves to an array of UUIDs representing the participants. #### Defined in -[packages/core/src/database.ts:317](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L317) +[packages/core/src/database.ts:348](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L348) *** @@ -1105,7 +1147,7 @@ A Promise that resolves to a boolean indicating success or failure of the creati #### Defined in -[packages/core/src/database.ts:328](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L328) +[packages/core/src/database.ts:359](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L359) *** @@ -1137,7 +1179,7 @@ A Promise that resolves to the Relationship object or null if not found. #### Defined in -[packages/core/src/database.ts:338](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L338) +[packages/core/src/database.ts:369](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L369) *** @@ -1167,4 +1209,40 @@ A Promise that resolves to an array of Relationship objects. #### Defined in -[packages/core/src/database.ts:348](https://github.com/ai16z/eliza/blob/main/packages/core/src/database.ts#L348) +[packages/core/src/database.ts:379](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L379) + +*** + +### withCircuitBreaker() + +> `protected` **withCircuitBreaker**\<`T`\>(`operation`, `context`): `Promise`\<`T`\> + +Executes an operation with circuit breaker protection. + +#### Type Parameters + +• **T** + +#### Parameters + +• **operation** + +A function that returns a Promise to be executed with circuit breaker protection + +• **context**: `string` + +A string describing the context/operation being performed for logging purposes + +#### Returns + +`Promise`\<`T`\> + +A Promise that resolves to the result of the operation + +#### Throws + +Will throw an error if the circuit breaker is open or if the operation fails + +#### Defined in + +[packages/core/src/database.ts:391](https://github.com/monilpat/eliza/blob/main/packages/core/src/database.ts#L391) diff --git a/docs/api/classes/DbCacheAdapter.md b/docs/api/classes/DbCacheAdapter.md index 439bf2f0d0..34a12e96f9 100644 --- a/docs/api/classes/DbCacheAdapter.md +++ b/docs/api/classes/DbCacheAdapter.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / DbCacheAdapter +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / DbCacheAdapter # Class: DbCacheAdapter @@ -24,7 +24,7 @@ #### Defined in -[packages/core/src/cache.ts:70](https://github.com/ai16z/eliza/blob/main/packages/core/src/cache.ts#L70) +[packages/core/src/cache.ts:70](https://github.com/monilpat/eliza/blob/main/packages/core/src/cache.ts#L70) ## Methods @@ -46,7 +46,7 @@ #### Defined in -[packages/core/src/cache.ts:75](https://github.com/ai16z/eliza/blob/main/packages/core/src/cache.ts#L75) +[packages/core/src/cache.ts:75](https://github.com/monilpat/eliza/blob/main/packages/core/src/cache.ts#L75) *** @@ -70,7 +70,7 @@ #### Defined in -[packages/core/src/cache.ts:79](https://github.com/ai16z/eliza/blob/main/packages/core/src/cache.ts#L79) +[packages/core/src/cache.ts:79](https://github.com/monilpat/eliza/blob/main/packages/core/src/cache.ts#L79) *** @@ -92,4 +92,4 @@ #### Defined in -[packages/core/src/cache.ts:83](https://github.com/ai16z/eliza/blob/main/packages/core/src/cache.ts#L83) +[packages/core/src/cache.ts:83](https://github.com/monilpat/eliza/blob/main/packages/core/src/cache.ts#L83) diff --git a/docs/api/classes/FsCacheAdapter.md b/docs/api/classes/FsCacheAdapter.md index f9926e4cd3..ef8b011368 100644 --- a/docs/api/classes/FsCacheAdapter.md +++ b/docs/api/classes/FsCacheAdapter.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / FsCacheAdapter +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / FsCacheAdapter # Class: FsCacheAdapter @@ -22,7 +22,7 @@ #### Defined in -[packages/core/src/cache.ts:37](https://github.com/ai16z/eliza/blob/main/packages/core/src/cache.ts#L37) +[packages/core/src/cache.ts:37](https://github.com/monilpat/eliza/blob/main/packages/core/src/cache.ts#L37) ## Methods @@ -44,7 +44,7 @@ #### Defined in -[packages/core/src/cache.ts:39](https://github.com/ai16z/eliza/blob/main/packages/core/src/cache.ts#L39) +[packages/core/src/cache.ts:39](https://github.com/monilpat/eliza/blob/main/packages/core/src/cache.ts#L39) *** @@ -68,7 +68,7 @@ #### Defined in -[packages/core/src/cache.ts:48](https://github.com/ai16z/eliza/blob/main/packages/core/src/cache.ts#L48) +[packages/core/src/cache.ts:48](https://github.com/monilpat/eliza/blob/main/packages/core/src/cache.ts#L48) *** @@ -90,4 +90,4 @@ #### Defined in -[packages/core/src/cache.ts:59](https://github.com/ai16z/eliza/blob/main/packages/core/src/cache.ts#L59) +[packages/core/src/cache.ts:59](https://github.com/monilpat/eliza/blob/main/packages/core/src/cache.ts#L59) diff --git a/docs/api/classes/MemoryCacheAdapter.md b/docs/api/classes/MemoryCacheAdapter.md index 943c245e91..7f67647223 100644 --- a/docs/api/classes/MemoryCacheAdapter.md +++ b/docs/api/classes/MemoryCacheAdapter.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / MemoryCacheAdapter +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / MemoryCacheAdapter # Class: MemoryCacheAdapter @@ -22,7 +22,7 @@ #### Defined in -[packages/core/src/cache.ts:19](https://github.com/ai16z/eliza/blob/main/packages/core/src/cache.ts#L19) +[packages/core/src/cache.ts:19](https://github.com/monilpat/eliza/blob/main/packages/core/src/cache.ts#L19) ## Properties @@ -32,7 +32,7 @@ #### Defined in -[packages/core/src/cache.ts:17](https://github.com/ai16z/eliza/blob/main/packages/core/src/cache.ts#L17) +[packages/core/src/cache.ts:17](https://github.com/monilpat/eliza/blob/main/packages/core/src/cache.ts#L17) ## Methods @@ -54,7 +54,7 @@ #### Defined in -[packages/core/src/cache.ts:23](https://github.com/ai16z/eliza/blob/main/packages/core/src/cache.ts#L23) +[packages/core/src/cache.ts:23](https://github.com/monilpat/eliza/blob/main/packages/core/src/cache.ts#L23) *** @@ -78,7 +78,7 @@ #### Defined in -[packages/core/src/cache.ts:27](https://github.com/ai16z/eliza/blob/main/packages/core/src/cache.ts#L27) +[packages/core/src/cache.ts:27](https://github.com/monilpat/eliza/blob/main/packages/core/src/cache.ts#L27) *** @@ -100,4 +100,4 @@ #### Defined in -[packages/core/src/cache.ts:31](https://github.com/ai16z/eliza/blob/main/packages/core/src/cache.ts#L31) +[packages/core/src/cache.ts:31](https://github.com/monilpat/eliza/blob/main/packages/core/src/cache.ts#L31) diff --git a/docs/api/classes/MemoryManager.md b/docs/api/classes/MemoryManager.md index defe4d0992..c1e63c13df 100644 --- a/docs/api/classes/MemoryManager.md +++ b/docs/api/classes/MemoryManager.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / MemoryManager +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / MemoryManager # Class: MemoryManager @@ -36,7 +36,7 @@ The AgentRuntime instance associated with this manager. #### Defined in -[packages/core/src/memory.ts:33](https://github.com/ai16z/eliza/blob/main/packages/core/src/memory.ts#L33) +[packages/core/src/memory.ts:33](https://github.com/monilpat/eliza/blob/main/packages/core/src/memory.ts#L33) ## Properties @@ -52,7 +52,7 @@ The AgentRuntime instance associated with this manager. #### Defined in -[packages/core/src/memory.ts:20](https://github.com/ai16z/eliza/blob/main/packages/core/src/memory.ts#L20) +[packages/core/src/memory.ts:20](https://github.com/monilpat/eliza/blob/main/packages/core/src/memory.ts#L20) *** @@ -68,7 +68,7 @@ The name of the database table this manager operates on. #### Defined in -[packages/core/src/memory.ts:25](https://github.com/ai16z/eliza/blob/main/packages/core/src/memory.ts#L25) +[packages/core/src/memory.ts:25](https://github.com/monilpat/eliza/blob/main/packages/core/src/memory.ts#L25) ## Methods @@ -102,7 +102,7 @@ Error if the memory content is empty #### Defined in -[packages/core/src/memory.ts:52](https://github.com/ai16z/eliza/blob/main/packages/core/src/memory.ts#L52) +[packages/core/src/memory.ts:52](https://github.com/monilpat/eliza/blob/main/packages/core/src/memory.ts#L52) *** @@ -146,7 +146,7 @@ A Promise resolving to an array of Memory objects. #### Defined in -[packages/core/src/memory.ts:87](https://github.com/ai16z/eliza/blob/main/packages/core/src/memory.ts#L87) +[packages/core/src/memory.ts:87](https://github.com/monilpat/eliza/blob/main/packages/core/src/memory.ts#L87) *** @@ -168,7 +168,7 @@ A Promise resolving to an array of Memory objects. #### Defined in -[packages/core/src/memory.ts:111](https://github.com/ai16z/eliza/blob/main/packages/core/src/memory.ts#L111) +[packages/core/src/memory.ts:111](https://github.com/monilpat/eliza/blob/main/packages/core/src/memory.ts#L111) *** @@ -216,7 +216,7 @@ A Promise resolving to an array of Memory objects that match the embedding. #### Defined in -[packages/core/src/memory.ts:137](https://github.com/ai16z/eliza/blob/main/packages/core/src/memory.ts#L137) +[packages/core/src/memory.ts:137](https://github.com/monilpat/eliza/blob/main/packages/core/src/memory.ts#L137) *** @@ -248,7 +248,7 @@ A Promise that resolves when the operation completes. #### Defined in -[packages/core/src/memory.ts:172](https://github.com/ai16z/eliza/blob/main/packages/core/src/memory.ts#L172) +[packages/core/src/memory.ts:172](https://github.com/monilpat/eliza/blob/main/packages/core/src/memory.ts#L172) *** @@ -272,7 +272,7 @@ A Promise that resolves when the operation completes. #### Defined in -[packages/core/src/memory.ts:192](https://github.com/ai16z/eliza/blob/main/packages/core/src/memory.ts#L192) +[packages/core/src/memory.ts:192](https://github.com/monilpat/eliza/blob/main/packages/core/src/memory.ts#L192) *** @@ -294,7 +294,7 @@ A Promise that resolves when the operation completes. #### Defined in -[packages/core/src/memory.ts:200](https://github.com/ai16z/eliza/blob/main/packages/core/src/memory.ts#L200) +[packages/core/src/memory.ts:200](https://github.com/monilpat/eliza/blob/main/packages/core/src/memory.ts#L200) *** @@ -322,7 +322,7 @@ A Promise that resolves when the operation completes. #### Defined in -[packages/core/src/memory.ts:211](https://github.com/ai16z/eliza/blob/main/packages/core/src/memory.ts#L211) +[packages/core/src/memory.ts:211](https://github.com/monilpat/eliza/blob/main/packages/core/src/memory.ts#L211) *** @@ -350,7 +350,7 @@ A Promise that resolves when the operation completes. #### Defined in -[packages/core/src/memory.ts:223](https://github.com/ai16z/eliza/blob/main/packages/core/src/memory.ts#L223) +[packages/core/src/memory.ts:223](https://github.com/monilpat/eliza/blob/main/packages/core/src/memory.ts#L223) *** @@ -382,4 +382,4 @@ A Promise resolving to the count of memories. #### Defined in -[packages/core/src/memory.ts:236](https://github.com/ai16z/eliza/blob/main/packages/core/src/memory.ts#L236) +[packages/core/src/memory.ts:236](https://github.com/monilpat/eliza/blob/main/packages/core/src/memory.ts#L236) diff --git a/docs/api/classes/Service.md b/docs/api/classes/Service.md index 9619cb2f51..5b883f18d4 100644 --- a/docs/api/classes/Service.md +++ b/docs/api/classes/Service.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / Service +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / Service # Class: `abstract` Service @@ -36,7 +36,7 @@ #### Defined in -[packages/core/src/types.ts:955](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L955) +[packages/core/src/types.ts:957](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L957) *** @@ -52,7 +52,7 @@ #### Defined in -[packages/core/src/types.ts:966](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L966) +[packages/core/src/types.ts:968](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L968) ## Methods @@ -70,7 +70,7 @@ #### Defined in -[packages/core/src/types.ts:959](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L959) +[packages/core/src/types.ts:961](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L961) *** @@ -90,4 +90,4 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:971](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L971) +[packages/core/src/types.ts:973](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L973) diff --git a/docs/api/enumerations/Clients.md b/docs/api/enumerations/Clients.md index 25e4098134..6f72cbcd59 100644 --- a/docs/api/enumerations/Clients.md +++ b/docs/api/enumerations/Clients.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / Clients +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / Clients # Enumeration: Clients @@ -12,7 +12,7 @@ Available client platforms #### Defined in -[packages/core/src/types.ts:599](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L599) +[packages/core/src/types.ts:601](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L601) *** @@ -22,7 +22,7 @@ Available client platforms #### Defined in -[packages/core/src/types.ts:600](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L600) +[packages/core/src/types.ts:602](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L602) *** @@ -32,7 +32,7 @@ Available client platforms #### Defined in -[packages/core/src/types.ts:601](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L601) +[packages/core/src/types.ts:603](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L603) *** @@ -42,4 +42,4 @@ Available client platforms #### Defined in -[packages/core/src/types.ts:602](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L602) +[packages/core/src/types.ts:604](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L604) diff --git a/docs/api/enumerations/GoalStatus.md b/docs/api/enumerations/GoalStatus.md index 5d29385ddd..ccf85342be 100644 --- a/docs/api/enumerations/GoalStatus.md +++ b/docs/api/enumerations/GoalStatus.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / GoalStatus +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / GoalStatus # Enumeration: GoalStatus @@ -12,7 +12,7 @@ Status enum for goals #### Defined in -[packages/core/src/types.ts:100](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L100) +[packages/core/src/types.ts:100](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L100) *** @@ -22,7 +22,7 @@ Status enum for goals #### Defined in -[packages/core/src/types.ts:101](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L101) +[packages/core/src/types.ts:101](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L101) *** @@ -32,4 +32,4 @@ Status enum for goals #### Defined in -[packages/core/src/types.ts:102](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L102) +[packages/core/src/types.ts:102](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L102) diff --git a/docs/api/enumerations/LoggingLevel.md b/docs/api/enumerations/LoggingLevel.md index 8780e55d6e..0255d7e874 100644 --- a/docs/api/enumerations/LoggingLevel.md +++ b/docs/api/enumerations/LoggingLevel.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / LoggingLevel +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / LoggingLevel # Enumeration: LoggingLevel @@ -10,7 +10,7 @@ #### Defined in -[packages/core/src/types.ts:1147](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1147) +[packages/core/src/types.ts:1149](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1149) *** @@ -20,7 +20,7 @@ #### Defined in -[packages/core/src/types.ts:1148](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1148) +[packages/core/src/types.ts:1150](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1150) *** @@ -30,4 +30,4 @@ #### Defined in -[packages/core/src/types.ts:1149](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1149) +[packages/core/src/types.ts:1151](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1151) diff --git a/docs/api/enumerations/ModelClass.md b/docs/api/enumerations/ModelClass.md index abfb7b4ecf..df81bc561f 100644 --- a/docs/api/enumerations/ModelClass.md +++ b/docs/api/enumerations/ModelClass.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / ModelClass +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / ModelClass # Enumeration: ModelClass @@ -12,7 +12,7 @@ Model size/type classification #### Defined in -[packages/core/src/types.ts:132](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L132) +[packages/core/src/types.ts:132](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L132) *** @@ -22,7 +22,7 @@ Model size/type classification #### Defined in -[packages/core/src/types.ts:133](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L133) +[packages/core/src/types.ts:133](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L133) *** @@ -32,7 +32,7 @@ Model size/type classification #### Defined in -[packages/core/src/types.ts:134](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L134) +[packages/core/src/types.ts:134](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L134) *** @@ -42,7 +42,7 @@ Model size/type classification #### Defined in -[packages/core/src/types.ts:135](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L135) +[packages/core/src/types.ts:135](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L135) *** @@ -52,4 +52,4 @@ Model size/type classification #### Defined in -[packages/core/src/types.ts:136](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L136) +[packages/core/src/types.ts:136](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L136) diff --git a/docs/api/enumerations/ModelProviderName.md b/docs/api/enumerations/ModelProviderName.md index b1a10f128f..f80340a1c9 100644 --- a/docs/api/enumerations/ModelProviderName.md +++ b/docs/api/enumerations/ModelProviderName.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / ModelProviderName +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / ModelProviderName # Enumeration: ModelProviderName @@ -12,7 +12,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:213](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L213) +[packages/core/src/types.ts:214](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L214) *** @@ -22,7 +22,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:214](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L214) +[packages/core/src/types.ts:215](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L215) *** @@ -32,7 +32,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:215](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L215) +[packages/core/src/types.ts:216](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L216) *** @@ -42,7 +42,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:216](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L216) +[packages/core/src/types.ts:217](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L217) *** @@ -52,7 +52,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:217](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L217) +[packages/core/src/types.ts:218](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L218) *** @@ -62,7 +62,17 @@ Available model providers #### Defined in -[packages/core/src/types.ts:218](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L218) +[packages/core/src/types.ts:219](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L219) + +*** + +### TOGETHER + +> **TOGETHER**: `"together"` + +#### Defined in + +[packages/core/src/types.ts:220](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L220) *** @@ -72,7 +82,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:219](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L219) +[packages/core/src/types.ts:221](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L221) *** @@ -82,7 +92,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:220](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L220) +[packages/core/src/types.ts:222](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L222) *** @@ -92,7 +102,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:221](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L221) +[packages/core/src/types.ts:223](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L223) *** @@ -102,7 +112,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:222](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L222) +[packages/core/src/types.ts:224](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L224) *** @@ -112,7 +122,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:223](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L223) +[packages/core/src/types.ts:225](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L225) *** @@ -122,7 +132,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:224](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L224) +[packages/core/src/types.ts:226](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L226) *** @@ -132,7 +142,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:225](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L225) +[packages/core/src/types.ts:227](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L227) *** @@ -142,7 +152,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:226](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L226) +[packages/core/src/types.ts:228](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L228) *** @@ -152,7 +162,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:227](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L227) +[packages/core/src/types.ts:229](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L229) *** @@ -162,7 +172,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:228](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L228) +[packages/core/src/types.ts:230](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L230) *** @@ -172,7 +182,7 @@ Available model providers #### Defined in -[packages/core/src/types.ts:229](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L229) +[packages/core/src/types.ts:231](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L231) *** @@ -182,4 +192,4 @@ Available model providers #### Defined in -[packages/core/src/types.ts:230](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L230) +[packages/core/src/types.ts:232](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L232) diff --git a/docs/api/enumerations/ServiceType.md b/docs/api/enumerations/ServiceType.md index 6adf9c9ebe..a5367c08bc 100644 --- a/docs/api/enumerations/ServiceType.md +++ b/docs/api/enumerations/ServiceType.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / ServiceType +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / ServiceType # Enumeration: ServiceType @@ -10,7 +10,7 @@ #### Defined in -[packages/core/src/types.ts:1136](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1136) +[packages/core/src/types.ts:1138](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1138) *** @@ -20,7 +20,7 @@ #### Defined in -[packages/core/src/types.ts:1137](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1137) +[packages/core/src/types.ts:1139](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1139) *** @@ -30,7 +30,7 @@ #### Defined in -[packages/core/src/types.ts:1138](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1138) +[packages/core/src/types.ts:1140](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1140) *** @@ -40,7 +40,7 @@ #### Defined in -[packages/core/src/types.ts:1139](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1139) +[packages/core/src/types.ts:1141](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1141) *** @@ -50,7 +50,7 @@ #### Defined in -[packages/core/src/types.ts:1140](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1140) +[packages/core/src/types.ts:1142](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1142) *** @@ -60,7 +60,7 @@ #### Defined in -[packages/core/src/types.ts:1141](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1141) +[packages/core/src/types.ts:1143](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1143) *** @@ -70,7 +70,7 @@ #### Defined in -[packages/core/src/types.ts:1142](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1142) +[packages/core/src/types.ts:1144](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1144) *** @@ -80,4 +80,4 @@ #### Defined in -[packages/core/src/types.ts:1143](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1143) +[packages/core/src/types.ts:1145](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1145) diff --git a/docs/api/functions/addHeader.md b/docs/api/functions/addHeader.md index 5a8709f6d3..3e7d548be9 100644 --- a/docs/api/functions/addHeader.md +++ b/docs/api/functions/addHeader.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / addHeader +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / addHeader # Function: addHeader() @@ -39,4 +39,4 @@ const text = addHeader(header, body); ## Defined in -[packages/core/src/context.ts:58](https://github.com/ai16z/eliza/blob/main/packages/core/src/context.ts#L58) +[packages/core/src/context.ts:58](https://github.com/monilpat/eliza/blob/main/packages/core/src/context.ts#L58) diff --git a/docs/api/functions/composeActionExamples.md b/docs/api/functions/composeActionExamples.md index 556f4e127e..73656af4f5 100644 --- a/docs/api/functions/composeActionExamples.md +++ b/docs/api/functions/composeActionExamples.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / composeActionExamples +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / composeActionExamples # Function: composeActionExamples() @@ -25,4 +25,4 @@ A string containing formatted examples of conversations. ## Defined in -[packages/core/src/actions.ts:11](https://github.com/ai16z/eliza/blob/main/packages/core/src/actions.ts#L11) +[packages/core/src/actions.ts:11](https://github.com/monilpat/eliza/blob/main/packages/core/src/actions.ts#L11) diff --git a/docs/api/functions/composeContext.md b/docs/api/functions/composeContext.md index f49d670244..0854ffa34d 100644 --- a/docs/api/functions/composeContext.md +++ b/docs/api/functions/composeContext.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / composeContext +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / composeContext # Function: composeContext() @@ -44,4 +44,4 @@ const context = composeContext({ state, template }); ## Defined in -[packages/core/src/context.ts:24](https://github.com/ai16z/eliza/blob/main/packages/core/src/context.ts#L24) +[packages/core/src/context.ts:24](https://github.com/monilpat/eliza/blob/main/packages/core/src/context.ts#L24) diff --git a/docs/api/functions/configureSettings.md b/docs/api/functions/configureSettings.md index 3313c1835e..4d58414a6f 100644 --- a/docs/api/functions/configureSettings.md +++ b/docs/api/functions/configureSettings.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / configureSettings +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / configureSettings # Function: configureSettings() @@ -18,4 +18,4 @@ Object containing environment variables ## Defined in -[packages/core/src/settings.ts:69](https://github.com/ai16z/eliza/blob/main/packages/core/src/settings.ts#L69) +[packages/core/src/settings.ts:69](https://github.com/monilpat/eliza/blob/main/packages/core/src/settings.ts#L69) diff --git a/docs/api/functions/createGoal.md b/docs/api/functions/createGoal.md index 613e4c5faf..c5f9f47915 100644 --- a/docs/api/functions/createGoal.md +++ b/docs/api/functions/createGoal.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / createGoal +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / createGoal # Function: createGoal() @@ -18,4 +18,4 @@ ## Defined in -[packages/core/src/goals.ts:55](https://github.com/ai16z/eliza/blob/main/packages/core/src/goals.ts#L55) +[packages/core/src/goals.ts:55](https://github.com/monilpat/eliza/blob/main/packages/core/src/goals.ts#L55) diff --git a/docs/api/functions/createRelationship.md b/docs/api/functions/createRelationship.md index cca297599b..93578aae5f 100644 --- a/docs/api/functions/createRelationship.md +++ b/docs/api/functions/createRelationship.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / createRelationship +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / createRelationship # Function: createRelationship() @@ -20,4 +20,4 @@ ## Defined in -[packages/core/src/relationships.ts:3](https://github.com/ai16z/eliza/blob/main/packages/core/src/relationships.ts#L3) +[packages/core/src/relationships.ts:3](https://github.com/monilpat/eliza/blob/main/packages/core/src/relationships.ts#L3) diff --git a/docs/api/functions/embed.md b/docs/api/functions/embed.md index 0ddb9e363b..7478980842 100644 --- a/docs/api/functions/embed.md +++ b/docs/api/functions/embed.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / embed +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / embed # Function: embed() @@ -28,4 +28,4 @@ If the API request fails ## Defined in -[packages/core/src/embedding.ts:145](https://github.com/ai16z/eliza/blob/main/packages/core/src/embedding.ts#L145) +[packages/core/src/embedding.ts:145](https://github.com/monilpat/eliza/blob/main/packages/core/src/embedding.ts#L145) diff --git a/docs/api/functions/findNearestEnvFile.md b/docs/api/functions/findNearestEnvFile.md index 951257549c..64bdf4c5d6 100644 --- a/docs/api/functions/findNearestEnvFile.md +++ b/docs/api/functions/findNearestEnvFile.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / findNearestEnvFile +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / findNearestEnvFile # Function: findNearestEnvFile() @@ -21,4 +21,4 @@ Path to the nearest .env file or null if not found ## Defined in -[packages/core/src/settings.ts:43](https://github.com/ai16z/eliza/blob/main/packages/core/src/settings.ts#L43) +[packages/core/src/settings.ts:43](https://github.com/monilpat/eliza/blob/main/packages/core/src/settings.ts#L43) diff --git a/docs/api/functions/formatActionNames.md b/docs/api/functions/formatActionNames.md index 06a8acc87a..7eceabb1cc 100644 --- a/docs/api/functions/formatActionNames.md +++ b/docs/api/functions/formatActionNames.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / formatActionNames +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / formatActionNames # Function: formatActionNames() @@ -20,4 +20,4 @@ A comma-separated string of action names. ## Defined in -[packages/core/src/actions.ts:47](https://github.com/ai16z/eliza/blob/main/packages/core/src/actions.ts#L47) +[packages/core/src/actions.ts:61](https://github.com/monilpat/eliza/blob/main/packages/core/src/actions.ts#L61) diff --git a/docs/api/functions/formatActions.md b/docs/api/functions/formatActions.md index 207c94346e..034261cdea 100644 --- a/docs/api/functions/formatActions.md +++ b/docs/api/functions/formatActions.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / formatActions +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / formatActions # Function: formatActions() @@ -20,4 +20,4 @@ A detailed string of actions, including names and descriptions. ## Defined in -[packages/core/src/actions.ts:59](https://github.com/ai16z/eliza/blob/main/packages/core/src/actions.ts#L59) +[packages/core/src/actions.ts:73](https://github.com/monilpat/eliza/blob/main/packages/core/src/actions.ts#L73) diff --git a/docs/api/functions/formatActors.md b/docs/api/functions/formatActors.md index 00d73ee560..3d7f430815 100644 --- a/docs/api/functions/formatActors.md +++ b/docs/api/functions/formatActors.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / formatActors +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / formatActors # Function: formatActors() @@ -22,4 +22,4 @@ string ## Defined in -[packages/core/src/messages.ts:45](https://github.com/ai16z/eliza/blob/main/packages/core/src/messages.ts#L45) +[packages/core/src/messages.ts:45](https://github.com/monilpat/eliza/blob/main/packages/core/src/messages.ts#L45) diff --git a/docs/api/functions/formatEvaluatorExampleDescriptions.md b/docs/api/functions/formatEvaluatorExampleDescriptions.md index fc59fb2184..e468dd0863 100644 --- a/docs/api/functions/formatEvaluatorExampleDescriptions.md +++ b/docs/api/functions/formatEvaluatorExampleDescriptions.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / formatEvaluatorExampleDescriptions +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / formatEvaluatorExampleDescriptions # Function: formatEvaluatorExampleDescriptions() @@ -20,4 +20,4 @@ A string that summarizes the descriptions for each evaluator example, formatted ## Defined in -[packages/core/src/evaluators.ts:110](https://github.com/ai16z/eliza/blob/main/packages/core/src/evaluators.ts#L110) +[packages/core/src/evaluators.ts:110](https://github.com/monilpat/eliza/blob/main/packages/core/src/evaluators.ts#L110) diff --git a/docs/api/functions/formatEvaluatorExamples.md b/docs/api/functions/formatEvaluatorExamples.md index 7dd744e34d..de4c134f2f 100644 --- a/docs/api/functions/formatEvaluatorExamples.md +++ b/docs/api/functions/formatEvaluatorExamples.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / formatEvaluatorExamples +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / formatEvaluatorExamples # Function: formatEvaluatorExamples() @@ -20,4 +20,4 @@ A string that presents each evaluator example in a structured format, including ## Defined in -[packages/core/src/evaluators.ts:55](https://github.com/ai16z/eliza/blob/main/packages/core/src/evaluators.ts#L55) +[packages/core/src/evaluators.ts:55](https://github.com/monilpat/eliza/blob/main/packages/core/src/evaluators.ts#L55) diff --git a/docs/api/functions/formatEvaluatorNames.md b/docs/api/functions/formatEvaluatorNames.md index 9b7a0895a2..0df8bbcfea 100644 --- a/docs/api/functions/formatEvaluatorNames.md +++ b/docs/api/functions/formatEvaluatorNames.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / formatEvaluatorNames +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / formatEvaluatorNames # Function: formatEvaluatorNames() @@ -20,4 +20,4 @@ A string that concatenates the names of all evaluators, each enclosed in single ## Defined in -[packages/core/src/evaluators.ts:30](https://github.com/ai16z/eliza/blob/main/packages/core/src/evaluators.ts#L30) +[packages/core/src/evaluators.ts:30](https://github.com/monilpat/eliza/blob/main/packages/core/src/evaluators.ts#L30) diff --git a/docs/api/functions/formatEvaluators.md b/docs/api/functions/formatEvaluators.md index 44df6f0709..b2b298f74d 100644 --- a/docs/api/functions/formatEvaluators.md +++ b/docs/api/functions/formatEvaluators.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / formatEvaluators +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / formatEvaluators # Function: formatEvaluators() @@ -20,4 +20,4 @@ A string that concatenates the name and description of each evaluator, separated ## Defined in -[packages/core/src/evaluators.ts:41](https://github.com/ai16z/eliza/blob/main/packages/core/src/evaluators.ts#L41) +[packages/core/src/evaluators.ts:41](https://github.com/monilpat/eliza/blob/main/packages/core/src/evaluators.ts#L41) diff --git a/docs/api/functions/formatGoalsAsString.md b/docs/api/functions/formatGoalsAsString.md index 6198cfeac6..82403b4c1f 100644 --- a/docs/api/functions/formatGoalsAsString.md +++ b/docs/api/functions/formatGoalsAsString.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / formatGoalsAsString +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / formatGoalsAsString # Function: formatGoalsAsString() @@ -16,4 +16,4 @@ ## Defined in -[packages/core/src/goals.ts:30](https://github.com/ai16z/eliza/blob/main/packages/core/src/goals.ts#L30) +[packages/core/src/goals.ts:30](https://github.com/monilpat/eliza/blob/main/packages/core/src/goals.ts#L30) diff --git a/docs/api/functions/formatMessages.md b/docs/api/functions/formatMessages.md index 35519d0ea5..9e3455e069 100644 --- a/docs/api/functions/formatMessages.md +++ b/docs/api/functions/formatMessages.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / formatMessages +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / formatMessages # Function: formatMessages() @@ -22,4 +22,4 @@ string ## Defined in -[packages/core/src/messages.ts:60](https://github.com/ai16z/eliza/blob/main/packages/core/src/messages.ts#L60) +[packages/core/src/messages.ts:60](https://github.com/monilpat/eliza/blob/main/packages/core/src/messages.ts#L60) diff --git a/docs/api/functions/formatPosts.md b/docs/api/functions/formatPosts.md index 6e99854957..59f1d7f380 100644 --- a/docs/api/functions/formatPosts.md +++ b/docs/api/functions/formatPosts.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / formatPosts +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / formatPosts # Function: formatPosts() @@ -20,4 +20,4 @@ ## Defined in -[packages/core/src/posts.ts:4](https://github.com/ai16z/eliza/blob/main/packages/core/src/posts.ts#L4) +[packages/core/src/posts.ts:4](https://github.com/monilpat/eliza/blob/main/packages/core/src/posts.ts#L4) diff --git a/docs/api/functions/formatRelationships.md b/docs/api/functions/formatRelationships.md index b31a00409f..51ecc24fea 100644 --- a/docs/api/functions/formatRelationships.md +++ b/docs/api/functions/formatRelationships.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / formatRelationships +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / formatRelationships # Function: formatRelationships() @@ -18,4 +18,4 @@ ## Defined in -[packages/core/src/relationships.ts:43](https://github.com/ai16z/eliza/blob/main/packages/core/src/relationships.ts#L43) +[packages/core/src/relationships.ts:43](https://github.com/monilpat/eliza/blob/main/packages/core/src/relationships.ts#L43) diff --git a/docs/api/functions/formatTimestamp.md b/docs/api/functions/formatTimestamp.md index e44e99777f..7283caadfe 100644 --- a/docs/api/functions/formatTimestamp.md +++ b/docs/api/functions/formatTimestamp.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / formatTimestamp +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / formatTimestamp # Function: formatTimestamp() @@ -14,4 +14,4 @@ ## Defined in -[packages/core/src/messages.ts:94](https://github.com/ai16z/eliza/blob/main/packages/core/src/messages.ts#L94) +[packages/core/src/messages.ts:94](https://github.com/monilpat/eliza/blob/main/packages/core/src/messages.ts#L94) diff --git a/docs/api/functions/generateCaption.md b/docs/api/functions/generateCaption.md index 4a3552f968..aa004d76d0 100644 --- a/docs/api/functions/generateCaption.md +++ b/docs/api/functions/generateCaption.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / generateCaption +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / generateCaption # Function: generateCaption() @@ -26,4 +26,4 @@ ## Defined in -[packages/core/src/generation.ts:975](https://github.com/ai16z/eliza/blob/main/packages/core/src/generation.ts#L975) +[packages/core/src/generation.ts:998](https://github.com/monilpat/eliza/blob/main/packages/core/src/generation.ts#L998) diff --git a/docs/api/functions/generateImage.md b/docs/api/functions/generateImage.md index a82788fa32..153c23a9ac 100644 --- a/docs/api/functions/generateImage.md +++ b/docs/api/functions/generateImage.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / generateImage +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / generateImage # Function: generateImage() @@ -48,4 +48,4 @@ ## Defined in -[packages/core/src/generation.ts:790](https://github.com/ai16z/eliza/blob/main/packages/core/src/generation.ts#L790) +[packages/core/src/generation.ts:799](https://github.com/monilpat/eliza/blob/main/packages/core/src/generation.ts#L799) diff --git a/docs/api/functions/generateMessageResponse.md b/docs/api/functions/generateMessageResponse.md index 0480fa3b63..8a9304f320 100644 --- a/docs/api/functions/generateMessageResponse.md +++ b/docs/api/functions/generateMessageResponse.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / generateMessageResponse +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / generateMessageResponse # Function: generateMessageResponse() @@ -28,4 +28,4 @@ The completed message. ## Defined in -[packages/core/src/generation.ts:750](https://github.com/ai16z/eliza/blob/main/packages/core/src/generation.ts#L750) +[packages/core/src/generation.ts:759](https://github.com/monilpat/eliza/blob/main/packages/core/src/generation.ts#L759) diff --git a/docs/api/functions/generateObject.md b/docs/api/functions/generateObject.md index 9954d514a3..3de2661fdb 100644 --- a/docs/api/functions/generateObject.md +++ b/docs/api/functions/generateObject.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / generateObject +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / generateObject # Function: generateObject() @@ -20,4 +20,4 @@ ## Defined in -[packages/core/src/generation.ts:666](https://github.com/ai16z/eliza/blob/main/packages/core/src/generation.ts#L666) +[packages/core/src/generation.ts:675](https://github.com/monilpat/eliza/blob/main/packages/core/src/generation.ts#L675) diff --git a/docs/api/functions/generateObjectArray.md b/docs/api/functions/generateObjectArray.md index 9b79572150..350ce02819 100644 --- a/docs/api/functions/generateObjectArray.md +++ b/docs/api/functions/generateObjectArray.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / generateObjectArray +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / generateObjectArray # Function: generateObjectArray() @@ -20,4 +20,4 @@ ## Defined in -[packages/core/src/generation.ts:702](https://github.com/ai16z/eliza/blob/main/packages/core/src/generation.ts#L702) +[packages/core/src/generation.ts:711](https://github.com/monilpat/eliza/blob/main/packages/core/src/generation.ts#L711) diff --git a/docs/api/functions/generateObjectV2.md b/docs/api/functions/generateObjectV2.md index 64462eeea6..834d0a8925 100644 --- a/docs/api/functions/generateObjectV2.md +++ b/docs/api/functions/generateObjectV2.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / generateObjectV2 +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / generateObjectV2 # Function: generateObjectV2() @@ -24,4 +24,4 @@ Configuration options for generating objects. ## Defined in -[packages/core/src/generation.ts:1065](https://github.com/ai16z/eliza/blob/main/packages/core/src/generation.ts#L1065) +[packages/core/src/generation.ts:1088](https://github.com/monilpat/eliza/blob/main/packages/core/src/generation.ts#L1088) diff --git a/docs/api/functions/generateShouldRespond.md b/docs/api/functions/generateShouldRespond.md index ff39e6dd2c..39fdfe3e00 100644 --- a/docs/api/functions/generateShouldRespond.md +++ b/docs/api/functions/generateShouldRespond.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / generateShouldRespond +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / generateShouldRespond # Function: generateShouldRespond() @@ -28,4 +28,4 @@ Promise resolving to "RESPOND", "IGNORE", "STOP" or null ## Defined in -[packages/core/src/generation.ts:492](https://github.com/ai16z/eliza/blob/main/packages/core/src/generation.ts#L492) +[packages/core/src/generation.ts:501](https://github.com/monilpat/eliza/blob/main/packages/core/src/generation.ts#L501) diff --git a/docs/api/functions/generateText.md b/docs/api/functions/generateText.md index 6d487b6e4a..28d2b8a674 100644 --- a/docs/api/functions/generateText.md +++ b/docs/api/functions/generateText.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / generateText +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / generateText # Function: generateText() @@ -32,4 +32,4 @@ The completed message. ## Defined in -[packages/core/src/generation.ts:51](https://github.com/ai16z/eliza/blob/main/packages/core/src/generation.ts#L51) +[packages/core/src/generation.ts:51](https://github.com/monilpat/eliza/blob/main/packages/core/src/generation.ts#L51) diff --git a/docs/api/functions/generateTextArray.md b/docs/api/functions/generateTextArray.md index b8f9bc7053..9ca3ce4f32 100644 --- a/docs/api/functions/generateTextArray.md +++ b/docs/api/functions/generateTextArray.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / generateTextArray +[@ai16z/eliza v0.1.5-alpha.3](../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:630](https://github.com/ai16z/eliza/blob/main/packages/core/src/generation.ts#L630) +[packages/core/src/generation.ts:639](https://github.com/monilpat/eliza/blob/main/packages/core/src/generation.ts#L639) diff --git a/docs/api/functions/generateTrueOrFalse.md b/docs/api/functions/generateTrueOrFalse.md index 98ab4f19d2..cb3ccf681c 100644 --- a/docs/api/functions/generateTrueOrFalse.md +++ b/docs/api/functions/generateTrueOrFalse.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / generateTrueOrFalse +[@ai16z/eliza v0.1.5-alpha.3](../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:575](https://github.com/ai16z/eliza/blob/main/packages/core/src/generation.ts#L575) +[packages/core/src/generation.ts:584](https://github.com/monilpat/eliza/blob/main/packages/core/src/generation.ts#L584) diff --git a/docs/api/functions/generateWebSearch.md b/docs/api/functions/generateWebSearch.md index 8d068ef60c..0e27878aea 100644 --- a/docs/api/functions/generateWebSearch.md +++ b/docs/api/functions/generateWebSearch.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / generateWebSearch +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / generateWebSearch # Function: generateWebSearch() @@ -16,4 +16,4 @@ ## Defined in -[packages/core/src/generation.ts:999](https://github.com/ai16z/eliza/blob/main/packages/core/src/generation.ts#L999) +[packages/core/src/generation.ts:1022](https://github.com/monilpat/eliza/blob/main/packages/core/src/generation.ts#L1022) diff --git a/docs/api/functions/getActorDetails.md b/docs/api/functions/getActorDetails.md index ea912f70b8..a0273a1ce9 100644 --- a/docs/api/functions/getActorDetails.md +++ b/docs/api/functions/getActorDetails.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / getActorDetails +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / getActorDetails # Function: getActorDetails() @@ -20,4 +20,4 @@ Get details for a list of actors. ## Defined in -[packages/core/src/messages.ts:12](https://github.com/ai16z/eliza/blob/main/packages/core/src/messages.ts#L12) +[packages/core/src/messages.ts:12](https://github.com/monilpat/eliza/blob/main/packages/core/src/messages.ts#L12) diff --git a/docs/api/functions/getEmbeddingConfig.md b/docs/api/functions/getEmbeddingConfig.md index d970f35a89..8acfc41dba 100644 --- a/docs/api/functions/getEmbeddingConfig.md +++ b/docs/api/functions/getEmbeddingConfig.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / getEmbeddingConfig +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / getEmbeddingConfig # Function: getEmbeddingConfig() @@ -24,4 +24,4 @@ Add the embedding configuration ## Defined in -[packages/core/src/embedding.ts:18](https://github.com/ai16z/eliza/blob/main/packages/core/src/embedding.ts#L18) +[packages/core/src/embedding.ts:18](https://github.com/monilpat/eliza/blob/main/packages/core/src/embedding.ts#L18) diff --git a/docs/api/functions/getEmbeddingType.md b/docs/api/functions/getEmbeddingType.md index e863612e55..20e18326e0 100644 --- a/docs/api/functions/getEmbeddingType.md +++ b/docs/api/functions/getEmbeddingType.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / getEmbeddingType +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / getEmbeddingType # Function: getEmbeddingType() @@ -14,4 +14,4 @@ ## Defined in -[packages/core/src/embedding.ts:99](https://github.com/ai16z/eliza/blob/main/packages/core/src/embedding.ts#L99) +[packages/core/src/embedding.ts:99](https://github.com/monilpat/eliza/blob/main/packages/core/src/embedding.ts#L99) diff --git a/docs/api/functions/getEmbeddingZeroVector.md b/docs/api/functions/getEmbeddingZeroVector.md index f55897b049..a3ec7299c6 100644 --- a/docs/api/functions/getEmbeddingZeroVector.md +++ b/docs/api/functions/getEmbeddingZeroVector.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / getEmbeddingZeroVector +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / getEmbeddingZeroVector # Function: getEmbeddingZeroVector() @@ -10,4 +10,4 @@ ## Defined in -[packages/core/src/embedding.ts:118](https://github.com/ai16z/eliza/blob/main/packages/core/src/embedding.ts#L118) +[packages/core/src/embedding.ts:118](https://github.com/monilpat/eliza/blob/main/packages/core/src/embedding.ts#L118) diff --git a/docs/api/functions/getEndpoint.md b/docs/api/functions/getEndpoint.md index eadc905f72..571ee1eadc 100644 --- a/docs/api/functions/getEndpoint.md +++ b/docs/api/functions/getEndpoint.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / getEndpoint +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / getEndpoint # Function: getEndpoint() @@ -14,4 +14,4 @@ ## Defined in -[packages/core/src/models.ts:364](https://github.com/ai16z/eliza/blob/main/packages/core/src/models.ts#L364) +[packages/core/src/models.ts:385](https://github.com/monilpat/eliza/blob/main/packages/core/src/models.ts#L385) diff --git a/docs/api/functions/getEnvVariable.md b/docs/api/functions/getEnvVariable.md index eacd38e4fd..8d51877396 100644 --- a/docs/api/functions/getEnvVariable.md +++ b/docs/api/functions/getEnvVariable.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / getEnvVariable +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / getEnvVariable # Function: getEnvVariable() @@ -24,4 +24,4 @@ The environment variable value or default value ## Defined in -[packages/core/src/settings.ts:103](https://github.com/ai16z/eliza/blob/main/packages/core/src/settings.ts#L103) +[packages/core/src/settings.ts:103](https://github.com/monilpat/eliza/blob/main/packages/core/src/settings.ts#L103) diff --git a/docs/api/functions/getGoals.md b/docs/api/functions/getGoals.md index d7e4fe60af..a863d80e02 100644 --- a/docs/api/functions/getGoals.md +++ b/docs/api/functions/getGoals.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / getGoals +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / getGoals # Function: getGoals() @@ -24,4 +24,4 @@ ## Defined in -[packages/core/src/goals.ts:8](https://github.com/ai16z/eliza/blob/main/packages/core/src/goals.ts#L8) +[packages/core/src/goals.ts:8](https://github.com/monilpat/eliza/blob/main/packages/core/src/goals.ts#L8) diff --git a/docs/api/functions/getModel.md b/docs/api/functions/getModel.md index 9322827444..a7f954a703 100644 --- a/docs/api/functions/getModel.md +++ b/docs/api/functions/getModel.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / getModel +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / getModel # Function: getModel() @@ -16,4 +16,4 @@ ## Defined in -[packages/core/src/models.ts:360](https://github.com/ai16z/eliza/blob/main/packages/core/src/models.ts#L360) +[packages/core/src/models.ts:381](https://github.com/monilpat/eliza/blob/main/packages/core/src/models.ts#L381) diff --git a/docs/api/functions/getProviders.md b/docs/api/functions/getProviders.md index 95e34e0d20..7f94cb28e5 100644 --- a/docs/api/functions/getProviders.md +++ b/docs/api/functions/getProviders.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / getProviders +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / getProviders # Function: getProviders() @@ -28,4 +28,4 @@ A string that concatenates the outputs of each provider. ## Defined in -[packages/core/src/providers.ts:10](https://github.com/ai16z/eliza/blob/main/packages/core/src/providers.ts#L10) +[packages/core/src/providers.ts:10](https://github.com/monilpat/eliza/blob/main/packages/core/src/providers.ts#L10) diff --git a/docs/api/functions/getRelationship.md b/docs/api/functions/getRelationship.md index d7b4c6bbea..9a1158199f 100644 --- a/docs/api/functions/getRelationship.md +++ b/docs/api/functions/getRelationship.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / getRelationship +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / getRelationship # Function: getRelationship() @@ -20,4 +20,4 @@ ## Defined in -[packages/core/src/relationships.ts:18](https://github.com/ai16z/eliza/blob/main/packages/core/src/relationships.ts#L18) +[packages/core/src/relationships.ts:18](https://github.com/monilpat/eliza/blob/main/packages/core/src/relationships.ts#L18) diff --git a/docs/api/functions/getRelationships.md b/docs/api/functions/getRelationships.md index 765c23e9dd..41d5aed922 100644 --- a/docs/api/functions/getRelationships.md +++ b/docs/api/functions/getRelationships.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / getRelationships +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / getRelationships # Function: getRelationships() @@ -18,4 +18,4 @@ ## Defined in -[packages/core/src/relationships.ts:33](https://github.com/ai16z/eliza/blob/main/packages/core/src/relationships.ts#L33) +[packages/core/src/relationships.ts:33](https://github.com/monilpat/eliza/blob/main/packages/core/src/relationships.ts#L33) diff --git a/docs/api/functions/handleProvider.md b/docs/api/functions/handleProvider.md index a081b14490..b2e1dd4fbe 100644 --- a/docs/api/functions/handleProvider.md +++ b/docs/api/functions/handleProvider.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / handleProvider +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / handleProvider # Function: handleProvider() @@ -20,4 +20,4 @@ Configuration options specific to the provider. ## Defined in -[packages/core/src/generation.ts:1150](https://github.com/ai16z/eliza/blob/main/packages/core/src/generation.ts#L1150) +[packages/core/src/generation.ts:1173](https://github.com/monilpat/eliza/blob/main/packages/core/src/generation.ts#L1173) diff --git a/docs/api/functions/hasEnvVariable.md b/docs/api/functions/hasEnvVariable.md index b7e1b3eef7..9dda37b8e4 100644 --- a/docs/api/functions/hasEnvVariable.md +++ b/docs/api/functions/hasEnvVariable.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / hasEnvVariable +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / hasEnvVariable # Function: hasEnvVariable() @@ -20,4 +20,4 @@ True if the environment variable exists ## Defined in -[packages/core/src/settings.ts:118](https://github.com/ai16z/eliza/blob/main/packages/core/src/settings.ts#L118) +[packages/core/src/settings.ts:118](https://github.com/monilpat/eliza/blob/main/packages/core/src/settings.ts#L118) diff --git a/docs/api/functions/loadEnvConfig.md b/docs/api/functions/loadEnvConfig.md index 0169802367..2121dd384d 100644 --- a/docs/api/functions/loadEnvConfig.md +++ b/docs/api/functions/loadEnvConfig.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / loadEnvConfig +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / loadEnvConfig # Function: loadEnvConfig() @@ -19,4 +19,4 @@ If no .env file is found in Node.js environment ## Defined in -[packages/core/src/settings.ts:79](https://github.com/ai16z/eliza/blob/main/packages/core/src/settings.ts#L79) +[packages/core/src/settings.ts:79](https://github.com/monilpat/eliza/blob/main/packages/core/src/settings.ts#L79) diff --git a/docs/api/functions/parseBooleanFromText.md b/docs/api/functions/parseBooleanFromText.md index d334980b23..58eac4a077 100644 --- a/docs/api/functions/parseBooleanFromText.md +++ b/docs/api/functions/parseBooleanFromText.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / parseBooleanFromText +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / parseBooleanFromText # Function: parseBooleanFromText() @@ -14,4 +14,4 @@ ## Defined in -[packages/core/src/parsing.ts:36](https://github.com/ai16z/eliza/blob/main/packages/core/src/parsing.ts#L36) +[packages/core/src/parsing.ts:36](https://github.com/monilpat/eliza/blob/main/packages/core/src/parsing.ts#L36) diff --git a/docs/api/functions/parseJSONObjectFromText.md b/docs/api/functions/parseJSONObjectFromText.md index 5014b37ad6..99d1edfb3a 100644 --- a/docs/api/functions/parseJSONObjectFromText.md +++ b/docs/api/functions/parseJSONObjectFromText.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / parseJSONObjectFromText +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / parseJSONObjectFromText # Function: parseJSONObjectFromText() @@ -24,4 +24,4 @@ An object parsed from the JSON string if successful; otherwise, null or the resu ## Defined in -[packages/core/src/parsing.ts:103](https://github.com/ai16z/eliza/blob/main/packages/core/src/parsing.ts#L103) +[packages/core/src/parsing.ts:103](https://github.com/monilpat/eliza/blob/main/packages/core/src/parsing.ts#L103) diff --git a/docs/api/functions/parseJsonArrayFromText.md b/docs/api/functions/parseJsonArrayFromText.md index 077971eac0..bc77366db5 100644 --- a/docs/api/functions/parseJsonArrayFromText.md +++ b/docs/api/functions/parseJsonArrayFromText.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / parseJsonArrayFromText +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / parseJsonArrayFromText # Function: parseJsonArrayFromText() @@ -23,4 +23,4 @@ An array parsed from the JSON string if successful; otherwise, null. ## Defined in -[packages/core/src/parsing.ts:60](https://github.com/ai16z/eliza/blob/main/packages/core/src/parsing.ts#L60) +[packages/core/src/parsing.ts:60](https://github.com/monilpat/eliza/blob/main/packages/core/src/parsing.ts#L60) diff --git a/docs/api/functions/parseShouldRespondFromText.md b/docs/api/functions/parseShouldRespondFromText.md index c77cb3ee29..f813749072 100644 --- a/docs/api/functions/parseShouldRespondFromText.md +++ b/docs/api/functions/parseShouldRespondFromText.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / parseShouldRespondFromText +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / parseShouldRespondFromText # Function: parseShouldRespondFromText() @@ -14,4 +14,4 @@ ## Defined in -[packages/core/src/parsing.ts:13](https://github.com/ai16z/eliza/blob/main/packages/core/src/parsing.ts#L13) +[packages/core/src/parsing.ts:13](https://github.com/monilpat/eliza/blob/main/packages/core/src/parsing.ts#L13) diff --git a/docs/api/functions/splitChunks.md b/docs/api/functions/splitChunks.md index 2f3e6cfaa4..eb3dd60a76 100644 --- a/docs/api/functions/splitChunks.md +++ b/docs/api/functions/splitChunks.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / splitChunks +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / splitChunks # Function: splitChunks() @@ -28,4 +28,4 @@ Promise resolving to array of text chunks with bleed sections ## Defined in -[packages/core/src/generation.ts:547](https://github.com/ai16z/eliza/blob/main/packages/core/src/generation.ts#L547) +[packages/core/src/generation.ts:556](https://github.com/monilpat/eliza/blob/main/packages/core/src/generation.ts#L556) diff --git a/docs/api/functions/stringToUuid.md b/docs/api/functions/stringToUuid.md index bbe7e3998a..6feb8866df 100644 --- a/docs/api/functions/stringToUuid.md +++ b/docs/api/functions/stringToUuid.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / stringToUuid +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / stringToUuid # Function: stringToUuid() @@ -6,7 +6,7 @@ ## Parameters -• **target**: `string` +• **target**: `string` \| `number` ## Returns @@ -14,4 +14,4 @@ ## Defined in -[packages/core/src/uuid.ts:4](https://github.com/ai16z/eliza/blob/main/packages/core/src/uuid.ts#L4) +[packages/core/src/uuid.ts:4](https://github.com/monilpat/eliza/blob/main/packages/core/src/uuid.ts#L4) diff --git a/docs/api/functions/trimTokens.md b/docs/api/functions/trimTokens.md index 9029a3e9c0..48e4bd0cec 100644 --- a/docs/api/functions/trimTokens.md +++ b/docs/api/functions/trimTokens.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / trimTokens +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / trimTokens # Function: trimTokens() @@ -28,4 +28,4 @@ The truncated text ## Defined in -[packages/core/src/generation.ts:446](https://github.com/ai16z/eliza/blob/main/packages/core/src/generation.ts#L446) +[packages/core/src/generation.ts:455](https://github.com/monilpat/eliza/blob/main/packages/core/src/generation.ts#L455) diff --git a/docs/api/functions/updateGoal.md b/docs/api/functions/updateGoal.md index 1d40ed9c99..e38f01a12f 100644 --- a/docs/api/functions/updateGoal.md +++ b/docs/api/functions/updateGoal.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / updateGoal +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / updateGoal # Function: updateGoal() @@ -18,4 +18,4 @@ ## Defined in -[packages/core/src/goals.ts:45](https://github.com/ai16z/eliza/blob/main/packages/core/src/goals.ts#L45) +[packages/core/src/goals.ts:45](https://github.com/monilpat/eliza/blob/main/packages/core/src/goals.ts#L45) diff --git a/docs/api/functions/validateCharacterConfig.md b/docs/api/functions/validateCharacterConfig.md index 2c53e6bcc3..c939e9cc7a 100644 --- a/docs/api/functions/validateCharacterConfig.md +++ b/docs/api/functions/validateCharacterConfig.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / validateCharacterConfig +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / validateCharacterConfig # Function: validateCharacterConfig() @@ -16,4 +16,4 @@ Validation function ## Defined in -[packages/core/src/environment.ts:130](https://github.com/ai16z/eliza/blob/main/packages/core/src/environment.ts#L130) +[packages/core/src/environment.ts:133](https://github.com/monilpat/eliza/blob/main/packages/core/src/environment.ts#L133) diff --git a/docs/api/functions/validateEnv.md b/docs/api/functions/validateEnv.md index 3435be5091..e590a4d83a 100644 --- a/docs/api/functions/validateEnv.md +++ b/docs/api/functions/validateEnv.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / validateEnv +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / validateEnv # Function: validateEnv() @@ -12,4 +12,4 @@ Validation function ## Defined in -[packages/core/src/environment.ts:26](https://github.com/ai16z/eliza/blob/main/packages/core/src/environment.ts#L26) +[packages/core/src/environment.ts:26](https://github.com/monilpat/eliza/blob/main/packages/core/src/environment.ts#L26) diff --git a/docs/api/index.md b/docs/api/index.md index 21d753639f..5f29823806 100644 --- a/docs/api/index.md +++ b/docs/api/index.md @@ -1,4 +1,4 @@ -# @ai16z/eliza v0.1.4-alpha.3 +# @ai16z/eliza v0.1.5-alpha.3 ## Enumerations diff --git a/docs/api/interfaces/Account.md b/docs/api/interfaces/Account.md index 7e52b1375d..8959a874c2 100644 --- a/docs/api/interfaces/Account.md +++ b/docs/api/interfaces/Account.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / Account +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / Account # Interface: Account @@ -14,7 +14,7 @@ Unique identifier #### Defined in -[packages/core/src/types.ts:495](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L495) +[packages/core/src/types.ts:497](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L497) *** @@ -26,7 +26,7 @@ Display name #### Defined in -[packages/core/src/types.ts:498](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L498) +[packages/core/src/types.ts:500](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L500) *** @@ -38,7 +38,7 @@ Username #### Defined in -[packages/core/src/types.ts:501](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L501) +[packages/core/src/types.ts:503](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L503) *** @@ -54,7 +54,7 @@ Optional additional details #### Defined in -[packages/core/src/types.ts:504](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L504) +[packages/core/src/types.ts:506](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L506) *** @@ -66,7 +66,7 @@ Optional email #### Defined in -[packages/core/src/types.ts:507](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L507) +[packages/core/src/types.ts:509](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L509) *** @@ -78,4 +78,4 @@ Optional avatar URL #### Defined in -[packages/core/src/types.ts:510](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L510) +[packages/core/src/types.ts:512](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L512) diff --git a/docs/api/interfaces/Action.md b/docs/api/interfaces/Action.md index 0556faee19..664760c6ee 100644 --- a/docs/api/interfaces/Action.md +++ b/docs/api/interfaces/Action.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / Action +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / Action # Interface: Action @@ -14,7 +14,7 @@ Similar action descriptions #### Defined in -[packages/core/src/types.ts:394](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L394) +[packages/core/src/types.ts:396](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L396) *** @@ -26,7 +26,7 @@ Detailed description #### Defined in -[packages/core/src/types.ts:397](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L397) +[packages/core/src/types.ts:399](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L399) *** @@ -38,7 +38,7 @@ Example usages #### Defined in -[packages/core/src/types.ts:400](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L400) +[packages/core/src/types.ts:402](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L402) *** @@ -50,7 +50,7 @@ Handler function #### Defined in -[packages/core/src/types.ts:403](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L403) +[packages/core/src/types.ts:405](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L405) *** @@ -62,7 +62,7 @@ Action name #### Defined in -[packages/core/src/types.ts:406](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L406) +[packages/core/src/types.ts:408](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L408) *** @@ -74,4 +74,4 @@ Validation function #### Defined in -[packages/core/src/types.ts:409](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L409) +[packages/core/src/types.ts:411](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L411) diff --git a/docs/api/interfaces/ActionExample.md b/docs/api/interfaces/ActionExample.md index 7241d58fde..b5525f1e37 100644 --- a/docs/api/interfaces/ActionExample.md +++ b/docs/api/interfaces/ActionExample.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / ActionExample +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / ActionExample # Interface: ActionExample @@ -14,7 +14,7 @@ User associated with the example #### Defined in -[packages/core/src/types.ts:39](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L39) +[packages/core/src/types.ts:39](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L39) *** @@ -26,4 +26,4 @@ Content of the example #### Defined in -[packages/core/src/types.ts:42](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L42) +[packages/core/src/types.ts:42](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L42) diff --git a/docs/api/interfaces/Actor.md b/docs/api/interfaces/Actor.md index cd0e8d79d5..57441f4a18 100644 --- a/docs/api/interfaces/Actor.md +++ b/docs/api/interfaces/Actor.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / Actor +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / Actor # Interface: Actor @@ -14,7 +14,7 @@ Display name #### Defined in -[packages/core/src/types.ts:61](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L61) +[packages/core/src/types.ts:61](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L61) *** @@ -26,7 +26,7 @@ Username/handle #### Defined in -[packages/core/src/types.ts:64](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L64) +[packages/core/src/types.ts:64](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L64) *** @@ -56,7 +56,7 @@ Favorite quote #### Defined in -[packages/core/src/types.ts:67](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L67) +[packages/core/src/types.ts:67](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L67) *** @@ -68,4 +68,4 @@ Unique identifier #### Defined in -[packages/core/src/types.ts:79](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L79) +[packages/core/src/types.ts:79](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L79) diff --git a/docs/api/interfaces/Content.md b/docs/api/interfaces/Content.md index f34afcbd28..ddcc679364 100644 --- a/docs/api/interfaces/Content.md +++ b/docs/api/interfaces/Content.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / Content +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / Content # Interface: Content @@ -18,7 +18,7 @@ The main text content #### Defined in -[packages/core/src/types.ts:13](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L13) +[packages/core/src/types.ts:13](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L13) *** @@ -30,7 +30,7 @@ Optional action associated with the message #### Defined in -[packages/core/src/types.ts:16](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L16) +[packages/core/src/types.ts:16](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L16) *** @@ -42,7 +42,7 @@ Optional source/origin of the content #### Defined in -[packages/core/src/types.ts:19](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L19) +[packages/core/src/types.ts:19](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L19) *** @@ -54,7 +54,7 @@ URL of the original message/post (e.g. tweet URL, Discord message link) #### Defined in -[packages/core/src/types.ts:22](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L22) +[packages/core/src/types.ts:22](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L22) *** @@ -66,7 +66,7 @@ UUID of parent message if this is a reply/thread #### Defined in -[packages/core/src/types.ts:25](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L25) +[packages/core/src/types.ts:25](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L25) *** @@ -78,4 +78,4 @@ Array of media attachments #### Defined in -[packages/core/src/types.ts:28](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L28) +[packages/core/src/types.ts:28](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L28) diff --git a/docs/api/interfaces/ConversationExample.md b/docs/api/interfaces/ConversationExample.md index c89183e2ce..0b4e431ea6 100644 --- a/docs/api/interfaces/ConversationExample.md +++ b/docs/api/interfaces/ConversationExample.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / ConversationExample +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / ConversationExample # Interface: ConversationExample @@ -14,7 +14,7 @@ UUID of user in conversation #### Defined in -[packages/core/src/types.ts:50](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L50) +[packages/core/src/types.ts:50](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L50) *** @@ -26,4 +26,4 @@ Content of the conversation #### Defined in -[packages/core/src/types.ts:53](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L53) +[packages/core/src/types.ts:53](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L53) diff --git a/docs/api/interfaces/EvaluationExample.md b/docs/api/interfaces/EvaluationExample.md index 45c4e0afda..6f24e4cea5 100644 --- a/docs/api/interfaces/EvaluationExample.md +++ b/docs/api/interfaces/EvaluationExample.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / EvaluationExample +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / EvaluationExample # Interface: EvaluationExample @@ -14,7 +14,7 @@ Evaluation context #### Defined in -[packages/core/src/types.ts:417](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L417) +[packages/core/src/types.ts:419](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L419) *** @@ -26,7 +26,7 @@ Example messages #### Defined in -[packages/core/src/types.ts:420](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L420) +[packages/core/src/types.ts:422](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L422) *** @@ -38,4 +38,4 @@ Expected outcome #### Defined in -[packages/core/src/types.ts:423](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L423) +[packages/core/src/types.ts:425](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L425) diff --git a/docs/api/interfaces/Evaluator.md b/docs/api/interfaces/Evaluator.md index 074c2c78d7..b9bf74526a 100644 --- a/docs/api/interfaces/Evaluator.md +++ b/docs/api/interfaces/Evaluator.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / Evaluator +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / Evaluator # Interface: Evaluator @@ -14,7 +14,7 @@ Whether to always run #### Defined in -[packages/core/src/types.ts:431](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L431) +[packages/core/src/types.ts:433](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L433) *** @@ -26,7 +26,7 @@ Detailed description #### Defined in -[packages/core/src/types.ts:434](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L434) +[packages/core/src/types.ts:436](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L436) *** @@ -38,7 +38,7 @@ Similar evaluator descriptions #### Defined in -[packages/core/src/types.ts:437](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L437) +[packages/core/src/types.ts:439](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L439) *** @@ -50,7 +50,7 @@ Example evaluations #### Defined in -[packages/core/src/types.ts:440](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L440) +[packages/core/src/types.ts:442](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L442) *** @@ -62,7 +62,7 @@ Handler function #### Defined in -[packages/core/src/types.ts:443](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L443) +[packages/core/src/types.ts:445](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L445) *** @@ -74,7 +74,7 @@ Evaluator name #### Defined in -[packages/core/src/types.ts:446](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L446) +[packages/core/src/types.ts:448](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L448) *** @@ -86,4 +86,4 @@ Validation function #### Defined in -[packages/core/src/types.ts:449](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L449) +[packages/core/src/types.ts:451](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L451) diff --git a/docs/api/interfaces/GenerationOptions.md b/docs/api/interfaces/GenerationOptions.md index e7a64374e7..917d7f3149 100644 --- a/docs/api/interfaces/GenerationOptions.md +++ b/docs/api/interfaces/GenerationOptions.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / GenerationOptions +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / GenerationOptions # Interface: GenerationOptions @@ -12,7 +12,7 @@ Configuration options for generating objects with a model. #### Defined in -[packages/core/src/generation.ts:1035](https://github.com/ai16z/eliza/blob/main/packages/core/src/generation.ts#L1035) +[packages/core/src/generation.ts:1058](https://github.com/monilpat/eliza/blob/main/packages/core/src/generation.ts#L1058) *** @@ -22,7 +22,7 @@ Configuration options for generating objects with a model. #### Defined in -[packages/core/src/generation.ts:1036](https://github.com/ai16z/eliza/blob/main/packages/core/src/generation.ts#L1036) +[packages/core/src/generation.ts:1059](https://github.com/monilpat/eliza/blob/main/packages/core/src/generation.ts#L1059) *** @@ -32,7 +32,7 @@ Configuration options for generating objects with a model. #### Defined in -[packages/core/src/generation.ts:1037](https://github.com/ai16z/eliza/blob/main/packages/core/src/generation.ts#L1037) +[packages/core/src/generation.ts:1060](https://github.com/monilpat/eliza/blob/main/packages/core/src/generation.ts#L1060) *** @@ -42,7 +42,7 @@ Configuration options for generating objects with a model. #### Defined in -[packages/core/src/generation.ts:1038](https://github.com/ai16z/eliza/blob/main/packages/core/src/generation.ts#L1038) +[packages/core/src/generation.ts:1061](https://github.com/monilpat/eliza/blob/main/packages/core/src/generation.ts#L1061) *** @@ -52,7 +52,7 @@ Configuration options for generating objects with a model. #### Defined in -[packages/core/src/generation.ts:1039](https://github.com/ai16z/eliza/blob/main/packages/core/src/generation.ts#L1039) +[packages/core/src/generation.ts:1062](https://github.com/monilpat/eliza/blob/main/packages/core/src/generation.ts#L1062) *** @@ -62,7 +62,7 @@ Configuration options for generating objects with a model. #### Defined in -[packages/core/src/generation.ts:1040](https://github.com/ai16z/eliza/blob/main/packages/core/src/generation.ts#L1040) +[packages/core/src/generation.ts:1063](https://github.com/monilpat/eliza/blob/main/packages/core/src/generation.ts#L1063) *** @@ -72,7 +72,7 @@ Configuration options for generating objects with a model. #### Defined in -[packages/core/src/generation.ts:1041](https://github.com/ai16z/eliza/blob/main/packages/core/src/generation.ts#L1041) +[packages/core/src/generation.ts:1064](https://github.com/monilpat/eliza/blob/main/packages/core/src/generation.ts#L1064) *** @@ -82,7 +82,7 @@ Configuration options for generating objects with a model. #### Defined in -[packages/core/src/generation.ts:1042](https://github.com/ai16z/eliza/blob/main/packages/core/src/generation.ts#L1042) +[packages/core/src/generation.ts:1065](https://github.com/monilpat/eliza/blob/main/packages/core/src/generation.ts#L1065) *** @@ -92,4 +92,4 @@ Configuration options for generating objects with a model. #### Defined in -[packages/core/src/generation.ts:1043](https://github.com/ai16z/eliza/blob/main/packages/core/src/generation.ts#L1043) +[packages/core/src/generation.ts:1066](https://github.com/monilpat/eliza/blob/main/packages/core/src/generation.ts#L1066) diff --git a/docs/api/interfaces/Goal.md b/docs/api/interfaces/Goal.md index 7da451e614..1147284254 100644 --- a/docs/api/interfaces/Goal.md +++ b/docs/api/interfaces/Goal.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / Goal +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / Goal # Interface: Goal @@ -14,7 +14,7 @@ Optional unique identifier #### Defined in -[packages/core/src/types.ts:110](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L110) +[packages/core/src/types.ts:110](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L110) *** @@ -26,7 +26,7 @@ Room ID where goal exists #### Defined in -[packages/core/src/types.ts:113](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L113) +[packages/core/src/types.ts:113](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L113) *** @@ -38,7 +38,7 @@ User ID of goal owner #### Defined in -[packages/core/src/types.ts:116](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L116) +[packages/core/src/types.ts:116](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L116) *** @@ -50,7 +50,7 @@ Name/title of the goal #### Defined in -[packages/core/src/types.ts:119](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L119) +[packages/core/src/types.ts:119](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L119) *** @@ -62,7 +62,7 @@ Current status #### Defined in -[packages/core/src/types.ts:122](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L122) +[packages/core/src/types.ts:122](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L122) *** @@ -74,4 +74,4 @@ Component objectives #### Defined in -[packages/core/src/types.ts:125](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L125) +[packages/core/src/types.ts:125](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L125) diff --git a/docs/api/interfaces/IAgentRuntime.md b/docs/api/interfaces/IAgentRuntime.md index b4ab1ea533..6c2eadfef2 100644 --- a/docs/api/interfaces/IAgentRuntime.md +++ b/docs/api/interfaces/IAgentRuntime.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / IAgentRuntime +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / IAgentRuntime # Interface: IAgentRuntime @@ -12,7 +12,7 @@ Properties #### Defined in -[packages/core/src/types.ts:976](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L976) +[packages/core/src/types.ts:978](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L978) *** @@ -22,7 +22,7 @@ Properties #### Defined in -[packages/core/src/types.ts:977](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L977) +[packages/core/src/types.ts:979](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L979) *** @@ -32,7 +32,7 @@ Properties #### Defined in -[packages/core/src/types.ts:978](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L978) +[packages/core/src/types.ts:980](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L980) *** @@ -42,7 +42,7 @@ Properties #### Defined in -[packages/core/src/types.ts:979](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L979) +[packages/core/src/types.ts:981](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L981) *** @@ -52,7 +52,7 @@ Properties #### Defined in -[packages/core/src/types.ts:980](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L980) +[packages/core/src/types.ts:982](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L982) *** @@ -62,7 +62,7 @@ Properties #### Defined in -[packages/core/src/types.ts:981](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L981) +[packages/core/src/types.ts:983](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L983) *** @@ -72,7 +72,7 @@ Properties #### Defined in -[packages/core/src/types.ts:982](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L982) +[packages/core/src/types.ts:984](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L984) *** @@ -82,7 +82,7 @@ Properties #### Defined in -[packages/core/src/types.ts:983](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L983) +[packages/core/src/types.ts:985](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L985) *** @@ -92,7 +92,7 @@ Properties #### Defined in -[packages/core/src/types.ts:984](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L984) +[packages/core/src/types.ts:986](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L986) *** @@ -102,7 +102,7 @@ Properties #### Defined in -[packages/core/src/types.ts:985](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L985) +[packages/core/src/types.ts:987](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L987) *** @@ -112,7 +112,7 @@ Properties #### Defined in -[packages/core/src/types.ts:986](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L986) +[packages/core/src/types.ts:988](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L988) *** @@ -122,7 +122,7 @@ Properties #### Defined in -[packages/core/src/types.ts:988](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L988) +[packages/core/src/types.ts:990](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L990) *** @@ -132,7 +132,7 @@ Properties #### Defined in -[packages/core/src/types.ts:989](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L989) +[packages/core/src/types.ts:991](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L991) *** @@ -142,7 +142,7 @@ Properties #### Defined in -[packages/core/src/types.ts:990](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L990) +[packages/core/src/types.ts:992](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L992) *** @@ -152,7 +152,7 @@ Properties #### Defined in -[packages/core/src/types.ts:991](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L991) +[packages/core/src/types.ts:993](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L993) *** @@ -162,7 +162,7 @@ Properties #### Defined in -[packages/core/src/types.ts:992](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L992) +[packages/core/src/types.ts:994](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L994) *** @@ -172,7 +172,7 @@ Properties #### Defined in -[packages/core/src/types.ts:994](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L994) +[packages/core/src/types.ts:996](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L996) *** @@ -182,7 +182,7 @@ Properties #### Defined in -[packages/core/src/types.ts:996](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L996) +[packages/core/src/types.ts:998](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L998) ## Methods @@ -196,7 +196,7 @@ Properties #### Defined in -[packages/core/src/types.ts:998](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L998) +[packages/core/src/types.ts:1000](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1000) *** @@ -214,7 +214,7 @@ Properties #### Defined in -[packages/core/src/types.ts:1000](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1000) +[packages/core/src/types.ts:1002](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1002) *** @@ -232,7 +232,7 @@ Properties #### Defined in -[packages/core/src/types.ts:1002](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1002) +[packages/core/src/types.ts:1004](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1004) *** @@ -254,7 +254,7 @@ Properties #### Defined in -[packages/core/src/types.ts:1004](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1004) +[packages/core/src/types.ts:1006](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1006) *** @@ -272,7 +272,7 @@ Properties #### Defined in -[packages/core/src/types.ts:1006](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1006) +[packages/core/src/types.ts:1008](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1008) *** @@ -290,7 +290,7 @@ Properties #### Defined in -[packages/core/src/types.ts:1008](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1008) +[packages/core/src/types.ts:1010](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1010) *** @@ -306,7 +306,7 @@ Methods #### Defined in -[packages/core/src/types.ts:1011](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1011) +[packages/core/src/types.ts:1013](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1013) *** @@ -330,7 +330,7 @@ Methods #### Defined in -[packages/core/src/types.ts:1013](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1013) +[packages/core/src/types.ts:1015](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1015) *** @@ -352,7 +352,7 @@ Methods #### Defined in -[packages/core/src/types.ts:1020](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1020) +[packages/core/src/types.ts:1022](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1022) *** @@ -372,7 +372,7 @@ Methods #### Defined in -[packages/core/src/types.ts:1026](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1026) +[packages/core/src/types.ts:1028](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1028) *** @@ -396,7 +396,7 @@ Methods #### Defined in -[packages/core/src/types.ts:1028](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1028) +[packages/core/src/types.ts:1030](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1030) *** @@ -414,7 +414,7 @@ Methods #### Defined in -[packages/core/src/types.ts:1035](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1035) +[packages/core/src/types.ts:1037](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1037) *** @@ -440,7 +440,7 @@ Methods #### Defined in -[packages/core/src/types.ts:1037](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1037) +[packages/core/src/types.ts:1039](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1039) *** @@ -460,7 +460,7 @@ Methods #### Defined in -[packages/core/src/types.ts:1045](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1045) +[packages/core/src/types.ts:1047](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1047) *** @@ -478,7 +478,7 @@ Methods #### Defined in -[packages/core/src/types.ts:1047](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1047) +[packages/core/src/types.ts:1049](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1049) *** @@ -498,7 +498,7 @@ Methods #### Defined in -[packages/core/src/types.ts:1049](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1049) +[packages/core/src/types.ts:1051](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1051) *** @@ -516,4 +516,4 @@ Methods #### Defined in -[packages/core/src/types.ts:1054](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1054) +[packages/core/src/types.ts:1056](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1056) diff --git a/docs/api/interfaces/IBrowserService.md b/docs/api/interfaces/IBrowserService.md index 304a299948..ff3e286bd7 100644 --- a/docs/api/interfaces/IBrowserService.md +++ b/docs/api/interfaces/IBrowserService.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / IBrowserService +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / IBrowserService # Interface: IBrowserService @@ -24,7 +24,7 @@ #### Defined in -[packages/core/src/types.ts:966](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L966) +[packages/core/src/types.ts:968](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L968) ## Methods @@ -48,7 +48,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:971](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L971) +[packages/core/src/types.ts:973](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L973) *** @@ -62,7 +62,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1101](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1101) +[packages/core/src/types.ts:1103](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1103) *** @@ -94,4 +94,4 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1102](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1102) +[packages/core/src/types.ts:1104](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1104) diff --git a/docs/api/interfaces/ICacheAdapter.md b/docs/api/interfaces/ICacheAdapter.md index 55ec1ab3a8..b18eefb7ac 100644 --- a/docs/api/interfaces/ICacheAdapter.md +++ b/docs/api/interfaces/ICacheAdapter.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / ICacheAdapter +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / ICacheAdapter # Interface: ICacheAdapter @@ -18,7 +18,7 @@ #### Defined in -[packages/core/src/cache.ts:11](https://github.com/ai16z/eliza/blob/main/packages/core/src/cache.ts#L11) +[packages/core/src/cache.ts:11](https://github.com/monilpat/eliza/blob/main/packages/core/src/cache.ts#L11) *** @@ -38,7 +38,7 @@ #### Defined in -[packages/core/src/cache.ts:12](https://github.com/ai16z/eliza/blob/main/packages/core/src/cache.ts#L12) +[packages/core/src/cache.ts:12](https://github.com/monilpat/eliza/blob/main/packages/core/src/cache.ts#L12) *** @@ -56,4 +56,4 @@ #### Defined in -[packages/core/src/cache.ts:13](https://github.com/ai16z/eliza/blob/main/packages/core/src/cache.ts#L13) +[packages/core/src/cache.ts:13](https://github.com/monilpat/eliza/blob/main/packages/core/src/cache.ts#L13) diff --git a/docs/api/interfaces/ICacheManager.md b/docs/api/interfaces/ICacheManager.md index 0cbc87b6f8..25599fab72 100644 --- a/docs/api/interfaces/ICacheManager.md +++ b/docs/api/interfaces/ICacheManager.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / ICacheManager +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / ICacheManager # Interface: ICacheManager @@ -22,7 +22,7 @@ #### Defined in -[packages/core/src/types.ts:947](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L947) +[packages/core/src/types.ts:949](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L949) *** @@ -48,7 +48,7 @@ #### Defined in -[packages/core/src/types.ts:948](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L948) +[packages/core/src/types.ts:950](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L950) *** @@ -66,4 +66,4 @@ #### Defined in -[packages/core/src/types.ts:949](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L949) +[packages/core/src/types.ts:951](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L951) diff --git a/docs/api/interfaces/IDatabaseAdapter.md b/docs/api/interfaces/IDatabaseAdapter.md index 1a2dcd017d..b4082cd471 100644 --- a/docs/api/interfaces/IDatabaseAdapter.md +++ b/docs/api/interfaces/IDatabaseAdapter.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / IDatabaseAdapter +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / IDatabaseAdapter # Interface: IDatabaseAdapter @@ -14,7 +14,7 @@ Database instance #### Defined in -[packages/core/src/types.ts:738](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L738) +[packages/core/src/types.ts:740](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L740) ## Methods @@ -30,7 +30,7 @@ Optional initialization #### Defined in -[packages/core/src/types.ts:741](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L741) +[packages/core/src/types.ts:743](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L743) *** @@ -46,7 +46,7 @@ Close database connection #### Defined in -[packages/core/src/types.ts:744](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L744) +[packages/core/src/types.ts:746](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L746) *** @@ -66,7 +66,7 @@ Get account by ID #### Defined in -[packages/core/src/types.ts:747](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L747) +[packages/core/src/types.ts:749](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L749) *** @@ -86,7 +86,7 @@ Create new account #### Defined in -[packages/core/src/types.ts:750](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L750) +[packages/core/src/types.ts:752](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L752) *** @@ -120,7 +120,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:753](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L753) +[packages/core/src/types.ts:755](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L755) *** @@ -138,7 +138,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:763](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L763) +[packages/core/src/types.ts:765](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L765) *** @@ -162,7 +162,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:765](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L765) +[packages/core/src/types.ts:767](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L767) *** @@ -192,7 +192,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:771](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L771) +[packages/core/src/types.ts:773](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L773) *** @@ -218,7 +218,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:780](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L780) +[packages/core/src/types.ts:782](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L782) *** @@ -238,7 +238,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:787](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L787) +[packages/core/src/types.ts:789](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L789) *** @@ -270,7 +270,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:789](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L789) +[packages/core/src/types.ts:791](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L791) *** @@ -292,7 +292,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:799](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L799) +[packages/core/src/types.ts:801](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L801) *** @@ -324,7 +324,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:804](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L804) +[packages/core/src/types.ts:806](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L806) *** @@ -346,7 +346,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:816](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L816) +[packages/core/src/types.ts:818](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L818) *** @@ -366,7 +366,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:822](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L822) +[packages/core/src/types.ts:824](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L824) *** @@ -386,7 +386,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:824](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L824) +[packages/core/src/types.ts:826](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L826) *** @@ -408,7 +408,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:826](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L826) +[packages/core/src/types.ts:828](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L828) *** @@ -436,7 +436,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:832](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L832) +[packages/core/src/types.ts:834](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L834) *** @@ -454,7 +454,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:840](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L840) +[packages/core/src/types.ts:842](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L842) *** @@ -472,7 +472,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:842](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L842) +[packages/core/src/types.ts:844](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L844) *** @@ -490,7 +490,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:844](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L844) +[packages/core/src/types.ts:846](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L846) *** @@ -508,7 +508,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:846](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L846) +[packages/core/src/types.ts:848](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L848) *** @@ -526,7 +526,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:848](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L848) +[packages/core/src/types.ts:850](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L850) *** @@ -544,7 +544,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:850](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L850) +[packages/core/src/types.ts:852](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L852) *** @@ -562,7 +562,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:852](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L852) +[packages/core/src/types.ts:854](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L854) *** @@ -580,7 +580,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:854](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L854) +[packages/core/src/types.ts:856](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L856) *** @@ -598,7 +598,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:856](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L856) +[packages/core/src/types.ts:858](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L858) *** @@ -618,7 +618,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:858](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L858) +[packages/core/src/types.ts:860](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L860) *** @@ -638,7 +638,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:860](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L860) +[packages/core/src/types.ts:862](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L862) *** @@ -656,7 +656,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:862](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L862) +[packages/core/src/types.ts:864](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L864) *** @@ -674,7 +674,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:864](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L864) +[packages/core/src/types.ts:866](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L866) *** @@ -694,7 +694,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:866](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L866) +[packages/core/src/types.ts:868](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L868) *** @@ -716,7 +716,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:871](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L871) +[packages/core/src/types.ts:873](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L873) *** @@ -738,7 +738,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:877](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L877) +[packages/core/src/types.ts:879](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L879) *** @@ -760,7 +760,7 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:879](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L879) +[packages/core/src/types.ts:881](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L881) *** @@ -780,4 +780,4 @@ Get memories matching criteria #### Defined in -[packages/core/src/types.ts:884](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L884) +[packages/core/src/types.ts:886](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L886) diff --git a/docs/api/interfaces/IDatabaseCacheAdapter.md b/docs/api/interfaces/IDatabaseCacheAdapter.md index bdee3e15b6..25b4bc7f8f 100644 --- a/docs/api/interfaces/IDatabaseCacheAdapter.md +++ b/docs/api/interfaces/IDatabaseCacheAdapter.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / IDatabaseCacheAdapter +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / IDatabaseCacheAdapter # Interface: IDatabaseCacheAdapter @@ -22,7 +22,7 @@ #### Defined in -[packages/core/src/types.ts:888](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L888) +[packages/core/src/types.ts:890](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L890) *** @@ -46,7 +46,7 @@ #### Defined in -[packages/core/src/types.ts:893](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L893) +[packages/core/src/types.ts:895](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L895) *** @@ -68,4 +68,4 @@ #### Defined in -[packages/core/src/types.ts:899](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L899) +[packages/core/src/types.ts:901](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L901) diff --git a/docs/api/interfaces/IImageDescriptionService.md b/docs/api/interfaces/IImageDescriptionService.md index 05378a71d4..fc7efae473 100644 --- a/docs/api/interfaces/IImageDescriptionService.md +++ b/docs/api/interfaces/IImageDescriptionService.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / IImageDescriptionService +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / IImageDescriptionService # Interface: IImageDescriptionService @@ -24,7 +24,7 @@ #### Defined in -[packages/core/src/types.ts:966](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L966) +[packages/core/src/types.ts:968](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L968) ## Methods @@ -48,7 +48,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:971](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L971) +[packages/core/src/types.ts:973](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L973) *** @@ -74,4 +74,4 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1058](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1058) +[packages/core/src/types.ts:1060](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1060) diff --git a/docs/api/interfaces/IMemoryManager.md b/docs/api/interfaces/IMemoryManager.md index 95e6cdbaf9..4e3f0eb480 100644 --- a/docs/api/interfaces/IMemoryManager.md +++ b/docs/api/interfaces/IMemoryManager.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / IMemoryManager +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / IMemoryManager # Interface: IMemoryManager @@ -10,7 +10,7 @@ #### Defined in -[packages/core/src/types.ts:903](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L903) +[packages/core/src/types.ts:905](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L905) *** @@ -20,7 +20,7 @@ #### Defined in -[packages/core/src/types.ts:904](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L904) +[packages/core/src/types.ts:906](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L906) *** @@ -30,7 +30,7 @@ #### Defined in -[packages/core/src/types.ts:905](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L905) +[packages/core/src/types.ts:907](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L907) ## Methods @@ -48,7 +48,7 @@ #### Defined in -[packages/core/src/types.ts:907](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L907) +[packages/core/src/types.ts:909](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L909) *** @@ -76,7 +76,7 @@ #### Defined in -[packages/core/src/types.ts:909](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L909) +[packages/core/src/types.ts:911](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L911) *** @@ -94,7 +94,7 @@ #### Defined in -[packages/core/src/types.ts:917](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L917) +[packages/core/src/types.ts:919](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L919) *** @@ -112,7 +112,7 @@ #### Defined in -[packages/core/src/types.ts:921](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L921) +[packages/core/src/types.ts:923](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L923) *** @@ -132,7 +132,7 @@ #### Defined in -[packages/core/src/types.ts:922](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L922) +[packages/core/src/types.ts:924](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L924) *** @@ -160,7 +160,7 @@ #### Defined in -[packages/core/src/types.ts:923](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L923) +[packages/core/src/types.ts:925](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L925) *** @@ -180,7 +180,7 @@ #### Defined in -[packages/core/src/types.ts:933](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L933) +[packages/core/src/types.ts:935](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L935) *** @@ -198,7 +198,7 @@ #### Defined in -[packages/core/src/types.ts:935](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L935) +[packages/core/src/types.ts:937](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L937) *** @@ -216,7 +216,7 @@ #### Defined in -[packages/core/src/types.ts:937](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L937) +[packages/core/src/types.ts:939](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L939) *** @@ -236,4 +236,4 @@ #### Defined in -[packages/core/src/types.ts:939](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L939) +[packages/core/src/types.ts:941](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L941) diff --git a/docs/api/interfaces/IPdfService.md b/docs/api/interfaces/IPdfService.md index e0fc66ae5b..9639c3e29a 100644 --- a/docs/api/interfaces/IPdfService.md +++ b/docs/api/interfaces/IPdfService.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / IPdfService +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / IPdfService # Interface: IPdfService @@ -24,7 +24,7 @@ #### Defined in -[packages/core/src/types.ts:966](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L966) +[packages/core/src/types.ts:968](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L968) ## Methods @@ -48,7 +48,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:971](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L971) +[packages/core/src/types.ts:973](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L973) *** @@ -62,7 +62,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1114](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1114) +[packages/core/src/types.ts:1116](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1116) *** @@ -80,4 +80,4 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1115](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1115) +[packages/core/src/types.ts:1117](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1117) diff --git a/docs/api/interfaces/ISpeechService.md b/docs/api/interfaces/ISpeechService.md index 14efaae37d..36d7c6106a 100644 --- a/docs/api/interfaces/ISpeechService.md +++ b/docs/api/interfaces/ISpeechService.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / ISpeechService +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / ISpeechService # Interface: ISpeechService @@ -24,7 +24,7 @@ #### Defined in -[packages/core/src/types.ts:966](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L966) +[packages/core/src/types.ts:968](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L968) ## Methods @@ -48,7 +48,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:971](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L971) +[packages/core/src/types.ts:973](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L973) *** @@ -62,7 +62,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1109](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1109) +[packages/core/src/types.ts:1111](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1111) *** @@ -82,4 +82,4 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1110](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1110) +[packages/core/src/types.ts:1112](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1112) diff --git a/docs/api/interfaces/ITextGenerationService.md b/docs/api/interfaces/ITextGenerationService.md index f8974b2cbc..7f3bfe35a4 100644 --- a/docs/api/interfaces/ITextGenerationService.md +++ b/docs/api/interfaces/ITextGenerationService.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / ITextGenerationService +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / ITextGenerationService # Interface: ITextGenerationService @@ -24,7 +24,7 @@ #### Defined in -[packages/core/src/types.ts:966](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L966) +[packages/core/src/types.ts:968](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L968) ## Methods @@ -48,7 +48,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:971](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L971) +[packages/core/src/types.ts:973](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L973) *** @@ -62,7 +62,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1080](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1080) +[packages/core/src/types.ts:1082](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1082) *** @@ -90,7 +90,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1081](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1081) +[packages/core/src/types.ts:1083](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1083) *** @@ -118,7 +118,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1089](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1089) +[packages/core/src/types.ts:1091](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1091) *** @@ -136,4 +136,4 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1097](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1097) +[packages/core/src/types.ts:1099](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1099) diff --git a/docs/api/interfaces/ITranscriptionService.md b/docs/api/interfaces/ITranscriptionService.md index 758923ef5e..1e6c4a77f3 100644 --- a/docs/api/interfaces/ITranscriptionService.md +++ b/docs/api/interfaces/ITranscriptionService.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / ITranscriptionService +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / ITranscriptionService # Interface: ITranscriptionService @@ -24,7 +24,7 @@ #### Defined in -[packages/core/src/types.ts:966](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L966) +[packages/core/src/types.ts:968](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L968) ## Methods @@ -48,7 +48,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:971](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L971) +[packages/core/src/types.ts:973](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L973) *** @@ -66,7 +66,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1064](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1064) +[packages/core/src/types.ts:1066](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1066) *** @@ -84,7 +84,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1065](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1065) +[packages/core/src/types.ts:1067](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1067) *** @@ -102,7 +102,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1068](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1068) +[packages/core/src/types.ts:1070](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1070) *** @@ -120,4 +120,4 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1069](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1069) +[packages/core/src/types.ts:1071](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1071) diff --git a/docs/api/interfaces/IVideoService.md b/docs/api/interfaces/IVideoService.md index 40458afeb5..7439a7c6cd 100644 --- a/docs/api/interfaces/IVideoService.md +++ b/docs/api/interfaces/IVideoService.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / IVideoService +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / IVideoService # Interface: IVideoService @@ -24,7 +24,7 @@ #### Defined in -[packages/core/src/types.ts:966](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L966) +[packages/core/src/types.ts:968](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L968) ## Methods @@ -48,7 +48,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:971](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L971) +[packages/core/src/types.ts:973](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L973) *** @@ -66,7 +66,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1073](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1073) +[packages/core/src/types.ts:1075](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1075) *** @@ -84,7 +84,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1074](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1074) +[packages/core/src/types.ts:1076](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1076) *** @@ -102,7 +102,7 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1075](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1075) +[packages/core/src/types.ts:1077](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1077) *** @@ -122,4 +122,4 @@ Add abstract initialize method that must be implemented by derived classes #### Defined in -[packages/core/src/types.ts:1076](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1076) +[packages/core/src/types.ts:1078](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1078) diff --git a/docs/api/interfaces/Memory.md b/docs/api/interfaces/Memory.md index 1e57fd192d..787af341f7 100644 --- a/docs/api/interfaces/Memory.md +++ b/docs/api/interfaces/Memory.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / Memory +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / Memory # Interface: Memory @@ -14,7 +14,7 @@ Optional unique identifier #### Defined in -[packages/core/src/types.ts:323](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L323) +[packages/core/src/types.ts:325](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L325) *** @@ -26,7 +26,7 @@ Associated user ID #### Defined in -[packages/core/src/types.ts:326](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L326) +[packages/core/src/types.ts:328](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L328) *** @@ -38,7 +38,7 @@ Associated agent ID #### Defined in -[packages/core/src/types.ts:329](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L329) +[packages/core/src/types.ts:331](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L331) *** @@ -50,7 +50,7 @@ Optional creation timestamp #### Defined in -[packages/core/src/types.ts:332](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L332) +[packages/core/src/types.ts:334](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L334) *** @@ -62,7 +62,7 @@ Memory content #### Defined in -[packages/core/src/types.ts:335](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L335) +[packages/core/src/types.ts:337](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L337) *** @@ -74,7 +74,7 @@ Optional embedding vector #### Defined in -[packages/core/src/types.ts:338](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L338) +[packages/core/src/types.ts:340](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L340) *** @@ -86,7 +86,7 @@ Associated room ID #### Defined in -[packages/core/src/types.ts:341](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L341) +[packages/core/src/types.ts:343](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L343) *** @@ -98,7 +98,7 @@ Whether memory is unique #### Defined in -[packages/core/src/types.ts:344](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L344) +[packages/core/src/types.ts:346](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L346) *** @@ -110,4 +110,4 @@ Embedding similarity score #### Defined in -[packages/core/src/types.ts:347](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L347) +[packages/core/src/types.ts:349](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L349) diff --git a/docs/api/interfaces/MessageExample.md b/docs/api/interfaces/MessageExample.md index fc521fb157..bd55b1d1ca 100644 --- a/docs/api/interfaces/MessageExample.md +++ b/docs/api/interfaces/MessageExample.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / MessageExample +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / MessageExample # Interface: MessageExample @@ -14,7 +14,7 @@ Associated user #### Defined in -[packages/core/src/types.ts:355](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L355) +[packages/core/src/types.ts:357](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L357) *** @@ -26,4 +26,4 @@ Message content #### Defined in -[packages/core/src/types.ts:358](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L358) +[packages/core/src/types.ts:360](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L360) diff --git a/docs/api/interfaces/Objective.md b/docs/api/interfaces/Objective.md index 762460479b..3362379162 100644 --- a/docs/api/interfaces/Objective.md +++ b/docs/api/interfaces/Objective.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / Objective +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / Objective # Interface: Objective @@ -14,7 +14,7 @@ Optional unique identifier #### Defined in -[packages/core/src/types.ts:87](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L87) +[packages/core/src/types.ts:87](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L87) *** @@ -26,7 +26,7 @@ Description of what needs to be achieved #### Defined in -[packages/core/src/types.ts:90](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L90) +[packages/core/src/types.ts:90](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L90) *** @@ -38,4 +38,4 @@ Whether objective is completed #### Defined in -[packages/core/src/types.ts:93](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L93) +[packages/core/src/types.ts:93](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L93) diff --git a/docs/api/interfaces/Participant.md b/docs/api/interfaces/Participant.md index 22b6776ba5..fe77363505 100644 --- a/docs/api/interfaces/Participant.md +++ b/docs/api/interfaces/Participant.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / Participant +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / Participant # Interface: Participant @@ -14,7 +14,7 @@ Unique identifier #### Defined in -[packages/core/src/types.ts:518](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L518) +[packages/core/src/types.ts:520](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L520) *** @@ -26,4 +26,4 @@ Associated account #### Defined in -[packages/core/src/types.ts:521](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L521) +[packages/core/src/types.ts:523](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L523) diff --git a/docs/api/interfaces/Provider.md b/docs/api/interfaces/Provider.md index 9d272ce9a3..0b6431eb50 100644 --- a/docs/api/interfaces/Provider.md +++ b/docs/api/interfaces/Provider.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / Provider +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / Provider # Interface: Provider @@ -26,4 +26,4 @@ Data retrieval function #### Defined in -[packages/core/src/types.ts:457](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L457) +[packages/core/src/types.ts:459](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L459) diff --git a/docs/api/interfaces/Relationship.md b/docs/api/interfaces/Relationship.md index fc1f190ca2..5177376766 100644 --- a/docs/api/interfaces/Relationship.md +++ b/docs/api/interfaces/Relationship.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / Relationship +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / Relationship # Interface: Relationship @@ -14,7 +14,7 @@ Unique identifier #### Defined in -[packages/core/src/types.ts:469](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L469) +[packages/core/src/types.ts:471](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L471) *** @@ -26,7 +26,7 @@ First user ID #### Defined in -[packages/core/src/types.ts:472](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L472) +[packages/core/src/types.ts:474](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L474) *** @@ -38,7 +38,7 @@ Second user ID #### Defined in -[packages/core/src/types.ts:475](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L475) +[packages/core/src/types.ts:477](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L477) *** @@ -50,7 +50,7 @@ Primary user ID #### Defined in -[packages/core/src/types.ts:478](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L478) +[packages/core/src/types.ts:480](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L480) *** @@ -62,7 +62,7 @@ Associated room ID #### Defined in -[packages/core/src/types.ts:481](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L481) +[packages/core/src/types.ts:483](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L483) *** @@ -74,7 +74,7 @@ Relationship status #### Defined in -[packages/core/src/types.ts:484](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L484) +[packages/core/src/types.ts:486](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L486) *** @@ -86,4 +86,4 @@ Optional creation timestamp #### Defined in -[packages/core/src/types.ts:487](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L487) +[packages/core/src/types.ts:489](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L489) diff --git a/docs/api/interfaces/Room.md b/docs/api/interfaces/Room.md index 48184cd775..1f96cade13 100644 --- a/docs/api/interfaces/Room.md +++ b/docs/api/interfaces/Room.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / Room +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / Room # Interface: Room @@ -14,7 +14,7 @@ Unique identifier #### Defined in -[packages/core/src/types.ts:529](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L529) +[packages/core/src/types.ts:531](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L531) *** @@ -26,4 +26,4 @@ Room participants #### Defined in -[packages/core/src/types.ts:532](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L532) +[packages/core/src/types.ts:534](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L534) diff --git a/docs/api/interfaces/State.md b/docs/api/interfaces/State.md index 25d4c511cb..962ded22d7 100644 --- a/docs/api/interfaces/State.md +++ b/docs/api/interfaces/State.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / State +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / State # Interface: State @@ -18,7 +18,7 @@ ID of user who sent current message #### Defined in -[packages/core/src/types.ts:238](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L238) +[packages/core/src/types.ts:240](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L240) *** @@ -30,7 +30,7 @@ ID of agent in conversation #### Defined in -[packages/core/src/types.ts:241](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L241) +[packages/core/src/types.ts:243](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L243) *** @@ -42,7 +42,7 @@ Agent's biography #### Defined in -[packages/core/src/types.ts:244](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L244) +[packages/core/src/types.ts:246](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L246) *** @@ -54,7 +54,7 @@ Agent's background lore #### Defined in -[packages/core/src/types.ts:247](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L247) +[packages/core/src/types.ts:249](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L249) *** @@ -66,7 +66,7 @@ Message handling directions #### Defined in -[packages/core/src/types.ts:250](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L250) +[packages/core/src/types.ts:252](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L252) *** @@ -78,7 +78,7 @@ Post handling directions #### Defined in -[packages/core/src/types.ts:253](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L253) +[packages/core/src/types.ts:255](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L255) *** @@ -90,7 +90,7 @@ Current room/conversation ID #### Defined in -[packages/core/src/types.ts:256](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L256) +[packages/core/src/types.ts:258](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L258) *** @@ -102,7 +102,7 @@ Optional agent name #### Defined in -[packages/core/src/types.ts:259](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L259) +[packages/core/src/types.ts:261](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L261) *** @@ -114,7 +114,7 @@ Optional message sender name #### Defined in -[packages/core/src/types.ts:262](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L262) +[packages/core/src/types.ts:264](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L264) *** @@ -126,7 +126,7 @@ String representation of conversation actors #### Defined in -[packages/core/src/types.ts:265](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L265) +[packages/core/src/types.ts:267](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L267) *** @@ -138,7 +138,7 @@ Optional array of actor objects #### Defined in -[packages/core/src/types.ts:268](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L268) +[packages/core/src/types.ts:270](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L270) *** @@ -150,7 +150,7 @@ Optional string representation of goals #### Defined in -[packages/core/src/types.ts:271](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L271) +[packages/core/src/types.ts:273](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L273) *** @@ -162,7 +162,7 @@ Optional array of goal objects #### Defined in -[packages/core/src/types.ts:274](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L274) +[packages/core/src/types.ts:276](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L276) *** @@ -174,7 +174,7 @@ Recent message history as string #### Defined in -[packages/core/src/types.ts:277](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L277) +[packages/core/src/types.ts:279](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L279) *** @@ -186,7 +186,7 @@ Recent message objects #### Defined in -[packages/core/src/types.ts:280](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L280) +[packages/core/src/types.ts:282](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L282) *** @@ -198,7 +198,7 @@ Optional valid action names #### Defined in -[packages/core/src/types.ts:283](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L283) +[packages/core/src/types.ts:285](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L285) *** @@ -210,7 +210,7 @@ Optional action descriptions #### Defined in -[packages/core/src/types.ts:286](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L286) +[packages/core/src/types.ts:288](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L288) *** @@ -222,7 +222,7 @@ Optional action objects #### Defined in -[packages/core/src/types.ts:289](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L289) +[packages/core/src/types.ts:291](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L291) *** @@ -234,7 +234,7 @@ Optional action examples #### Defined in -[packages/core/src/types.ts:292](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L292) +[packages/core/src/types.ts:294](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L294) *** @@ -246,7 +246,7 @@ Optional provider descriptions #### Defined in -[packages/core/src/types.ts:295](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L295) +[packages/core/src/types.ts:297](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L297) *** @@ -258,7 +258,7 @@ Optional response content #### Defined in -[packages/core/src/types.ts:298](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L298) +[packages/core/src/types.ts:300](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L300) *** @@ -270,7 +270,7 @@ Optional recent interaction objects #### Defined in -[packages/core/src/types.ts:301](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L301) +[packages/core/src/types.ts:303](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L303) *** @@ -282,7 +282,7 @@ Optional recent interactions string #### Defined in -[packages/core/src/types.ts:304](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L304) +[packages/core/src/types.ts:306](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L306) *** @@ -294,7 +294,7 @@ Optional formatted conversation #### Defined in -[packages/core/src/types.ts:307](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L307) +[packages/core/src/types.ts:309](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L309) *** @@ -306,7 +306,7 @@ Optional formatted knowledge #### Defined in -[packages/core/src/types.ts:310](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L310) +[packages/core/src/types.ts:312](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L312) *** @@ -318,4 +318,4 @@ Optional knowledge data #### Defined in -[packages/core/src/types.ts:312](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L312) +[packages/core/src/types.ts:314](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L314) diff --git a/docs/api/type-aliases/CacheOptions.md b/docs/api/type-aliases/CacheOptions.md index 498723c8ff..ea3ba7b152 100644 --- a/docs/api/type-aliases/CacheOptions.md +++ b/docs/api/type-aliases/CacheOptions.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / CacheOptions +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / CacheOptions # Type Alias: CacheOptions @@ -12,4 +12,4 @@ ## Defined in -[packages/core/src/types.ts:942](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L942) +[packages/core/src/types.ts:944](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L944) diff --git a/docs/api/type-aliases/Character.md b/docs/api/type-aliases/Character.md index 31b0cd242e..cc4254f996 100644 --- a/docs/api/type-aliases/Character.md +++ b/docs/api/type-aliases/Character.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / Character +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / Character # Type Alias: Character @@ -342,4 +342,4 @@ Optional Twitter profile ## Defined in -[packages/core/src/types.ts:607](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L607) +[packages/core/src/types.ts:609](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L609) diff --git a/docs/api/type-aliases/CharacterConfig.md b/docs/api/type-aliases/CharacterConfig.md index 3012a36430..ad496dc07e 100644 --- a/docs/api/type-aliases/CharacterConfig.md +++ b/docs/api/type-aliases/CharacterConfig.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / CharacterConfig +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / CharacterConfig # Type Alias: CharacterConfig @@ -8,4 +8,4 @@ Type inference ## Defined in -[packages/core/src/environment.ts:127](https://github.com/ai16z/eliza/blob/main/packages/core/src/environment.ts#L127) +[packages/core/src/environment.ts:130](https://github.com/monilpat/eliza/blob/main/packages/core/src/environment.ts#L130) diff --git a/docs/api/type-aliases/Client.md b/docs/api/type-aliases/Client.md index e8a64abbb6..c06461c10e 100644 --- a/docs/api/type-aliases/Client.md +++ b/docs/api/type-aliases/Client.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / Client +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / Client # Type Alias: Client @@ -38,4 +38,4 @@ Stop client connection ## Defined in -[packages/core/src/types.ts:561](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L561) +[packages/core/src/types.ts:563](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L563) diff --git a/docs/api/type-aliases/EnvConfig.md b/docs/api/type-aliases/EnvConfig.md index e640d60b69..725aed0fe7 100644 --- a/docs/api/type-aliases/EnvConfig.md +++ b/docs/api/type-aliases/EnvConfig.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / EnvConfig +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / EnvConfig # Type Alias: EnvConfig @@ -8,4 +8,4 @@ Type inference ## Defined in -[packages/core/src/environment.ts:23](https://github.com/ai16z/eliza/blob/main/packages/core/src/environment.ts#L23) +[packages/core/src/environment.ts:23](https://github.com/monilpat/eliza/blob/main/packages/core/src/environment.ts#L23) diff --git a/docs/api/type-aliases/Handler.md b/docs/api/type-aliases/Handler.md index 86201baf63..81750fb6cc 100644 --- a/docs/api/type-aliases/Handler.md +++ b/docs/api/type-aliases/Handler.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / Handler +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / Handler # Type Alias: Handler() @@ -24,4 +24,4 @@ Handler function type for processing messages ## Defined in -[packages/core/src/types.ts:364](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L364) +[packages/core/src/types.ts:366](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L366) diff --git a/docs/api/type-aliases/HandlerCallback.md b/docs/api/type-aliases/HandlerCallback.md index e67a4624ec..a749f2e943 100644 --- a/docs/api/type-aliases/HandlerCallback.md +++ b/docs/api/type-aliases/HandlerCallback.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / HandlerCallback +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / HandlerCallback # Type Alias: HandlerCallback() @@ -18,4 +18,4 @@ Callback function type for handlers ## Defined in -[packages/core/src/types.ts:375](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L375) +[packages/core/src/types.ts:377](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L377) diff --git a/docs/api/type-aliases/KnowledgeItem.md b/docs/api/type-aliases/KnowledgeItem.md index d1f7215234..1737dd857b 100644 --- a/docs/api/type-aliases/KnowledgeItem.md +++ b/docs/api/type-aliases/KnowledgeItem.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / KnowledgeItem +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / KnowledgeItem # Type Alias: KnowledgeItem @@ -16,4 +16,4 @@ ## Defined in -[packages/core/src/types.ts:1152](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1152) +[packages/core/src/types.ts:1154](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1154) diff --git a/docs/api/type-aliases/Media.md b/docs/api/type-aliases/Media.md index 0e02df6552..bcadd608d7 100644 --- a/docs/api/type-aliases/Media.md +++ b/docs/api/type-aliases/Media.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / Media +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / Media # Type Alias: Media @@ -46,4 +46,4 @@ Text content ## Defined in -[packages/core/src/types.ts:538](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L538) +[packages/core/src/types.ts:540](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L540) diff --git a/docs/api/type-aliases/Model.md b/docs/api/type-aliases/Model.md index 902f2de593..cca9c29890 100644 --- a/docs/api/type-aliases/Model.md +++ b/docs/api/type-aliases/Model.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / Model +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / Model # Type Alias: Model @@ -100,4 +100,4 @@ Model names by size class ## Defined in -[packages/core/src/types.ts:142](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L142) +[packages/core/src/types.ts:142](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L142) diff --git a/docs/api/type-aliases/Models.md b/docs/api/type-aliases/Models.md index 18b3867cfc..55a68338ef 100644 --- a/docs/api/type-aliases/Models.md +++ b/docs/api/type-aliases/Models.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / Models +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / Models # Type Alias: Models @@ -32,6 +32,10 @@ Model configurations by provider > **llama\_cloud**: [`Model`](Model.md) +### together + +> **together**: [`Model`](Model.md) + ### llama\_local > **llama\_local**: [`Model`](Model.md) @@ -82,4 +86,4 @@ Model configurations by provider ## Defined in -[packages/core/src/types.ts:188](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L188) +[packages/core/src/types.ts:188](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L188) diff --git a/docs/api/type-aliases/Plugin.md b/docs/api/type-aliases/Plugin.md index b77663e2c0..fa6a2bd336 100644 --- a/docs/api/type-aliases/Plugin.md +++ b/docs/api/type-aliases/Plugin.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / Plugin +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / Plugin # Type Alias: Plugin @@ -52,4 +52,4 @@ Optional clients ## Defined in -[packages/core/src/types.ts:572](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L572) +[packages/core/src/types.ts:574](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L574) diff --git a/docs/api/type-aliases/SearchResponse.md b/docs/api/type-aliases/SearchResponse.md index f5c8b9ae33..b9f32e1351 100644 --- a/docs/api/type-aliases/SearchResponse.md +++ b/docs/api/type-aliases/SearchResponse.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / SearchResponse +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / SearchResponse # Type Alias: SearchResponse @@ -32,4 +32,4 @@ ## Defined in -[packages/core/src/types.ts:1126](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1126) +[packages/core/src/types.ts:1128](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1128) diff --git a/docs/api/type-aliases/SearchResult.md b/docs/api/type-aliases/SearchResult.md index 64d34dc24c..ce6c795604 100644 --- a/docs/api/type-aliases/SearchResult.md +++ b/docs/api/type-aliases/SearchResult.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / SearchResult +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / SearchResult # Type Alias: SearchResult @@ -28,4 +28,4 @@ ## Defined in -[packages/core/src/types.ts:1118](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L1118) +[packages/core/src/types.ts:1120](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L1120) diff --git a/docs/api/type-aliases/UUID.md b/docs/api/type-aliases/UUID.md index 207b73f0e9..f544a687ce 100644 --- a/docs/api/type-aliases/UUID.md +++ b/docs/api/type-aliases/UUID.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / UUID +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / UUID # Type Alias: UUID @@ -8,4 +8,4 @@ Represents a UUID string in the format "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" ## Defined in -[packages/core/src/types.ts:6](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L6) +[packages/core/src/types.ts:6](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L6) diff --git a/docs/api/type-aliases/Validator.md b/docs/api/type-aliases/Validator.md index 55a10f9222..bd17aadbac 100644 --- a/docs/api/type-aliases/Validator.md +++ b/docs/api/type-aliases/Validator.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / Validator +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / Validator # Type Alias: Validator() @@ -20,4 +20,4 @@ Validator function type for actions/evaluators ## Defined in -[packages/core/src/types.ts:383](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L383) +[packages/core/src/types.ts:385](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L385) diff --git a/docs/api/variables/CharacterSchema.md b/docs/api/variables/CharacterSchema.md index a68b7cdaf8..294b42998a 100644 --- a/docs/api/variables/CharacterSchema.md +++ b/docs/api/variables/CharacterSchema.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / CharacterSchema +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / CharacterSchema # Variable: CharacterSchema @@ -66,7 +66,7 @@ Main Character schema ### plugins -> **plugins**: `ZodArray`\<`ZodObject`\<`object`, `"strip"`, `ZodTypeAny`, `object`, `object`\>, `"many"`\> +> **plugins**: `ZodUnion`\<[`ZodArray`\<`ZodString`, `"many"`\>, `ZodArray`\<`ZodObject`\<`object`, `"strip"`, `ZodTypeAny`, `object`, `object`\>, `"many"`\>]\> ### settings @@ -100,4 +100,4 @@ Main Character schema ## Defined in -[packages/core/src/environment.ts:66](https://github.com/ai16z/eliza/blob/main/packages/core/src/environment.ts#L66) +[packages/core/src/environment.ts:66](https://github.com/monilpat/eliza/blob/main/packages/core/src/environment.ts#L66) diff --git a/docs/api/variables/booleanFooter.md b/docs/api/variables/booleanFooter.md index eaca80dc19..8242a8746d 100644 --- a/docs/api/variables/booleanFooter.md +++ b/docs/api/variables/booleanFooter.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / booleanFooter +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / booleanFooter # Variable: booleanFooter @@ -6,4 +6,4 @@ ## Defined in -[packages/core/src/parsing.ts:34](https://github.com/ai16z/eliza/blob/main/packages/core/src/parsing.ts#L34) +[packages/core/src/parsing.ts:34](https://github.com/monilpat/eliza/blob/main/packages/core/src/parsing.ts#L34) diff --git a/docs/api/variables/defaultCharacter.md b/docs/api/variables/defaultCharacter.md index cb092bc81f..f9953fc802 100644 --- a/docs/api/variables/defaultCharacter.md +++ b/docs/api/variables/defaultCharacter.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / defaultCharacter +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / defaultCharacter # Variable: defaultCharacter @@ -6,4 +6,4 @@ ## Defined in -[packages/core/src/defaultCharacter.ts:3](https://github.com/ai16z/eliza/blob/main/packages/core/src/defaultCharacter.ts#L3) +[packages/core/src/defaultCharacter.ts:3](https://github.com/monilpat/eliza/blob/main/packages/core/src/defaultCharacter.ts#L3) diff --git a/docs/api/variables/elizaLogger.md b/docs/api/variables/elizaLogger.md index ec05dc0f07..9a1f7f7203 100644 --- a/docs/api/variables/elizaLogger.md +++ b/docs/api/variables/elizaLogger.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / elizaLogger +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / elizaLogger # Variable: elizaLogger @@ -6,4 +6,4 @@ ## Defined in -[packages/core/src/logger.ts:267](https://github.com/ai16z/eliza/blob/main/packages/core/src/logger.ts#L267) +[packages/core/src/logger.ts:267](https://github.com/monilpat/eliza/blob/main/packages/core/src/logger.ts#L267) diff --git a/docs/api/variables/envSchema.md b/docs/api/variables/envSchema.md index 7c698d6cc6..d16e77fe85 100644 --- a/docs/api/variables/envSchema.md +++ b/docs/api/variables/envSchema.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / envSchema +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / envSchema # Variable: envSchema @@ -40,4 +40,4 @@ API Keys with specific formats ## Defined in -[packages/core/src/environment.ts:5](https://github.com/ai16z/eliza/blob/main/packages/core/src/environment.ts#L5) +[packages/core/src/environment.ts:5](https://github.com/monilpat/eliza/blob/main/packages/core/src/environment.ts#L5) diff --git a/docs/api/variables/evaluationTemplate.md b/docs/api/variables/evaluationTemplate.md index c9340abac7..419544d7cb 100644 --- a/docs/api/variables/evaluationTemplate.md +++ b/docs/api/variables/evaluationTemplate.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / evaluationTemplate +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / evaluationTemplate # Variable: evaluationTemplate @@ -8,4 +8,4 @@ Template used for the evaluation generateText. ## Defined in -[packages/core/src/evaluators.ts:8](https://github.com/ai16z/eliza/blob/main/packages/core/src/evaluators.ts#L8) +[packages/core/src/evaluators.ts:8](https://github.com/monilpat/eliza/blob/main/packages/core/src/evaluators.ts#L8) diff --git a/docs/api/variables/knowledge.md b/docs/api/variables/knowledge.md index fa20cbc318..f781575948 100644 --- a/docs/api/variables/knowledge.md +++ b/docs/api/variables/knowledge.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / knowledge +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / knowledge # Variable: knowledge @@ -52,4 +52,4 @@ ## Defined in -[packages/core/src/knowledge.ts:150](https://github.com/ai16z/eliza/blob/main/packages/core/src/knowledge.ts#L150) +[packages/core/src/knowledge.ts:150](https://github.com/monilpat/eliza/blob/main/packages/core/src/knowledge.ts#L150) diff --git a/docs/api/variables/messageCompletionFooter.md b/docs/api/variables/messageCompletionFooter.md index 78729c8623..9bc70be1dd 100644 --- a/docs/api/variables/messageCompletionFooter.md +++ b/docs/api/variables/messageCompletionFooter.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / messageCompletionFooter +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / messageCompletionFooter # Variable: messageCompletionFooter @@ -6,4 +6,4 @@ ## Defined in -[packages/core/src/parsing.ts:3](https://github.com/ai16z/eliza/blob/main/packages/core/src/parsing.ts#L3) +[packages/core/src/parsing.ts:3](https://github.com/monilpat/eliza/blob/main/packages/core/src/parsing.ts#L3) diff --git a/docs/api/variables/models.md b/docs/api/variables/models.md index 028aa1ba0a..c2c1155d85 100644 --- a/docs/api/variables/models.md +++ b/docs/api/variables/models.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / models +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / models # Variable: models @@ -6,4 +6,4 @@ ## Defined in -[packages/core/src/models.ts:4](https://github.com/ai16z/eliza/blob/main/packages/core/src/models.ts#L4) +[packages/core/src/models.ts:4](https://github.com/monilpat/eliza/blob/main/packages/core/src/models.ts#L4) diff --git a/docs/api/variables/settings.md b/docs/api/variables/settings.md index c25b8dc23b..1a5aaa7187 100644 --- a/docs/api/variables/settings.md +++ b/docs/api/variables/settings.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / settings +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / settings # Variable: settings @@ -8,4 +8,4 @@ Initialize settings based on environment ## Defined in -[packages/core/src/settings.ts:126](https://github.com/ai16z/eliza/blob/main/packages/core/src/settings.ts#L126) +[packages/core/src/settings.ts:126](https://github.com/monilpat/eliza/blob/main/packages/core/src/settings.ts#L126) diff --git a/docs/api/variables/shouldRespondFooter.md b/docs/api/variables/shouldRespondFooter.md index 1d055ad00e..378a9e06b9 100644 --- a/docs/api/variables/shouldRespondFooter.md +++ b/docs/api/variables/shouldRespondFooter.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / shouldRespondFooter +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / shouldRespondFooter # Variable: shouldRespondFooter @@ -6,4 +6,4 @@ ## Defined in -[packages/core/src/parsing.ts:8](https://github.com/ai16z/eliza/blob/main/packages/core/src/parsing.ts#L8) +[packages/core/src/parsing.ts:8](https://github.com/monilpat/eliza/blob/main/packages/core/src/parsing.ts#L8) diff --git a/docs/api/variables/stringArrayFooter.md b/docs/api/variables/stringArrayFooter.md index de7a7dd8fe..65bf941a15 100644 --- a/docs/api/variables/stringArrayFooter.md +++ b/docs/api/variables/stringArrayFooter.md @@ -1,4 +1,4 @@ -[@ai16z/eliza v0.1.4-alpha.3](../index.md) / stringArrayFooter +[@ai16z/eliza v0.1.5-alpha.3](../index.md) / stringArrayFooter # Variable: stringArrayFooter @@ -6,4 +6,4 @@ ## Defined in -[packages/core/src/parsing.ts:41](https://github.com/ai16z/eliza/blob/main/packages/core/src/parsing.ts#L41) +[packages/core/src/parsing.ts:41](https://github.com/monilpat/eliza/blob/main/packages/core/src/parsing.ts#L41) diff --git a/docs/docs/packages/plugins.md b/docs/docs/packages/plugins.md index 78326cc35b..be9107ea3f 100644 --- a/docs/docs/packages/plugins.md +++ b/docs/docs/packages/plugins.md @@ -533,6 +533,76 @@ WALLET_SECRET_SALT=your-secret-salt // Required to single agent deployments --- +#### 9. Webhook Plugin (`@eliza/plugin-coinbase-webhooks`) + +Manages webhooks using the Coinbase SDK, allowing for the creation and management of webhooks to listen for specific events on the Coinbase platform. + +**Actions:** + +- `CREATE_WEBHOOK` - Create a new webhook to listen for specific events. + - **Inputs**: + - `networkId` (string): The network ID where the webhook should listen for events. + - `eventType` (string): The type of event to listen for (e.g., transfers). + - `eventFilters` (object, optional): Additional filters for the event. + - `eventTypeFilter` (string, optional): Specific event type filter. + - **Outputs**: Confirmation message with webhook details. + - **Example**: + ```json + { + "networkId": "base", + "eventType": "transfers", + "notificationUri": "https://your-notification-uri.com" + } + ``` + +**Providers:** + +- `webhookProvider` - Retrieves a list of all configured webhooks. + - **Outputs**: A list of webhooks with details such as ID, URL, event type, and status. + +**Description:** + +The Webhook Plugin enables Eliza to interact with the Coinbase SDK to create and manage webhooks. This allows for real-time event handling and notifications based on specific criteria set by the user. + +**Usage Instructions:** + +1. **Configure the Plugin** + Add the plugin to your character’s configuration: + + ```typescript + import { webhookPlugin } from "@eliza/plugin-coinbase-webhooks"; + + const character = { + plugins: [webhookPlugin], + }; + ``` + +2. **Ensure Secure Configuration** + Set the following environment variables or runtime settings to ensure the plugin functions securely: + + - `COINBASE_API_KEY`: API key for Coinbase SDK. + - `COINBASE_PRIVATE_KEY`: Private key for secure transactions. + - `COINBASE_NOTIFICATION_URI`: URI where notifications should be sent. + +**Example Call** + +To create a webhook: + +```typescript +const response = await runtime.triggerAction("CREATE_WEBHOOK", { + networkId: "base", + eventType: "transfers", + notificationUri: "https://your-notification-uri.com" +}); +console.log("Webhook creation response:", response); +``` + +**Best Practices:** + +- **Secure Secrets Storage**: Ensure `COINBASE_API_KEY`, `COINBASE_PRIVATE_KEY`, and `COINBASE_NOTIFICATION_URI` are stored securely in `runtime.character.settings.secrets` or environment variables. +- **Validation**: Always validate input parameters to ensure compliance with expected formats and supported networks. +- **Error Handling**: Monitor logs for errors during webhook creation and adjust retry logic as needed. + ### Writing Custom Plugins Create a new plugin by implementing the Plugin interface: diff --git a/packages/plugin-coinbase/src/index.ts b/packages/plugin-coinbase/src/index.ts index 00a33894ec..280f8f4b71 100644 --- a/packages/plugin-coinbase/src/index.ts +++ b/packages/plugin-coinbase/src/index.ts @@ -2,15 +2,18 @@ import { coinbaseMassPaymentsPlugin } from "./plugins/massPayments"; import { coinbaseCommercePlugin } from "./plugins/commerce"; import { tradePlugin } from "./plugins/trade"; import { tokenContractPlugin } from "./plugins/tokenContract"; +import { webhookPlugin } from "./plugins/webhooks"; export const plugins = { coinbaseMassPaymentsPlugin, coinbaseCommercePlugin, tradePlugin, tokenContractPlugin, + webhookPlugin, }; export * from "./plugins/massPayments"; export * from "./plugins/commerce"; export * from "./plugins/trade"; export * from "./plugins/tokenContract"; +export * from "./plugins/webhooks"; diff --git a/packages/plugin-coinbase/src/plugins/commerce.ts b/packages/plugin-coinbase/src/plugins/commerce.ts index d1ef252787..c89b48c430 100644 --- a/packages/plugin-coinbase/src/plugins/commerce.ts +++ b/packages/plugin-coinbase/src/plugins/commerce.ts @@ -115,8 +115,15 @@ export const createCoinbaseChargeAction: Action = { "GENERATE_CHARGE", "CREATE_TRANSACTION", "COINBASE_CHARGE", + "GENERATE_INVOICE", + "CREATE_PAYMENT", + "SETUP_BILLING", + "REQUEST_PAYMENT", + "CREATE_CHECKOUT", + "GET_CHARGE_STATUS", + "LIST_CHARGES", ], - description: "Create a charge using Coinbase Commerce.", + description: "Create and manage payment charges using Coinbase Commerce. Supports fixed and dynamic pricing, multiple currencies (USD, EUR, USDC), and provides charge status tracking and management features.", validate: async (runtime: IAgentRuntime, _message: Memory) => { const coinbaseCommerceKeyOk = !!runtime.getSetting( "COINBASE_COMMERCE_KEY" @@ -222,24 +229,83 @@ export const createCoinbaseChargeAction: Action = { { user: "{{user1}}", content: { - text: "Create a charge for $10.00 USD to Chris for dinner", - data: { - local_price: { - amount: "10.00", - currency: "USD", - }, - pricing_type: "fixed_price", - buyer_locale: "en-US", - cancel_url: "https://example.com/cancel", - redirect_url: "https://example.com/success", - }, + text: "Create a charge for $100 USD for Digital Art NFT with description 'Exclusive digital artwork collection'", + }, + }, + { + user: "{{agentName}}", + content: { + text: "Charge created successfully:\n- Amount: $100 USD\n- Name: Digital Art NFT\n- Description: Exclusive digital artwork collection\n- Type: fixed_price\n- Charge URL: https://commerce.coinbase.com/charges/...", + }, + }, + ], + [ + { + user: "{{user1}}", + content: { + text: "Set up a dynamic price charge for Premium Membership named 'VIP Access Pass'", + }, + }, + { + user: "{{agentName}}", + content: { + text: "Charge created successfully:\n- Type: dynamic_price\n- Name: VIP Access Pass\n- Description: Premium Membership\n- Charge URL: https://commerce.coinbase.com/charges/...", + }, + }, + ], + [ + { + user: "{{user1}}", + content: { + text: "Generate a payment request for 50 EUR for Workshop Registration", + }, + }, + { + user: "{{agentName}}", + content: { + text: "Charge created successfully:\n- Amount: 50 EUR\n- Name: Workshop Registration\n- Type: fixed_price\n- Charge URL: https://commerce.coinbase.com/charges/...", + }, + }, + ], + [ + { + user: "{{user1}}", + content: { + text: "Create an invoice for 1000 USDC for Consulting Services", + }, + }, + { + user: "{{agentName}}", + content: { + text: "Charge created successfully:\n- Amount: 1000 USDC\n- Name: Consulting Services\n- Type: fixed_price\n- Charge URL: https://commerce.coinbase.com/charges/...", + }, + }, + ], + [ + { + user: "{{user1}}", + content: { + text: "Check the status of charge abc-123-def", + }, + }, + { + user: "{{agentName}}", + content: { + text: "Charge details retrieved:\n- ID: abc-123-def\n- Status: COMPLETED\n- Amount: 100 USD\n- Created: 2024-01-20T10:00:00Z\n- Expires: 2024-01-21T10:00:00Z", + }, + }, + ], + [ + { + user: "{{user1}}", + content: { + text: "List all active charges", }, }, { user: "{{agentName}}", content: { - text: "Charge created successfully: {{charge.id}} for {{charge.amount}} {{charge.currency}}", - action: "CREATE_CHARGE", + text: "Active charges retrieved:\n1. ID: abc-123 - $100 USD - Digital Art NFT\n2. ID: def-456 - 50 EUR - Workshop\n3. ID: ghi-789 - 1000 USDC - Consulting\n\nTotal active charges: 3", }, }, ], diff --git a/packages/plugin-coinbase/src/plugins/massPayments.ts b/packages/plugin-coinbase/src/plugins/massPayments.ts index 0b8751550f..41110615f9 100644 --- a/packages/plugin-coinbase/src/plugins/massPayments.ts +++ b/packages/plugin-coinbase/src/plugins/massPayments.ts @@ -1,4 +1,4 @@ -import { Coinbase } from "@coinbase/coinbase-sdk"; +import { Coinbase, Wallet } from "@coinbase/coinbase-sdk"; import { composeContext, elizaLogger, @@ -109,10 +109,15 @@ async function executeMassPayout( ): Promise { const transactions: Transaction[] = []; const assetIdLowercase = assetId.toLowerCase(); + let sendingWallet: Wallet; try { - const sendingWallet = await initializeWallet(runtime, networkId); - for (const address of receivingAddresses) { - elizaLogger.log("Processing payout for address:", address); + sendingWallet = await initializeWallet(runtime, networkId); + } catch (error) { + elizaLogger.error("Error initializing sending wallet:", error); + throw error; + } + for (const address of receivingAddresses) { + elizaLogger.log("Processing payout for address:", address); if (address) { try { // Check balance before initiating transfer @@ -126,7 +131,7 @@ async function executeMassPayout( }); if (walletBalance.lessThan(transferAmount)) { - const insufficientFunds = `Insufficient funds for address ${address}. Required: ${transferAmount}, Available: ${walletBalance}`; + const insufficientFunds = `Insufficient funds for address ${sendingWallet.getDefaultAddress()} to send to ${address}. Required: ${transferAmount}, Available: ${walletBalance}`; elizaLogger.error(insufficientFunds); transactions.push({ @@ -181,29 +186,30 @@ async function executeMassPayout( } // Send 1% to charity const charityAddress = getCharityAddress(networkId); - const charityTransfer = await executeTransfer( - sendingWallet, - transferAmount * 0.01, - assetId, - charityAddress - ); - transactions.push({ + + try { + const charityTransfer = await executeTransfer(sendingWallet, transferAmount * 0.01, assetId, charityAddress); + + transactions.push({ address: charityAddress, amount: charityTransfer.getAmount().toNumber(), status: "Success", errorCode: null, - transactionUrl: charityTransfer.getTransactionLink(), - }); + transactionUrl: charityTransfer.getTransactionLink(), + }); + } catch (error) { + elizaLogger.error("Error during charity transfer:", error); + transactions.push({ + address: charityAddress, + amount: transferAmount * 0.01, + status: "Failed", + errorCode: error?.message || "Unknown Error", + transactionUrl: null, + }); + } await appendTransactionsToCsv(transactions); elizaLogger.log("Finished processing mass payouts."); - return transactions; - } catch (error) { - elizaLogger.error( - "Error initializing sending wallet or processing payouts:", - error - ); - throw error; // Re-throw the error to be caught in the handler - } + return transactions; } // Action for sending mass payouts @@ -401,6 +407,48 @@ Check the CSV file for full details.`, }, }, ], + [ + { + user: "{{user1}}", + content: { + text: "Airdrop 10 USDC to these community members: 0x789..., 0x101... on base network", + }, + }, + { + user: "{{agentName}}", + content: { + text: "Mass payout completed successfully:\n- Airdropped 10 USDC to 2 addresses on base network\n- Successful Transactions: 2\n- Failed Transactions: 0\nCheck the CSV file for transaction details.", + }, + }, + ], + [ + { + user: "{{user1}}", + content: { + text: "Multi-send 0.25 ETH to team wallets: 0x222..., 0x333... on Ethereum", + }, + }, + { + user: "{{agentName}}", + content: { + text: "Mass payout completed successfully:\n- Multi-sent 0.25 ETH to 2 addresses on Ethereum network\n- Successful Transactions: 2\n- Failed Transactions: 0\nCheck the CSV file for transaction details.", + }, + }, + ], + [ + { + user: "{{user1}}", + content: { + text: "Distribute rewards of 5 SOL each to contest winners: winner1.sol, winner2.sol on Solana", + }, + }, + { + user: "{{agentName}}", + content: { + text: "Mass payout completed successfully:\n- Distributed 5 SOL to 2 addresses on Solana network\n- Successful Transactions: 2\n- Failed Transactions: 0\nCheck the CSV file for transaction details.", + }, + }, + ], ], }; diff --git a/packages/plugin-coinbase/src/plugins/trade.ts b/packages/plugin-coinbase/src/plugins/trade.ts index 9d22824873..9045261ba5 100644 --- a/packages/plugin-coinbase/src/plugins/trade.ts +++ b/packages/plugin-coinbase/src/plugins/trade.ts @@ -1,4 +1,4 @@ -import { Coinbase } from "@coinbase/coinbase-sdk"; +import { Coinbase} from "@coinbase/coinbase-sdk"; import { Action, Plugin, @@ -164,24 +164,25 @@ export const executeTradeAction: Action = { ); return; } - const { trade, transfer } = await executeTradeAndCharityTransfer( - runtime, - network, - amount, - sourceAsset, - targetAsset - ); - callback( - { - text: `Trade executed successfully: + + const { trade, transfer } = await executeTradeAndCharityTransfer(runtime, network, amount, sourceAsset, targetAsset); + + let responseText = `Trade executed successfully: - Network: ${network} - Amount: ${trade.getFromAmount()} - From: ${sourceAsset} - To: ${targetAsset} - Transaction URL: ${trade.getTransaction().getTransactionLink() || ""} -- Charity Amount: ${transfer.getAmount()} -- Charity Transaction URL: ${transfer.getTransactionLink() || ""}`, - }, +- Charity Transaction URL: ${transfer.getTransactionLink() || ""}`; + + if (transfer) { + responseText += `\n- Charity Amount: ${transfer.getAmount()}`; + } else { + responseText += "\n(Note: Charity transfer was not completed)"; + } + + callback( + { text: responseText }, [] ); } catch (error) { @@ -199,18 +200,55 @@ export const executeTradeAction: Action = { { user: "{{user1}}", content: { - text: "Trade 0.00001 ETH for USDC on base", + text: "Swap 1 ETH for USDC on base network", + }, + }, + { + user: "{{agentName}}", + content: { + text: "Trade executed successfully:\n- Swapped 1 ETH for USDC on base network\n- Transaction URL: https://basescan.io/tx/...\n- Status: Completed", + }, + }, + ], + [ + { + user: "{{user1}}", + content: { + text: "Convert 1000 USDC to SOL on Solana", + }, + }, + { + user: "{{agentName}}", + content: { + text: "Trade executed successfully:\n- Converted 1000 USDC to SOL on Solana network\n- Transaction URL: https://solscan.io/tx/...\n- Status: Completed", + }, + }, + ], + [ + { + user: "{{user1}}", + content: { + text: "Exchange 5 WETH for ETH on Arbitrum", + }, + }, + { + user: "{{agentName}}", + content: { + text: "Trade executed successfully:\n- Exchanged 5 WETH for ETH on Arbitrum network\n- Transaction URL: https://arbiscan.io/tx/...\n- Status: Completed", + }, + }, + ], + [ + { + user: "{{user1}}", + content: { + text: "Trade 100 GWEI for USDC on Polygon", }, }, { user: "{{agentName}}", content: { - text: `Trade executed successfully: -- Network: base -- Amount: 0.01 -- From: ETH -- To: USDC -- Transaction URL: https://www.basescan.com/`, + text: "Trade executed successfully:\n- Traded 100 GWEI for USDC on Polygon network\n- Transaction URL: https://polygonscan.com/tx/...\n- Status: Completed", }, }, ], @@ -218,18 +256,13 @@ export const executeTradeAction: Action = { { user: "{{user1}}", content: { - text: "Swap 1 SOL for USDC on the sol network.", + text: "Market buy ETH with 500 USDC on base", }, }, { user: "{{agentName}}", content: { - text: `Trade executed successfully: -- Network: sol -- Amount: 1 -- From: SOL -- To: USDC -- Transaction URL: https://www.solscan.com/`, + text: "Trade executed successfully:\n- Bought ETH with 500 USDC on base network\n- Transaction URL: https://basescan.io/tx/...\n- Status: Completed", }, }, ], @@ -237,29 +270,25 @@ export const executeTradeAction: Action = { { user: "{{user1}}", content: { - text: "Exchange 100 USDC for ETH on the pol network.", + text: "Sell 2.5 SOL for USDC on Solana mainnet", }, }, { user: "{{agentName}}", content: { - text: `Trade executed successfully: -- Network: pol -- Amount: 100 -- From: USDC -- To: ETH -- Transaction URL: https://www.etherscan.com/`, + text: "Trade executed successfully:\n- Sold 2.5 SOL for USDC on Solana network\n- Transaction URL: https://solscan.io/tx/...\n- Status: Completed", }, }, ], ], similes: [ - "CREATE_TRADE", - "TRADE", - "SWAP", - "EXCHANGE", - "SWAP_ASSETS", - "SWAP_CURRENCY", + "EXECUTE_TRADE", // Primary action name + "SWAP_TOKENS", // For token swaps + "CONVERT_CURRENCY", // For currency conversion + "EXCHANGE_ASSETS", // For asset exchange + "MARKET_BUY", // For buying assets + "MARKET_SELL", // For selling assets + "TRADE_CRYPTO", // Generic crypto trading ], }; diff --git a/packages/plugin-coinbase/src/plugins/trades.csv b/packages/plugin-coinbase/src/plugins/trades.csv deleted file mode 100644 index 669e45ed68..0000000000 --- a/packages/plugin-coinbase/src/plugins/trades.csv +++ /dev/null @@ -1,2 +0,0 @@ -Network,From Amount,Source Asset,To Amount,Target Asset,Status,Transaction URL - diff --git a/packages/plugin-coinbase/src/plugins/transactions.csv b/packages/plugin-coinbase/src/plugins/transactions.csv deleted file mode 100644 index 0d6123f0dd..0000000000 --- a/packages/plugin-coinbase/src/plugins/transactions.csv +++ /dev/null @@ -1,4 +0,0 @@ -Address,Amount,Status,Error Code,Transaction URL - -0xA0ba2ACB5846A54834173fB0DD9444F756810f06,0.0001,Success,,https://basescan.org/tx/0x461b32b6b5ffd755eb134cb24f79c9136b8af5fd744b1d91320dc43bf2a902ad -0xF14F2c49aa90BaFA223EE074C1C33b59891826bF,0.0001,Success,,https://basescan.org/tx/0x225d624c98023b9d8a4ec53911679672685c1e3aaffce8fdb99db8a85bdc07b8 diff --git a/packages/plugin-coinbase/src/plugins/webhooks.ts b/packages/plugin-coinbase/src/plugins/webhooks.ts new file mode 100644 index 0000000000..5a722833d9 --- /dev/null +++ b/packages/plugin-coinbase/src/plugins/webhooks.ts @@ -0,0 +1,170 @@ +import { Coinbase, Webhook } from "@coinbase/coinbase-sdk"; +import { + Action, + Plugin, + elizaLogger, + IAgentRuntime, + Memory, + HandlerCallback, + State, + composeContext, + generateObjectV2, + ModelClass, + Provider, +} from "@ai16z/eliza"; +import { WebhookSchema, isWebhookContent, WebhookContent } from "../types"; +import { webhookTemplate } from "../templates"; +import { appendWebhooksToCsv } from "../utils"; +export const webhookProvider: Provider = { + get: async (runtime: IAgentRuntime, _message: Memory) => { + try { + Coinbase.configure({ + apiKeyName: + runtime.getSetting("COINBASE_API_KEY") ?? + process.env.COINBASE_API_KEY, + privateKey: + runtime.getSetting("COINBASE_PRIVATE_KEY") ?? + process.env.COINBASE_PRIVATE_KEY, + }); + + // List all webhooks + const resp = await Webhook.list(); + elizaLogger.log("Listing all webhooks:", resp.data); + + return { + webhooks: resp.data.map((webhook: Webhook) => ({ + id: webhook.getId(), + networkId: webhook.getNetworkId(), + eventType: webhook.getEventType(), + eventFilters: webhook.getEventFilters(), + eventTypeFilter: webhook.getEventTypeFilter(), + notificationURI: webhook.getNotificationURI(), + })), + }; + } catch (error) { + elizaLogger.error("Error in webhookProvider:", error); + return []; + } + }, +}; + +export const createWebhookAction: Action = { + name: "CREATE_WEBHOOK", + description: "Create a new webhook using the Coinbase SDK.", + validate: async (runtime: IAgentRuntime, _message: Memory) => { + elizaLogger.log("Validating runtime for CREATE_WEBHOOK..."); + return ( + !!( + runtime.character.settings.secrets?.COINBASE_API_KEY || + process.env.COINBASE_API_KEY + ) && + !!( + runtime.character.settings.secrets?.COINBASE_PRIVATE_KEY || + process.env.COINBASE_PRIVATE_KEY + ) && + !!( + runtime.character.settings.secrets?.COINBASE_NOTIFICATION_URI || + process.env.COINBASE_NOTIFICATION_URI + ) + ); + }, + handler: async ( + runtime: IAgentRuntime, + _message: Memory, + state: State, + _options: any, + callback: HandlerCallback + ) => { + elizaLogger.log("Starting CREATE_WEBHOOK handler..."); + + try { + Coinbase.configure({ + apiKeyName: + runtime.getSetting("COINBASE_API_KEY") ?? + process.env.COINBASE_API_KEY, + privateKey: + runtime.getSetting("COINBASE_PRIVATE_KEY") ?? + process.env.COINBASE_PRIVATE_KEY, + }); + + const context = composeContext({ + state, + template: webhookTemplate, + }); + + const webhookDetails = await generateObjectV2({ + runtime, + context, + modelClass: ModelClass.SMALL, + schema: WebhookSchema, + }); + + if (!isWebhookContent(webhookDetails.object)) { + callback( + { + text: "Invalid webhook details. Ensure network, URL, event type, and contract address are correctly specified.", + }, + [] + ); + return; + } + + const { networkId, eventType, eventFilters, eventTypeFilter } = webhookDetails.object as WebhookContent; + const notificationUri = runtime.getSetting("COINBASE_NOTIFICATION_URI") ?? process.env.COINBASE_NOTIFICATION_URI; + + if (!notificationUri) { + callback( + { + text: "Notification URI is not set in the environment variables.", + }, + [] + ); + return; + } + elizaLogger.log("Creating webhook with details:", {networkId, notificationUri, eventType, eventTypeFilter, eventFilters}); + const webhook = await Webhook.create({networkId, notificationUri, eventType, eventFilters}); + elizaLogger.log("Webhook created successfully:", webhook.toString()); + callback( + { + text: `Webhook created successfully: ${webhook.toString()}`, + }, + [] + ); + await appendWebhooksToCsv([webhook]); + elizaLogger.log("Webhook appended to CSV successfully"); + } catch (error) { + elizaLogger.error("Error during webhook creation:", error); + callback( + { + text: "Failed to create the webhook. Please check the logs for more details.", + }, + [] + ); + } + }, + similes: ["WEBHOOK", "NOTIFICATION", "EVENT", "TRIGGER", "LISTENER"], + examples: [ + [ + { + user: "{{user1}}", + content: { + text: "Create a webhook on base for address 0xbcF7C64B880FA89a015970dC104E848d485f99A3 on the event type: transfers", + }, + }, + { + user: "{{agentName}}", + content: { + text: `Webhook created successfully: Webhook ID: {{webhookId}}, Network ID: {{networkId}}, Notification URI: {{notificationUri}}, Event Type: {{eventType}}`, + action: "CREATE_WEBHOOK", + }, + }, + ], + ] +}; + +export const webhookPlugin: Plugin = { + name: "webhookPlugin", + description: "Manages webhooks using the Coinbase SDK.", + actions: [createWebhookAction], + providers: [webhookProvider], +}; \ No newline at end of file diff --git a/packages/plugin-coinbase/src/templates.ts b/packages/plugin-coinbase/src/templates.ts index 7f02c1666f..a5546a1492 100644 --- a/packages/plugin-coinbase/src/templates.ts +++ b/packages/plugin-coinbase/src/templates.ts @@ -49,7 +49,7 @@ Here are the recent user messages for context: export const transferTemplate = ` Extract the following details for processing a mass payout using the Coinbase SDK: - **receivingAddresses** (array): A list of wallet addresses receiving the funds. -- **transferAmount** (number): The amount to transfer to each address (in the smallest unit, e.g., Wei for ETH). +- **transferAmount** (number): The amount to transfer to each address. - **assetId** (string): The asset ID to transfer (e.g., ETH, BTC). - **network** (string): The blockchain network to use. Allowed values are: static networks: { @@ -81,7 +81,7 @@ Here are the recent user messages for context: export const tradeTemplate = ` Extract the following details for processing a trade using the Coinbase SDK: - **network** (string): The blockchain network to use (e.g., base, sol, eth, arb, pol). -- **amount** (number): The amount to trade (in the smallest unit, e.g., Wei for ETH). +- **amount** (number): The amount to trade. - **sourceAsset** (string): The asset ID to trade from (must be one of: ETH, SOL, USDC, WETH, GWEI, LAMPORT). - **targetAsset** (string): The asset ID to trade to (must be one of: ETH, SOL, USDC, WETH, GWEI, LAMPORT). @@ -197,6 +197,94 @@ Example for invoking a transfer method on an ERC20 token contract: } \`\`\` +Here are the recent user messages for context: +{{recentMessages}} +`; + +export const webhookTemplate = ` +Extract the following details for creating a webhook: +- **networkId** (string): The network ID for which the webhook is created. +Allowed values are: + static networks: { + readonly BaseSepolia: "base-sepolia"; + readonly BaseMainnet: "base-mainnet"; + readonly EthereumHolesky: "ethereum-holesky"; + readonly EthereumMainnet: "ethereum-mainnet"; + readonly PolygonMainnet: "polygon-mainnet"; + readonly SolanaDevnet: "solana-devnet"; + readonly SolanaMainnet: "solana-mainnet"; + readonly ArbitrumMainnet: "arbitrum-mainnet"; + }; +- **eventType** (string): The type of event for the webhook. +export declare const WebhookEventType: { + readonly Unspecified: "unspecified"; + readonly Erc20Transfer: "erc20_transfer"; + readonly Erc721Transfer: "erc721_transfer"; + readonly WalletActivity: "wallet_activity"; +}; +- **eventTypeFilter** (string, optional): Filter for wallet activity event type. +export interface WebhookEventTypeFilter { + /** + * A list of wallet addresses to filter on. + * @type {Array} + * @memberof WebhookWalletActivityFilter + */ + 'addresses'?: Array; + /** + * The ID of the wallet that owns the webhook. + * @type {string} + * @memberof WebhookWalletActivityFilter + */ + 'wallet_id'?: string; +} +- **eventFilters** (array, optional): Filters applied to the events that determine which specific events trigger the webhook. +export interface Array { + /** + * The onchain contract address of the token for which the events should be tracked. + * @type {string} + * @memberof WebhookEventFilter + */ + 'contract_address'?: string; + /** + * The onchain address of the sender. Set this filter to track all transfer events originating from your address. + * @type {string} + * @memberof WebhookEventFilter + */ + 'from_address'?: string; + /** + * The onchain address of the receiver. Set this filter to track all transfer events sent to your address. + * @type {string} + * @memberof WebhookEventFilter + */ + 'to_address'?: string; +} +Provide the details in the following JSON format: +\`\`\`json +{ + "networkId": "", + "eventType": "", + "eventTypeFilter": "", + "eventFilters": [, ] +} +\`\`\` + + + +Example for creating a webhook on the Sepolia testnet for ERC20 transfers originating from a specific wallet 0x1234567890123456789012345678901234567890 on transfers from 0xbcF7C64B880FA89a015970dC104E848d485f99A3 + +\`\`\`javascript + + networkId: 'base-sepolia', // Listening on sepolia testnet transactions + eventType: 'erc20_transfer', + eventTypeFilter: { + addresses: ['0x1234567890123456789012345678901234567890'] + }, + eventFilters: [{ + from_address: '0xbcF7C64B880FA89a015970dC104E848d485f99A3', + }], +}); +\`\`\` + Here are the recent user messages for context: {{recentMessages}} `; \ No newline at end of file diff --git a/packages/plugin-coinbase/src/types.ts b/packages/plugin-coinbase/src/types.ts index 49221d4503..5e070c1be8 100644 --- a/packages/plugin-coinbase/src/types.ts +++ b/packages/plugin-coinbase/src/types.ts @@ -1,5 +1,6 @@ import { Coinbase } from "@coinbase/coinbase-sdk"; import { z } from "zod"; +import { WebhookEventType, WebhookEventFilter, WebhookEventTypeFilter } from "@coinbase/coinbase-sdk/dist/client"; export const ChargeSchema = z.object({ id: z.string().nullable(), @@ -138,4 +139,18 @@ export const ContractInvocationSchema = z.object({ export const isContractInvocationContent = (obj: any): obj is ContractInvocationContent => { return ContractInvocationSchema.safeParse(obj).success; +}; + + +export const WebhookSchema = z.object({ + networkId: z.string(), + eventType: z.nativeEnum(WebhookEventType), + eventTypeFilter:z.custom().optional(), + eventFilters: z.array(z.custom()).optional() +}); + +export type WebhookContent = z.infer; + +export const isWebhookContent = (object: any): object is WebhookContent => { + return WebhookSchema.safeParse(object).success; }; \ No newline at end of file diff --git a/packages/plugin-coinbase/src/utils.ts b/packages/plugin-coinbase/src/utils.ts index 799ee2c324..9b96db423f 100644 --- a/packages/plugin-coinbase/src/utils.ts +++ b/packages/plugin-coinbase/src/utils.ts @@ -1,4 +1,4 @@ -import { Coinbase, Trade, Wallet, WalletData } from "@coinbase/coinbase-sdk"; +import { Coinbase, Trade, Transfer, Wallet, WalletData, Webhook } from "@coinbase/coinbase-sdk"; import { elizaLogger, IAgentRuntime } from "@ai16z/eliza"; import fs from "fs"; import path from "path"; @@ -12,7 +12,8 @@ const __filename = fileURLToPath(import.meta.url); const __dirname = path.dirname(__filename); const baseDir = path.resolve(__dirname, "../../plugin-coinbase/src/plugins"); const tradeCsvFilePath = path.join(baseDir, "trades.csv"); -const csvFilePath = path.join(baseDir, "transactions.csv"); +const transactionCsvFilePath = path.join(baseDir, "transactions.csv"); +const webhookCsvFilePath = path.join(baseDir, "webhooks.csv"); export async function initializeWallet( runtime: IAgentRuntime, @@ -55,6 +56,7 @@ export async function initializeWallet( // save it to gitignored file wallet.saveSeed(seedFilePath); } + elizaLogger.log("Wallet created and stored new wallet:", walletAddress); } catch (error) { elizaLogger.error("Error updating character secrets:", error); throw error; @@ -64,10 +66,13 @@ export async function initializeWallet( elizaLogger.log("Created and stored new wallet:", walletAddress); } else { // Importing existing wallet using stored seed and wallet ID + // Always defaults to base-mainnet we can't select the network here wallet = await Wallet.import({ seed: storedSeed, walletId: storedWalletId, }); + const networkId = wallet.getNetworkId(); + elizaLogger.log("Imported existing wallet for network:", networkId); // Logging wallet import elizaLogger.log( @@ -94,11 +99,10 @@ export async function executeTradeAndCharityTransfer(runtime: IAgentRuntime, net network, address: await wallet.getDefaultAddress(), }); - // We send 1% of the amount to a charity address and trade the rest of the 99% - // Based on the network, we use the correct charity address + const charityAddress = getCharityAddress(network); - const charityAmount = amount * 0.01; - const tradeAmount = amount - charityAmount; + const charityAmount = charityAddress ? amount * 0.01 : 0; + const tradeAmount = charityAddress ? amount - charityAmount : amount; const assetIdLowercase = sourceAsset.toLowerCase(); const tradeParams = { amount: tradeAmount, @@ -106,24 +110,26 @@ export async function executeTradeAndCharityTransfer(runtime: IAgentRuntime, net toAssetId: targetAsset.toLowerCase(), }; - const transfer = await executeTransfer(wallet, charityAmount, assetIdLowercase, network); + let transfer: Transfer; + if (charityAddress && charityAmount > 0) { + transfer = await executeTransfer(wallet, charityAmount, assetIdLowercase, charityAddress); + elizaLogger.log("Charity Transfer successful:", { + address: charityAddress, + transactionUrl: transfer.getTransactionLink(), + }); + await appendTransactionsToCsv([{ + address: charityAddress, + amount: charityAmount, + status: "Success", + errorCode: null, + transactionUrl: transfer.getTransactionLink(), + }]); + } + const trade: Trade = await wallet.createTrade(tradeParams); elizaLogger.log("Trade initiated:", trade.toString()); - // Wait for the trade to complete await trade.wait(); - const transactionUrl = transfer.getTransactionLink(); - elizaLogger.log("Transfer successful:", { - address: charityAddress, - transactionUrl, - }); elizaLogger.log("Trade completed successfully:", trade.toString()); - await appendTransactionsToCsv([{ - address: charityAddress, - amount: charityAmount, - status: "Success", - errorCode: null, - transactionUrl, - }]); await appendTradeToCsv(trade); return { trade, @@ -168,7 +174,7 @@ export async function appendTradeToCsv(trade: Trade) { export async function appendTransactionsToCsv(transactions: Transaction[]) { try { const csvWriter = createArrayCsvWriter({ - path: csvFilePath, + path: transactionCsvFilePath, header: [ "Address", "Amount", @@ -194,6 +200,55 @@ export async function appendTransactionsToCsv(transactions: Transaction[]) { elizaLogger.error("Error writing transactions to CSV:", error); } } +// create a function to append webhooks to a csv +export async function appendWebhooksToCsv(webhooks: Webhook[]) { + try { + // Ensure the CSV file exists + if (!fs.existsSync(webhookCsvFilePath)) { + elizaLogger.warn("CSV file not found. Creating a new one."); + const csvWriter = createArrayCsvWriter({ + path: webhookCsvFilePath, + header: [ + "Webhook ID", + "Network ID", + "Event Type", + "Event Filters", + "Event Type Filter", + "Notification URI", + ], + }); + await csvWriter.writeRecords([]); // Create an empty file with headers + elizaLogger.log("New CSV file created with headers."); + } + const csvWriter = createArrayCsvWriter({ + path: webhookCsvFilePath, + header: [ + "Webhook ID", + "Network ID", + "Event Type", + "Event Filters", + "Event Type Filter", + "Notification URI", + ], + append: true, + }); + + const formattedWebhooks = webhooks.map((webhook) => [ + webhook.getId(), + webhook.getNetworkId(), + webhook.getEventType(), + JSON.stringify(webhook.getEventFilters()), + JSON.stringify(webhook.getEventTypeFilter()), + webhook.getNotificationURI(), + ]); + + elizaLogger.log("Writing webhooks to CSV:", formattedWebhooks); + await csvWriter.writeRecords(formattedWebhooks); + elizaLogger.log("All webhooks written to CSV successfully."); + } catch (error) { + elizaLogger.error("Error writing webhooks to CSV:", error); + } +} /** * Updates a key-value pair in character.settings.secrets. @@ -300,9 +355,11 @@ export async function getWalletDetails( amount: balance[1].toString(), })); - const transactions =[]; - - const formattedTransactions = transactions.map((transaction) => { + // Fetch the wallet's recent transactions + const walletAddress = await wallet.getDefaultAddress(); + const transactions = await walletAddress.listTransactions(); + const transactionsData = transactions?.data ?? []; + const formattedTransactions = transactionsData.map((transaction) => { const content = transaction.content(); return { timestamp: content.block_timestamp || "N/A", @@ -333,29 +390,50 @@ export async function getWalletDetails( */ export async function executeTransferAndCharityTransfer(wallet: Wallet, amount: number, sourceAsset: string, targetAddress: string, network: string) { const charityAddress = getCharityAddress(network); - const charityAmount = amount * 0.01; - const transferAmount = amount - charityAmount; + const charityAmount = charityAddress ? amount * 0.01 : 0; + const transferAmount = charityAddress ? amount - charityAmount : amount; const assetIdLowercase = sourceAsset.toLowerCase(); - const charityTransfer = await executeTransfer(wallet, charityAmount, assetIdLowercase, charityAddress); - elizaLogger.log("Charity Transfer successful:", charityTransfer.toString()); + + let charityTransfer: Transfer; + if (charityAddress && charityAmount > 0) { + charityTransfer = await executeTransfer(wallet, charityAmount, assetIdLowercase, charityAddress); + elizaLogger.log("Charity Transfer successful:", charityTransfer.toString()); + } + const transferDetails = { amount: transferAmount, assetId: assetIdLowercase, destination: targetAddress, gasless: assetIdLowercase === "usdc" ? true : false, }; - elizaLogger.log("Initiating transfer charity:", transferDetails); + elizaLogger.log("Initiating transfer:", transferDetails); const transfer = await wallet.createTransfer(transferDetails); elizaLogger.log("Transfer initiated:", transfer.toString()); await transfer.wait(); + + let responseText = `Transfer executed successfully: +- Amount: ${transfer.getAmount()} +- Asset: ${assetIdLowercase} +- Destination: ${targetAddress} +- Transaction URL: ${transfer.getTransactionLink() || ""}`; + + if (charityTransfer) { + responseText += ` +- Charity Amount: ${charityTransfer.getAmount()} +- Charity Transaction URL: ${charityTransfer.getTransactionLink() || ""}`; + } else { + responseText += "\n(Note: Charity transfer was not completed)"; + } + + elizaLogger.log(responseText); + return { transfer, charityTransfer, + responseText, } - } - /** * Executes a transfer. * @param {Wallet} wallet - The wallet to use. @@ -371,10 +449,18 @@ export async function executeTransfer(wallet: Wallet, amount: number, sourceAsse destination: targetAddress, gasless: assetIdLowercase === "usdc" ? true : false, }; - elizaLogger.log("Initiating transfer charity:", transferDetails); - const transfer = await wallet.createTransfer(transferDetails); - elizaLogger.log("Charity Transfer initiated:", transfer.toString()); - await transfer.wait(); + elizaLogger.log("Initiating transfer:", transferDetails); + let transfer: Transfer | undefined; + try { + transfer = await wallet.createTransfer(transferDetails); + elizaLogger.log("Transfer initiated:", transfer.toString()); + await transfer.wait({ + intervalSeconds: 1, + timeoutSeconds: 20, + }); + } catch (error) { + elizaLogger.error("Error executing transfer:", error); + } return transfer; } @@ -384,18 +470,16 @@ export async function executeTransfer(wallet: Wallet, amount: number, sourceAsse * https://www.givedirectly.org/crypto/?_gl=1*va5e6k*_gcl_au*MTM1NDUzNTk5Mi4xNzMzMDczNjA3*_ga*OTIwMDMwNTMwLjE3MzMwNzM2MDg.*_ga_GV8XF9FJ16*MTczMzA3MzYwNy4xLjEuMTczMzA3MzYyMi40NS4wLjA. * @param {string} network - The network to use. */ -export function getCharityAddress(network: string): string { - let charityAddress; +export function getCharityAddress(network: string): string | null { + let charityAddress = null; if (network === "base") { - charityAddress = "0x1234567890123456789012345678901234567890"; + charityAddress = "0x750EF1D7a0b4Ab1c97B7A623D7917CcEb5ea779C"; } else if (network === "sol") { charityAddress = "pWvDXKu6CpbKKvKQkZvDA66hgsTB6X2AgFxksYogHLV"; } else if (network === "eth") { charityAddress = "0x750EF1D7a0b4Ab1c97B7A623D7917CcEb5ea779C"; - } else if (network === "arb") { - charityAddress = "0x1234567890123456789012345678901234567890"; - } else if (network === "pol") { - charityAddress = "0x1234567890123456789012345678901234567890"; + } else { + return null; } return charityAddress; } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 5003fdbf76..3da56717d0 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -625,7 +625,7 @@ importers: version: 10.0.0 ai: specifier: 3.4.33 - version: 3.4.33(openai@4.73.0(encoding@0.1.13)(zod@3.23.8))(react@18.3.1)(sswr@2.1.0(svelte@5.5.3))(svelte@5.5.3)(vue@3.5.13(typescript@5.6.3))(zod@3.23.8) + version: 3.4.33(openai@4.73.0(encoding@0.1.13)(zod@3.23.8))(react@18.3.1)(sswr@2.1.0(svelte@5.6.1))(svelte@5.6.1)(vue@3.5.13(typescript@5.6.3))(zod@3.23.8) anthropic-vertex-ai: specifier: 1.0.2 version: 1.0.2(encoding@0.1.13)(zod@3.23.8) @@ -1808,26 +1808,22 @@ packages: resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} engines: {node: '>=6.9.0'} - '@babel/compat-data@7.26.2': - resolution: {integrity: sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==} + '@babel/compat-data@7.26.3': + resolution: {integrity: sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==} engines: {node: '>=6.9.0'} '@babel/core@7.26.0': resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==} engines: {node: '>=6.9.0'} - '@babel/generator@7.26.2': - resolution: {integrity: sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==} + '@babel/generator@7.26.3': + resolution: {integrity: sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==} engines: {node: '>=6.9.0'} '@babel/helper-annotate-as-pure@7.25.9': resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==} engines: {node: '>=6.9.0'} - '@babel/helper-builder-binary-assignment-operator-visitor@7.25.9': - resolution: {integrity: sha512-C47lC7LIDCnz0h4vai/tpNOI95tCd5ZT3iBt/DBH5lXKHZsyNQv18yf1wIIg2ntiQNgmAvA+DgZ82iW8Qdym8g==} - engines: {node: '>=6.9.0'} - '@babel/helper-compilation-targets@7.25.9': resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==} engines: {node: '>=6.9.0'} @@ -1838,8 +1834,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0 - '@babel/helper-create-regexp-features-plugin@7.25.9': - resolution: {integrity: sha512-ORPNZ3h6ZRkOyAa/SaHU+XsLZr0UQzRwuDQ0cczIA17nAzZ+85G5cVkOJIj7QavLZGSe8QXUmNFxSZzjcZF9bw==} + '@babel/helper-create-regexp-features-plugin@7.26.3': + resolution: {integrity: sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 @@ -1883,10 +1879,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0 - '@babel/helper-simple-access@7.25.9': - resolution: {integrity: sha512-c6WHXuiaRsJTyHYLJV75t9IqsmTbItYfdj99PnzYGQZkYKvan5/2jKJ7gu31J3/BJ/A18grImSPModuyG/Eo0Q==} - engines: {node: '>=6.9.0'} - '@babel/helper-skip-transparent-expression-wrappers@7.25.9': resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==} engines: {node: '>=6.9.0'} @@ -1911,8 +1903,8 @@ packages: resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==} engines: {node: '>=6.9.0'} - '@babel/parser@7.26.2': - resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==} + '@babel/parser@7.26.3': + resolution: {integrity: sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==} engines: {node: '>=6.0.0'} hasBin: true @@ -2144,8 +2136,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-exponentiation-operator@7.25.9': - resolution: {integrity: sha512-KRhdhlVk2nObA5AYa7QMgTMTVJdfHprfpAk4DjZVtllqRg9qarilstTKEhpVjyt+Npi8ThRyiV8176Am3CodPA==} + '@babel/plugin-transform-exponentiation-operator@7.26.3': + resolution: {integrity: sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2198,8 +2190,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-modules-commonjs@7.25.9': - resolution: {integrity: sha512-dwh2Ol1jWwL2MgkCzUSOvfmKElqQcuswAZypBSUsScMXvgdT8Ekq5YA6TtqpTVWH+4903NmboMuH1o9i8Rxlyg==} + '@babel/plugin-transform-modules-commonjs@7.26.3': + resolution: {integrity: sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2384,8 +2376,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-typescript@7.25.9': - resolution: {integrity: sha512-7PbZQZP50tzv2KGGnhh82GSyMB01yKY9scIjf1a+GfZCtInOWqUH5+1EBU4t9fyR5Oykkkc9vFTs4OHrhHXljQ==} + '@babel/plugin-transform-typescript@7.26.3': + resolution: {integrity: sha512-6+5hpdr6mETwSKjmJUdYw0EIkATiQhnELWlE3kJFBwSg/BGIVwVaVbX+gOXBCdc7Ln1RXZxyWGecIXhUfnl7oA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2425,8 +2417,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 - '@babel/preset-react@7.25.9': - resolution: {integrity: sha512-D3to0uSPiWE7rBrdIICCd0tJSIGpLaaGptna2+w7Pft5xMqLpA1sz99DK5TZ1TjGbdQ/VI1eCSZ06dv3lT4JOw==} + '@babel/preset-react@7.26.3': + resolution: {integrity: sha512-Nl03d6T9ky516DGK2YMxrTqvnpUW63TnJMOMonj+Zae0JiPC5BC9xPMSL6L8fiSpA5vP88qfygavVQvnLp+6Cw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2445,20 +2437,20 @@ packages: resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==} engines: {node: '>=6.9.0'} - '@babel/standalone@7.26.2': - resolution: {integrity: sha512-i2VbegsRfwa9yq3xmfDX3tG2yh9K0cCqwpSyVG2nPxifh0EOnucAZUeO/g4lW2Zfg03aPJNtPfxQbDHzXc7H+w==} + '@babel/standalone@7.26.3': + resolution: {integrity: sha512-igZRkDAv14+pqOCUIXjJG/ammWHmUIp+JBvMJ3/KnolyjxOF35B6mN5IRdryhaYZ9R9nibsFkStPsAKTThgF3A==} engines: {node: '>=6.9.0'} '@babel/template@7.25.9': resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==} engines: {node: '>=6.9.0'} - '@babel/traverse@7.25.9': - resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==} + '@babel/traverse@7.26.3': + resolution: {integrity: sha512-yTmc8J+Sj8yLzwr4PD5Xb/WF3bOYu2C2OoSZPzbuqRm4n98XirsbzaX+GloeO376UnSYIYJ4NCanwV5/ugZkwA==} engines: {node: '>=6.9.0'} - '@babel/types@7.26.0': - resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==} + '@babel/types@7.26.3': + resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==} engines: {node: '>=6.9.0'} '@bcoe/v8-coverage@0.2.3': @@ -9542,8 +9534,8 @@ packages: resolution: {integrity: sha512-7ccSEJFDFO7exFbO6NRyC+xH8/mZ1GZGG2xxx9iHxZWcjUjJpjWxIMw3cofAKcueZ6DATiukmmprD7yavQHOyQ==} engines: {node: '>=14'} - gopd@1.1.0: - resolution: {integrity: sha512-FQoVQnqcdk4hVM4JN1eromaun4iuS34oStkdlLENLdpULsuQcTyXj8w7ayhuUfPwEYZ1ZOooOTT6fdA9Vmx/RA==} + gopd@1.2.0: + resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} engines: {node: '>= 0.4'} got@11.8.6: @@ -14425,8 +14417,8 @@ packages: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} engines: {node: '>= 0.4'} - svelte@5.5.3: - resolution: {integrity: sha512-0j7XTSg5iXcLNCFcEsIZPtHO7SQeE0KgMcyF1K4K7HkjdKVPumz7dnxeXq5lGJRHfVAMZKqpEJ46rPKPKRJ57Q==} + svelte@5.6.1: + resolution: {integrity: sha512-Ot+Ata5PgqQsMV3xuBKxsEFzqZbffG4WYM93eq7USApxXq2ohQ+5LLhlakK1pygifudGTa230Pm3o2oM0wNsDA==} engines: {node: '>=18'} svg-parser@2.0.4: @@ -15912,13 +15904,13 @@ snapshots: transitivePeerDependencies: - zod - '@ai-sdk/svelte@0.0.57(svelte@5.5.3)(zod@3.23.8)': + '@ai-sdk/svelte@0.0.57(svelte@5.6.1)(zod@3.23.8)': dependencies: '@ai-sdk/provider-utils': 1.0.22(zod@3.23.8) '@ai-sdk/ui-utils': 0.0.50(zod@3.23.8) - sswr: 2.1.0(svelte@5.5.3) + sswr: 2.1.0(svelte@5.6.1) optionalDependencies: - svelte: 5.5.3 + svelte: 5.6.1 transitivePeerDependencies: - zod @@ -16710,20 +16702,20 @@ snapshots: js-tokens: 4.0.0 picocolors: 1.1.1 - '@babel/compat-data@7.26.2': {} + '@babel/compat-data@7.26.3': {} '@babel/core@7.26.0': dependencies: '@ampproject/remapping': 2.3.0 '@babel/code-frame': 7.26.2 - '@babel/generator': 7.26.2 + '@babel/generator': 7.26.3 '@babel/helper-compilation-targets': 7.25.9 '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) '@babel/helpers': 7.26.0 - '@babel/parser': 7.26.2 + '@babel/parser': 7.26.3 '@babel/template': 7.25.9 - '@babel/traverse': 7.25.9 - '@babel/types': 7.26.0 + '@babel/traverse': 7.26.3 + '@babel/types': 7.26.3 convert-source-map: 2.0.0 debug: 4.3.7(supports-color@5.5.0) gensync: 1.0.0-beta.2 @@ -16732,28 +16724,21 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/generator@7.26.2': + '@babel/generator@7.26.3': dependencies: - '@babel/parser': 7.26.2 - '@babel/types': 7.26.0 + '@babel/parser': 7.26.3 + '@babel/types': 7.26.3 '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 jsesc: 3.0.2 '@babel/helper-annotate-as-pure@7.25.9': dependencies: - '@babel/types': 7.26.0 - - '@babel/helper-builder-binary-assignment-operator-visitor@7.25.9': - dependencies: - '@babel/traverse': 7.25.9 - '@babel/types': 7.26.0 - transitivePeerDependencies: - - supports-color + '@babel/types': 7.26.3 '@babel/helper-compilation-targets@7.25.9': dependencies: - '@babel/compat-data': 7.26.2 + '@babel/compat-data': 7.26.3 '@babel/helper-validator-option': 7.25.9 browserslist: 4.24.2 lru-cache: 5.1.1 @@ -16767,12 +16752,12 @@ snapshots: '@babel/helper-optimise-call-expression': 7.25.9 '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0) '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.26.3 semver: 6.3.1 transitivePeerDependencies: - supports-color - '@babel/helper-create-regexp-features-plugin@7.25.9(@babel/core@7.26.0)': + '@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-annotate-as-pure': 7.25.9 @@ -16792,15 +16777,15 @@ snapshots: '@babel/helper-member-expression-to-functions@7.25.9': dependencies: - '@babel/traverse': 7.25.9 - '@babel/types': 7.26.0 + '@babel/traverse': 7.26.3 + '@babel/types': 7.26.3 transitivePeerDependencies: - supports-color '@babel/helper-module-imports@7.25.9': dependencies: - '@babel/traverse': 7.25.9 - '@babel/types': 7.26.0 + '@babel/traverse': 7.26.3 + '@babel/types': 7.26.3 transitivePeerDependencies: - supports-color @@ -16809,13 +16794,13 @@ snapshots: '@babel/core': 7.26.0 '@babel/helper-module-imports': 7.25.9 '@babel/helper-validator-identifier': 7.25.9 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.26.3 transitivePeerDependencies: - supports-color '@babel/helper-optimise-call-expression@7.25.9': dependencies: - '@babel/types': 7.26.0 + '@babel/types': 7.26.3 '@babel/helper-plugin-utils@7.25.9': {} @@ -16824,7 +16809,7 @@ snapshots: '@babel/core': 7.26.0 '@babel/helper-annotate-as-pure': 7.25.9 '@babel/helper-wrap-function': 7.25.9 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.26.3 transitivePeerDependencies: - supports-color @@ -16833,21 +16818,14 @@ snapshots: '@babel/core': 7.26.0 '@babel/helper-member-expression-to-functions': 7.25.9 '@babel/helper-optimise-call-expression': 7.25.9 - '@babel/traverse': 7.25.9 - transitivePeerDependencies: - - supports-color - - '@babel/helper-simple-access@7.25.9': - dependencies: - '@babel/traverse': 7.25.9 - '@babel/types': 7.26.0 + '@babel/traverse': 7.26.3 transitivePeerDependencies: - supports-color '@babel/helper-skip-transparent-expression-wrappers@7.25.9': dependencies: - '@babel/traverse': 7.25.9 - '@babel/types': 7.26.0 + '@babel/traverse': 7.26.3 + '@babel/types': 7.26.3 transitivePeerDependencies: - supports-color @@ -16860,25 +16838,25 @@ snapshots: '@babel/helper-wrap-function@7.25.9': dependencies: '@babel/template': 7.25.9 - '@babel/traverse': 7.25.9 - '@babel/types': 7.26.0 + '@babel/traverse': 7.26.3 + '@babel/types': 7.26.3 transitivePeerDependencies: - supports-color '@babel/helpers@7.26.0': dependencies: '@babel/template': 7.25.9 - '@babel/types': 7.26.0 + '@babel/types': 7.26.3 - '@babel/parser@7.26.2': + '@babel/parser@7.26.3': dependencies: - '@babel/types': 7.26.0 + '@babel/types': 7.26.3 '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.26.3 transitivePeerDependencies: - supports-color @@ -16905,7 +16883,7 @@ snapshots: dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.26.3 transitivePeerDependencies: - supports-color @@ -17011,7 +16989,7 @@ snapshots: '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0) + '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.0)': @@ -17024,7 +17002,7 @@ snapshots: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0) - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.26.3 transitivePeerDependencies: - supports-color @@ -17070,7 +17048,7 @@ snapshots: '@babel/helper-compilation-targets': 7.25.9 '@babel/helper-plugin-utils': 7.25.9 '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0) - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.26.3 globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -17089,7 +17067,7 @@ snapshots: '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0) + '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.0)': @@ -17100,7 +17078,7 @@ snapshots: '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0) + '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.0)': @@ -17108,13 +17086,10 @@ snapshots: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-exponentiation-operator@7.25.9(@babel/core@7.26.0)': + '@babel/plugin-transform-exponentiation-operator@7.26.3(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.25.9 '@babel/helper-plugin-utils': 7.25.9 - transitivePeerDependencies: - - supports-color '@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.0)': dependencies: @@ -17134,7 +17109,7 @@ snapshots: '@babel/core': 7.26.0 '@babel/helper-compilation-targets': 7.25.9 '@babel/helper-plugin-utils': 7.25.9 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.26.3 transitivePeerDependencies: - supports-color @@ -17166,12 +17141,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-modules-commonjs@7.25.9(@babel/core@7.26.0)': + '@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-simple-access': 7.25.9 transitivePeerDependencies: - supports-color @@ -17181,7 +17155,7 @@ snapshots: '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) '@babel/helper-plugin-utils': 7.25.9 '@babel/helper-validator-identifier': 7.25.9 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.26.3 transitivePeerDependencies: - supports-color @@ -17196,7 +17170,7 @@ snapshots: '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0) + '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.0)': @@ -17303,7 +17277,7 @@ snapshots: '@babel/helper-module-imports': 7.25.9 '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0) - '@babel/types': 7.26.0 + '@babel/types': 7.26.3 transitivePeerDependencies: - supports-color @@ -17322,7 +17296,7 @@ snapshots: '@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0) + '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.0)': @@ -17370,7 +17344,7 @@ snapshots: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-typescript@7.25.9(@babel/core@7.26.0)': + '@babel/plugin-transform-typescript@7.26.3(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-annotate-as-pure': 7.25.9 @@ -17389,24 +17363,24 @@ snapshots: '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0) + '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0) + '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 - '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0) + '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0) '@babel/helper-plugin-utils': 7.25.9 '@babel/preset-env@7.26.0(@babel/core@7.26.0)': dependencies: - '@babel/compat-data': 7.26.2 + '@babel/compat-data': 7.26.3 '@babel/core': 7.26.0 '@babel/helper-compilation-targets': 7.25.9 '@babel/helper-plugin-utils': 7.25.9 @@ -17434,7 +17408,7 @@ snapshots: '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-exponentiation-operator': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-exponentiation-operator': 7.26.3(@babel/core@7.26.0) '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.0) @@ -17443,7 +17417,7 @@ snapshots: '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-modules-commonjs': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.0) '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0) @@ -17483,10 +17457,10 @@ snapshots: dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/types': 7.26.0 + '@babel/types': 7.26.3 esutils: 2.0.3 - '@babel/preset-react@7.25.9(@babel/core@7.26.0)': + '@babel/preset-react@7.26.3(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 @@ -17504,8 +17478,8 @@ snapshots: '@babel/helper-plugin-utils': 7.25.9 '@babel/helper-validator-option': 7.25.9 '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-modules-commonjs': 7.25.9(@babel/core@7.26.0) - '@babel/plugin-transform-typescript': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.0) + '@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.26.0) transitivePeerDependencies: - supports-color @@ -17518,27 +17492,27 @@ snapshots: dependencies: regenerator-runtime: 0.14.1 - '@babel/standalone@7.26.2': {} + '@babel/standalone@7.26.3': {} '@babel/template@7.25.9': dependencies: '@babel/code-frame': 7.26.2 - '@babel/parser': 7.26.2 - '@babel/types': 7.26.0 + '@babel/parser': 7.26.3 + '@babel/types': 7.26.3 - '@babel/traverse@7.25.9': + '@babel/traverse@7.26.3': dependencies: '@babel/code-frame': 7.26.2 - '@babel/generator': 7.26.2 - '@babel/parser': 7.26.2 + '@babel/generator': 7.26.3 + '@babel/parser': 7.26.3 '@babel/template': 7.25.9 - '@babel/types': 7.26.0 + '@babel/types': 7.26.3 debug: 4.3.7(supports-color@5.5.0) globals: 11.12.0 transitivePeerDependencies: - supports-color - '@babel/types@7.26.0': + '@babel/types@7.26.3': dependencies: '@babel/helper-string-parser': 7.25.9 '@babel/helper-validator-identifier': 7.25.9 @@ -18161,15 +18135,15 @@ snapshots: '@docusaurus/babel@3.6.3(@swc/core@1.10.0(@swc/helpers@0.5.15))(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)': dependencies: '@babel/core': 7.26.0 - '@babel/generator': 7.26.2 + '@babel/generator': 7.26.3 '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.0) '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.26.0) '@babel/preset-env': 7.26.0(@babel/core@7.26.0) - '@babel/preset-react': 7.25.9(@babel/core@7.26.0) + '@babel/preset-react': 7.26.3(@babel/core@7.26.0) '@babel/preset-typescript': 7.26.0(@babel/core@7.26.0) '@babel/runtime': 7.26.0 '@babel/runtime-corejs3': 7.26.0 - '@babel/traverse': 7.25.9 + '@babel/traverse': 7.26.3 '@docusaurus/logger': 3.6.3 '@docusaurus/utils': 3.6.3(@swc/core@1.10.0(@swc/helpers@0.5.15))(acorn@8.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) babel-plugin-dynamic-import-node: 2.3.3 @@ -20453,7 +20427,7 @@ snapshots: '@octokit/request-error': 3.0.3 '@octokit/types': 9.3.2 is-plain-object: 5.0.0 - node-fetch: 2.6.7(encoding@0.1.13) + node-fetch: 2.7.0(encoding@0.1.13) universal-user-agent: 6.0.1 transitivePeerDependencies: - encoding @@ -21934,7 +21908,7 @@ snapshots: '@svgr/hast-util-to-babel-ast@8.0.0': dependencies: - '@babel/types': 7.26.0 + '@babel/types': 7.26.3 entities: 4.5.0 '@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.6.3))': @@ -21961,7 +21935,7 @@ snapshots: '@babel/core': 7.26.0 '@babel/plugin-transform-react-constant-elements': 7.25.9(@babel/core@7.26.0) '@babel/preset-env': 7.26.0(@babel/core@7.26.0) - '@babel/preset-react': 7.25.9(@babel/core@7.26.0) + '@babel/preset-react': 7.26.3(@babel/core@7.26.0) '@babel/preset-typescript': 7.26.0(@babel/core@7.26.0) '@svgr/core': 8.1.0(typescript@5.6.3) '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.6.3)) @@ -22077,24 +22051,24 @@ snapshots: '@types/babel__core@7.20.5': dependencies: - '@babel/parser': 7.26.2 - '@babel/types': 7.26.0 + '@babel/parser': 7.26.3 + '@babel/types': 7.26.3 '@types/babel__generator': 7.6.8 '@types/babel__template': 7.4.4 '@types/babel__traverse': 7.20.6 '@types/babel__generator@7.6.8': dependencies: - '@babel/types': 7.26.0 + '@babel/types': 7.26.3 '@types/babel__template@7.4.4': dependencies: - '@babel/parser': 7.26.2 - '@babel/types': 7.26.0 + '@babel/parser': 7.26.3 + '@babel/types': 7.26.3 '@types/babel__traverse@7.20.6': dependencies: - '@babel/types': 7.26.0 + '@babel/types': 7.26.3 '@types/better-sqlite3@7.6.12': dependencies: @@ -22873,7 +22847,7 @@ snapshots: '@vue/compiler-core@3.5.13': dependencies: - '@babel/parser': 7.26.2 + '@babel/parser': 7.26.3 '@vue/shared': 3.5.13 entities: 4.5.0 estree-walker: 2.0.2 @@ -22886,7 +22860,7 @@ snapshots: '@vue/compiler-sfc@3.5.13': dependencies: - '@babel/parser': 7.26.2 + '@babel/parser': 7.26.3 '@vue/compiler-core': 3.5.13 '@vue/compiler-dom': 3.5.13 '@vue/compiler-ssr': 3.5.13 @@ -23112,13 +23086,13 @@ snapshots: clean-stack: 2.2.0 indent-string: 4.0.0 - ai@3.4.33(openai@4.73.0(encoding@0.1.13)(zod@3.23.8))(react@18.3.1)(sswr@2.1.0(svelte@5.5.3))(svelte@5.5.3)(vue@3.5.13(typescript@5.6.3))(zod@3.23.8): + ai@3.4.33(openai@4.73.0(encoding@0.1.13)(zod@3.23.8))(react@18.3.1)(sswr@2.1.0(svelte@5.6.1))(svelte@5.6.1)(vue@3.5.13(typescript@5.6.3))(zod@3.23.8): dependencies: '@ai-sdk/provider': 0.0.26 '@ai-sdk/provider-utils': 1.0.22(zod@3.23.8) '@ai-sdk/react': 0.0.70(react@18.3.1)(zod@3.23.8) '@ai-sdk/solid': 0.0.54(zod@3.23.8) - '@ai-sdk/svelte': 0.0.57(svelte@5.5.3)(zod@3.23.8) + '@ai-sdk/svelte': 0.0.57(svelte@5.6.1)(zod@3.23.8) '@ai-sdk/ui-utils': 0.0.50(zod@3.23.8) '@ai-sdk/vue': 0.0.59(vue@3.5.13(typescript@5.6.3))(zod@3.23.8) '@opentelemetry/api': 1.9.0 @@ -23130,8 +23104,8 @@ snapshots: optionalDependencies: openai: 4.73.0(encoding@0.1.13)(zod@3.23.8) react: 18.3.1 - sswr: 2.1.0(svelte@5.5.3) - svelte: 5.5.3 + sswr: 2.1.0(svelte@5.6.1) + svelte: 5.6.1 zod: 3.23.8 transitivePeerDependencies: - solid-js @@ -23466,13 +23440,13 @@ snapshots: babel-plugin-jest-hoist@29.6.3: dependencies: '@babel/template': 7.25.9 - '@babel/types': 7.26.0 + '@babel/types': 7.26.3 '@types/babel__core': 7.20.5 '@types/babel__traverse': 7.20.6 babel-plugin-polyfill-corejs2@0.4.12(@babel/core@7.26.0): dependencies: - '@babel/compat-data': 7.26.2 + '@babel/compat-data': 7.26.3 '@babel/core': 7.26.0 '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0) semver: 6.3.1 @@ -25085,7 +25059,7 @@ snapshots: dependencies: es-define-property: 1.0.0 es-errors: 1.3.0 - gopd: 1.1.0 + gopd: 1.2.0 define-lazy-prop@2.0.0: {} @@ -26508,9 +26482,7 @@ snapshots: - encoding - supports-color - gopd@1.1.0: - dependencies: - get-intrinsic: 1.2.4 + gopd@1.2.0: {} got@11.8.6: dependencies: @@ -27332,7 +27304,7 @@ snapshots: istanbul-lib-instrument@5.2.1: dependencies: '@babel/core': 7.26.0 - '@babel/parser': 7.26.2 + '@babel/parser': 7.26.3 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 semver: 6.3.1 @@ -27342,7 +27314,7 @@ snapshots: istanbul-lib-instrument@6.0.3: dependencies: '@babel/core': 7.26.0 - '@babel/parser': 7.26.2 + '@babel/parser': 7.26.3 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 semver: 7.6.3 @@ -27718,10 +27690,10 @@ snapshots: jest-snapshot@29.7.0: dependencies: '@babel/core': 7.26.0 - '@babel/generator': 7.26.2 + '@babel/generator': 7.26.3 '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0) '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0) - '@babel/types': 7.26.0 + '@babel/types': 7.26.3 '@jest/expect-utils': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 @@ -28442,8 +28414,8 @@ snapshots: magicast@0.3.5: dependencies: - '@babel/parser': 7.26.2 - '@babel/types': 7.26.0 + '@babel/parser': 7.26.3 + '@babel/types': 7.26.3 source-map-js: 1.2.1 make-dir@2.1.0: @@ -32190,7 +32162,7 @@ snapshots: es-errors: 1.3.0 function-bind: 1.1.2 get-intrinsic: 1.2.4 - gopd: 1.1.0 + gopd: 1.2.0 has-property-descriptors: 1.0.2 setprototypeof@1.1.0: {} @@ -32521,9 +32493,9 @@ snapshots: dependencies: minipass: 7.1.2 - sswr@2.1.0(svelte@5.5.3): + sswr@2.1.0(svelte@5.6.1): dependencies: - svelte: 5.5.3 + svelte: 5.6.1 swrev: 4.0.0 stack-utils@2.0.6: @@ -32722,7 +32694,7 @@ snapshots: supports-preserve-symlinks-flag@1.0.0: {} - svelte@5.5.3: + svelte@5.6.1: dependencies: '@ampproject/remapping': 2.3.0 '@jridgewell/sourcemap-codec': 1.5.0 @@ -33448,8 +33420,8 @@ snapshots: untyped@1.5.1: dependencies: '@babel/core': 7.26.0 - '@babel/standalone': 7.26.2 - '@babel/types': 7.26.0 + '@babel/standalone': 7.26.3 + '@babel/types': 7.26.3 defu: 6.1.4 jiti: 2.4.0 mri: 1.2.0