@elizaos/ui 2.0.0-alpha.382 → 2.0.0-alpha.383

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/ui",
3
- "version": "2.0.0-alpha.382",
3
+ "version": "2.0.0-alpha.383",
4
4
  "description": "Shared UI primitives, composites, and layout utilities for elizaOS apps.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -131,7 +131,7 @@ async function resolveExactKnowledgeValueForChat(runtime, message) {
131
131
  const PROVIDER_ISSUE_CHAT_REPLY = "Sorry, I'm having a provider issue";
132
132
  const INSUFFICIENT_CREDITS_CHAT_REPLY = "Eliza Cloud credits are depleted. Top up the cloud balance and try again.";
133
133
  const GENERIC_NO_RESPONSE_CHAT_REPLY = PROVIDER_ISSUE_CHAT_REPLY;
134
- const DEFAULT_CHAT_GENERATION_TIMEOUT_MS = 90_000;
134
+ const DEFAULT_CHAT_GENERATION_TIMEOUT_MS = 180_000;
135
135
  const NON_EXECUTABLE_FALLBACK_ACTIONS = new Set(["REPLY", "NONE", "IGNORE"]);
136
136
  function isExecutableFallbackAction(action) {
137
137
  return !NON_EXECUTABLE_FALLBACK_ACTIONS.has(action.name);