@rpcbase/agents-sdk 0.19.0 → 0.21.0
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/dist/agents-sdk.css +1 -1
- package/dist/api/chat/handler.d.ts.map +1 -1
- package/dist/api/chat/runtimeConfig.d.ts +6 -0
- package/dist/api/chat/runtimeConfig.d.ts.map +1 -1
- package/dist/api/chat/tools.d.ts +26 -0
- package/dist/api/chat/tools.d.ts.map +1 -1
- package/dist/api-catalog-search.d.ts +48 -0
- package/dist/api-catalog-search.d.ts.map +1 -0
- package/dist/api-catalog-search.js +271 -0
- package/dist/client-routes.browser.js +1 -1
- package/dist/client-routes.js +1 -1
- package/dist/components/ai-elements/prompt-input.d.ts.map +1 -1
- package/dist/components/ai-elements/tool.d.ts.map +1 -1
- package/dist/components/document.d.ts.map +1 -1
- package/dist/components/elements/prompt-input.d.ts.map +1 -1
- package/dist/components/elements/response.d.ts +1 -1
- package/dist/components/elements/response.d.ts.map +1 -1
- package/dist/components/icons.d.ts +0 -3
- package/dist/components/icons.d.ts.map +1 -1
- package/dist/components/image-editor.d.ts.map +1 -1
- package/dist/components/messages.d.ts.map +1 -1
- package/dist/components/preview-attachment.d.ts.map +1 -1
- package/dist/components/sidebar-history-item.d.ts.map +1 -1
- package/dist/components/sidebar-history.d.ts.map +1 -1
- package/dist/components/spinner.d.ts +6 -0
- package/dist/components/spinner.d.ts.map +1 -0
- package/dist/components/submit-button.d.ts.map +1 -1
- package/dist/components/version-footer.d.ts.map +1 -1
- package/dist/components/weather.d.ts +1 -0
- package/dist/components/weather.d.ts.map +1 -1
- package/dist/{data-stream-handler-B6PCvnyX.js → data-stream-handler-BbCmRDVC.js} +6057 -6187
- package/dist/{data-stream-handler-CFR_3og8.js → data-stream-handler-CwI5YJZh.js} +8234 -8364
- package/dist/{handler-CfmidRGk.js → handler-DS4HXmLA.js} +276 -255
- package/dist/{handler-4LDG9nm7.js → handler-akLHP-CG.js} +532 -511
- package/dist/index.browser.js +1 -1
- package/dist/index.js +1 -1
- package/dist/models/RBAgentsApiCatalogEmbedding.d.ts +17 -0
- package/dist/models/RBAgentsApiCatalogEmbedding.d.ts.map +1 -0
- package/dist/routes.browser.js +1 -1
- package/dist/routes.js +1 -1
- package/dist/runtime.d.ts +2 -2
- package/dist/runtime.d.ts.map +1 -1
- package/dist/runtime.js +1 -1
- package/dist/tailwind-source.js +1 -1
- package/package.json +6 -1
- package/dist/components/ai-elements/loader.d.ts +0 -6
- package/dist/components/ai-elements/loader.d.ts.map +0 -1
- package/dist/components/elements/loader.d.ts +0 -6
- package/dist/components/elements/loader.d.ts.map +0 -1
package/dist/index.browser.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as e, d as t, f as n, h as r, i, m as a, n as o, p as s, r as c, t as l, u } from "./data-stream-handler-
|
|
1
|
+
import { a as e, d as t, f as n, h as r, i, m as a, n as o, p as s, r as c, t as l, u } from "./data-stream-handler-BbCmRDVC.js";
|
|
2
2
|
import { a as d, i as f, n as p, o as m, r as h, s as g, t as _ } from "./models-Bvdwv_p7.js";
|
|
3
3
|
//#region src/index.ts
|
|
4
4
|
var v = () => "hello world";
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as e, d as t, f as n, h as r, i, m as a, n as o, p as s, r as c, t as l, u } from "./data-stream-handler-
|
|
1
|
+
import { a as e, d as t, f as n, h as r, i, m as a, n as o, p as s, r as c, t as l, u } from "./data-stream-handler-CwI5YJZh.js";
|
|
2
2
|
import { a as d, i as f, n as p, o as m, r as h, s as g, t as _ } from "./models-Bvdwv_p7.js";
|
|
3
3
|
//#region src/index.ts
|
|
4
4
|
var v = () => "hello world";
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { z } from "@rpcbase/db";
|
|
2
|
+
import type { Schema as MongooseSchema } from "mongoose";
|
|
3
|
+
export declare const RB_AGENTS_API_CATALOG_EMBEDDINGS_COLLECTION = "rb_agents_api_catalog_embeddings";
|
|
4
|
+
export declare const ZRBAgentsApiCatalogEmbedding: import("zod").ZodObject<{
|
|
5
|
+
_id: import("zod").ZodString;
|
|
6
|
+
apiId: import("zod").ZodString;
|
|
7
|
+
searchText: import("zod").ZodString;
|
|
8
|
+
sourceHash: import("zod").ZodString;
|
|
9
|
+
embeddingModel: import("zod").ZodString;
|
|
10
|
+
embeddingDimensions: import("zod").ZodNumber;
|
|
11
|
+
embedding: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
12
|
+
createdAt: import("zod").ZodString;
|
|
13
|
+
updatedAt: import("zod").ZodString;
|
|
14
|
+
}, import("zod/v4/core").$strip>;
|
|
15
|
+
export type RBAgentsApiCatalogEmbedding = z.infer<typeof ZRBAgentsApiCatalogEmbedding>;
|
|
16
|
+
export declare const RBAgentsApiCatalogEmbeddingSchema: MongooseSchema;
|
|
17
|
+
//# sourceMappingURL=RBAgentsApiCatalogEmbedding.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RBAgentsApiCatalogEmbedding.d.ts","sourceRoot":"","sources":["../../src/models/RBAgentsApiCatalogEmbedding.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAU,MAAM,aAAa,CAAA;AACvC,OAAO,KAAK,EAAE,MAAM,IAAI,cAAc,EAAE,MAAM,UAAU,CAAA;AAGxD,eAAO,MAAM,2CAA2C,qCAAqC,CAAA;AAE7F,eAAO,MAAM,4BAA4B;;;;;;;;;;gCAUvC,CAAA;AAEF,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAA;AAEtF,eAAO,MAAM,iCAAiC,EAAE,cAc/C,CAAA"}
|
package/dist/routes.browser.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
//#region src/routes.ts
|
|
2
2
|
var e = Object.entries({ .../* @__PURE__ */ Object.assign({
|
|
3
|
-
"./api/chat/handler.ts": () => import("./handler-
|
|
3
|
+
"./api/chat/handler.ts": () => import("./handler-akLHP-CG.js"),
|
|
4
4
|
"./api/chat/messages/handler.ts": () => import("./handler-DkRxnOUN.js"),
|
|
5
5
|
"./api/chat/messages/trailing/handler.ts": () => import("./handler-pmPm2R2f.js"),
|
|
6
6
|
"./api/chat/stream/handler.ts": () => import("./handler-YvSCKKjM.js"),
|
package/dist/routes.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
//#region src/routes.ts
|
|
2
2
|
var e = Object.entries({ .../* @__PURE__ */ Object.assign({
|
|
3
|
-
"./api/chat/handler.ts": () => import("./handler-
|
|
3
|
+
"./api/chat/handler.ts": () => import("./handler-DS4HXmLA.js").then((e) => e.t),
|
|
4
4
|
"./api/chat/messages/handler.ts": () => import("./handler-D63zn0W5.js"),
|
|
5
5
|
"./api/chat/messages/trailing/handler.ts": () => import("./handler-DUaBZkpS.js"),
|
|
6
6
|
"./api/chat/stream/handler.ts": () => import("./handler-Du7LuJB1.js"),
|
package/dist/runtime.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { configureAgentRuntime, getAgentRuntimeConfig, type AgentDefinition, type AgentRuntimeChatMessage, type AgentRuntimeChatModel, type AgentRuntimeConfig, type AgentRuntimeHistoryCompactionConfig, type AgentRuntimeHistoryCompactionInput, type AgentRuntimeHistoryCompactionLimits, type AgentRuntimeHistoryCompactionResult, type AgentRuntimeHistoryCompactionState, type AgentRuntimeIdentity, type AgentRuntimeMode, type AgentRuntimeRunState, type AgentRuntimeRunStateEvent, type AgentRuntimeToolApprovalConfig, type AgentRuntimeToolApprovalDecision, type AgentRuntimeToolApprovalDecisionEvent, type AgentRuntimeToolApprovalDecisionSource, type AgentRuntimeToolApprovalMode, type AgentRuntimeToolApprovalPolicy, type AgentRuntimeToolApprovalResolverInput, type AgentRuntimeToolApprovalReviewerInput, type AgentRuntimeToolApprovalStaticPolicy, type AgentRuntimeToolApprovalTarget, type AgentRuntimeToolRisk, type AgentRuntimeUsageContext, type AgentRuntimeUsageContextInput } from "./api/chat/runtimeConfig";
|
|
1
|
+
import { configureAgentRuntime, getAgentRuntimeConfig, type AgentDefinition, type AgentRuntimeChatMessage, type AgentRuntimeChatModel, type AgentRuntimeConfig, type AgentRuntimeHistoryCompactionConfig, type AgentRuntimeHistoryCompactionInput, type AgentRuntimeHistoryCompactionLimits, type AgentRuntimeHistoryCompactionResult, type AgentRuntimeHistoryCompactionState, type AgentRuntimeIdentity, type AgentRuntimeMode, type AgentRuntimeRunOptions, type AgentRuntimeRunOptionsInput, type AgentRuntimeRunState, type AgentRuntimeRunStateEvent, type AgentRuntimeToolApprovalConfig, type AgentRuntimeToolApprovalDecision, type AgentRuntimeToolApprovalDecisionEvent, type AgentRuntimeToolApprovalDecisionSource, type AgentRuntimeToolApprovalMode, type AgentRuntimeToolApprovalPolicy, type AgentRuntimeToolApprovalResolverInput, type AgentRuntimeToolApprovalReviewerInput, type AgentRuntimeToolApprovalStaticPolicy, type AgentRuntimeToolApprovalTarget, type AgentRuntimeToolRisk, type AgentRuntimeUsageContext, type AgentRuntimeUsageContextInput } from "./api/chat/runtimeConfig";
|
|
2
2
|
import { runAgentLoop, type RunAgentLoopInput, type RunAgentLoopResult } from "./api/chat/handler";
|
|
3
3
|
export type AgentRtsMessagePayload = {
|
|
4
4
|
chatId: string;
|
|
@@ -16,5 +16,5 @@ export type AgentRtsMessageTransport = {
|
|
|
16
16
|
}) => void | Promise<void>;
|
|
17
17
|
};
|
|
18
18
|
export declare const createRtsMessageTransport: () => AgentRtsMessageTransport;
|
|
19
|
-
export { configureAgentRuntime, getAgentRuntimeConfig, runAgentLoop, type AgentDefinition, type AgentRuntimeChatMessage, type AgentRuntimeChatModel, type AgentRuntimeConfig, type AgentRuntimeHistoryCompactionConfig, type AgentRuntimeHistoryCompactionInput, type AgentRuntimeHistoryCompactionLimits, type AgentRuntimeHistoryCompactionResult, type AgentRuntimeHistoryCompactionState, type AgentRuntimeIdentity, type AgentRuntimeMode, type AgentRuntimeRunState, type AgentRuntimeRunStateEvent, type AgentRuntimeToolApprovalConfig, type AgentRuntimeToolApprovalDecision, type AgentRuntimeToolApprovalDecisionEvent, type AgentRuntimeToolApprovalDecisionSource, type AgentRuntimeToolApprovalMode, type AgentRuntimeToolApprovalPolicy, type AgentRuntimeToolApprovalResolverInput, type AgentRuntimeToolApprovalReviewerInput, type AgentRuntimeToolApprovalStaticPolicy, type AgentRuntimeToolApprovalTarget, type AgentRuntimeToolRisk, type AgentRuntimeUsageContext, type AgentRuntimeUsageContextInput, type RunAgentLoopInput, type RunAgentLoopResult, };
|
|
19
|
+
export { configureAgentRuntime, getAgentRuntimeConfig, runAgentLoop, type AgentDefinition, type AgentRuntimeChatMessage, type AgentRuntimeChatModel, type AgentRuntimeConfig, type AgentRuntimeHistoryCompactionConfig, type AgentRuntimeHistoryCompactionInput, type AgentRuntimeHistoryCompactionLimits, type AgentRuntimeHistoryCompactionResult, type AgentRuntimeHistoryCompactionState, type AgentRuntimeIdentity, type AgentRuntimeMode, type AgentRuntimeRunOptions, type AgentRuntimeRunOptionsInput, type AgentRuntimeRunState, type AgentRuntimeRunStateEvent, type AgentRuntimeToolApprovalConfig, type AgentRuntimeToolApprovalDecision, type AgentRuntimeToolApprovalDecisionEvent, type AgentRuntimeToolApprovalDecisionSource, type AgentRuntimeToolApprovalMode, type AgentRuntimeToolApprovalPolicy, type AgentRuntimeToolApprovalResolverInput, type AgentRuntimeToolApprovalReviewerInput, type AgentRuntimeToolApprovalStaticPolicy, type AgentRuntimeToolApprovalTarget, type AgentRuntimeToolRisk, type AgentRuntimeUsageContext, type AgentRuntimeUsageContextInput, type RunAgentLoopInput, type RunAgentLoopResult, };
|
|
20
20
|
//# sourceMappingURL=runtime.d.ts.map
|
package/dist/runtime.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"runtime.d.ts","sourceRoot":"","sources":["../src/runtime.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,qBAAqB,EACrB,qBAAqB,EACrB,KAAK,eAAe,EACpB,KAAK,uBAAuB,EAC5B,KAAK,qBAAqB,EAC1B,KAAK,kBAAkB,EACvB,KAAK,mCAAmC,EACxC,KAAK,kCAAkC,EACvC,KAAK,mCAAmC,EACxC,KAAK,mCAAmC,EACxC,KAAK,kCAAkC,EACvC,KAAK,oBAAoB,EACzB,KAAK,gBAAgB,EACrB,KAAK,oBAAoB,EACzB,KAAK,yBAAyB,EAC9B,KAAK,8BAA8B,EACnC,KAAK,gCAAgC,EACrC,KAAK,qCAAqC,EAC1C,KAAK,sCAAsC,EAC3C,KAAK,4BAA4B,EACjC,KAAK,8BAA8B,EACnC,KAAK,qCAAqC,EAC1C,KAAK,qCAAqC,EAC1C,KAAK,oCAAoC,EACzC,KAAK,8BAA8B,EACnC,KAAK,oBAAoB,EACzB,KAAK,wBAAwB,EAC7B,KAAK,6BAA6B,EACnC,MAAM,0BAA0B,CAAA;AACjC,OAAO,EAAE,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,kBAAkB,EAAE,MAAM,oBAAoB,CAAA;AAGlG,MAAM,MAAM,sBAAsB,GAAG;IACnC,MAAM,EAAE,MAAM,CAAA;IACd,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,IAAI,CAAC,EAAE,OAAO,CAAA;CACf,CAAA;AAED,MAAM,MAAM,wBAAwB,GAAG;IACrC,IAAI,EAAE,aAAa,CAAA;IACnB,OAAO,EAAE,CAAC,KAAK,EAAE;QAAE,QAAQ,EAAE,MAAM,CAAC;QAAC,MAAM,CAAC,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAC;QAAC,OAAO,CAAC,EAAE,OAAO,CAAA;KAAE,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAA;CACpH,CAAA;AAED,eAAO,MAAM,yBAAyB,QAAO,wBAK5C,CAAA;AAED,OAAO,EACL,qBAAqB,EACrB,qBAAqB,EACrB,YAAY,EACZ,KAAK,eAAe,EACpB,KAAK,uBAAuB,EAC5B,KAAK,qBAAqB,EAC1B,KAAK,kBAAkB,EACvB,KAAK,mCAAmC,EACxC,KAAK,kCAAkC,EACvC,KAAK,mCAAmC,EACxC,KAAK,mCAAmC,EACxC,KAAK,kCAAkC,EACvC,KAAK,oBAAoB,EACzB,KAAK,gBAAgB,EACrB,KAAK,oBAAoB,EACzB,KAAK,yBAAyB,EAC9B,KAAK,8BAA8B,EACnC,KAAK,gCAAgC,EACrC,KAAK,qCAAqC,EAC1C,KAAK,sCAAsC,EAC3C,KAAK,4BAA4B,EACjC,KAAK,8BAA8B,EACnC,KAAK,qCAAqC,EAC1C,KAAK,qCAAqC,EAC1C,KAAK,oCAAoC,EACzC,KAAK,8BAA8B,EACnC,KAAK,oBAAoB,EACzB,KAAK,wBAAwB,EAC7B,KAAK,6BAA6B,EAClC,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,GACxB,CAAA"}
|
|
1
|
+
{"version":3,"file":"runtime.d.ts","sourceRoot":"","sources":["../src/runtime.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,qBAAqB,EACrB,qBAAqB,EACrB,KAAK,eAAe,EACpB,KAAK,uBAAuB,EAC5B,KAAK,qBAAqB,EAC1B,KAAK,kBAAkB,EACvB,KAAK,mCAAmC,EACxC,KAAK,kCAAkC,EACvC,KAAK,mCAAmC,EACxC,KAAK,mCAAmC,EACxC,KAAK,kCAAkC,EACvC,KAAK,oBAAoB,EACzB,KAAK,gBAAgB,EACrB,KAAK,sBAAsB,EAC3B,KAAK,2BAA2B,EAChC,KAAK,oBAAoB,EACzB,KAAK,yBAAyB,EAC9B,KAAK,8BAA8B,EACnC,KAAK,gCAAgC,EACrC,KAAK,qCAAqC,EAC1C,KAAK,sCAAsC,EAC3C,KAAK,4BAA4B,EACjC,KAAK,8BAA8B,EACnC,KAAK,qCAAqC,EAC1C,KAAK,qCAAqC,EAC1C,KAAK,oCAAoC,EACzC,KAAK,8BAA8B,EACnC,KAAK,oBAAoB,EACzB,KAAK,wBAAwB,EAC7B,KAAK,6BAA6B,EACnC,MAAM,0BAA0B,CAAA;AACjC,OAAO,EAAE,YAAY,EAAE,KAAK,iBAAiB,EAAE,KAAK,kBAAkB,EAAE,MAAM,oBAAoB,CAAA;AAGlG,MAAM,MAAM,sBAAsB,GAAG;IACnC,MAAM,EAAE,MAAM,CAAA;IACd,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,IAAI,CAAC,EAAE,OAAO,CAAA;CACf,CAAA;AAED,MAAM,MAAM,wBAAwB,GAAG;IACrC,IAAI,EAAE,aAAa,CAAA;IACnB,OAAO,EAAE,CAAC,KAAK,EAAE;QAAE,QAAQ,EAAE,MAAM,CAAC;QAAC,MAAM,CAAC,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAC;QAAC,OAAO,CAAC,EAAE,OAAO,CAAA;KAAE,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAA;CACpH,CAAA;AAED,eAAO,MAAM,yBAAyB,QAAO,wBAK5C,CAAA;AAED,OAAO,EACL,qBAAqB,EACrB,qBAAqB,EACrB,YAAY,EACZ,KAAK,eAAe,EACpB,KAAK,uBAAuB,EAC5B,KAAK,qBAAqB,EAC1B,KAAK,kBAAkB,EACvB,KAAK,mCAAmC,EACxC,KAAK,kCAAkC,EACvC,KAAK,mCAAmC,EACxC,KAAK,mCAAmC,EACxC,KAAK,kCAAkC,EACvC,KAAK,oBAAoB,EACzB,KAAK,gBAAgB,EACrB,KAAK,sBAAsB,EAC3B,KAAK,2BAA2B,EAChC,KAAK,oBAAoB,EACzB,KAAK,yBAAyB,EAC9B,KAAK,8BAA8B,EACnC,KAAK,gCAAgC,EACrC,KAAK,qCAAqC,EAC1C,KAAK,sCAAsC,EAC3C,KAAK,4BAA4B,EACjC,KAAK,8BAA8B,EACnC,KAAK,qCAAqC,EAC1C,KAAK,qCAAqC,EAC1C,KAAK,oCAAoC,EACzC,KAAK,8BAA8B,EACnC,KAAK,oBAAoB,EACzB,KAAK,wBAAwB,EAC7B,KAAK,6BAA6B,EAClC,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,GACxB,CAAA"}
|
package/dist/runtime.js
CHANGED
package/dist/tailwind-source.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const agentsSdkTailwindClasses = "!chunkSize !disableAutoResize !disabled !forceLive !hasReasoningText !hasWeatherTool !isAtBottom !isExpanded !isGoogleModel !isOpenAiModel !isStreaming !isUploading !isVisible !isWeatherToolActive !isWebSearchActive !m-0 !messageId !min-h-0 !onChange !resizeOnNewLinesOnly !shouldShow !visibleHistory **:data-[slot=command-input-wrapper]:h-auto **:text-[11px] **:text-sm ----- --anchor-width --available-height --background --bg --border --breakpoint-toast-mobile --color-background --color-muted-foreground --color-ring --foreground --muted-foreground --primary --radius --ring --sidebar --sidebar-accent --sidebar-accent-foreground --sidebar-border --sidebar-width --sidebar-width-icon --skeleton-width --spread --transform-origin -bottom-12 -dragConstraints -left-10 -left-12 -left-4 -mb-1 -ml-0.5 -ml-4 -mr-0.5 -mt-1 -mt-4 -mx-1 -mx-px -right-12 -right-8 -rotate-45 -space-x-1 -thinking -top-12 -top-4 -translate-x-1/2 -translate-x-px -translate-y-1/2 @ai-sdk/google @ai-sdk/openai @ai-sdk/react @ai-sdk/xai @codemirror/lang-python @codemirror/state @codemirror/theme-one-dark @codemirror/view @rpcbase/api @rpcbase/client @rpcbase/db @rpcbase/router @rpcbase/server @rpcbase/ui @ts-expect-error @xyflow/react [&>*:first-child]:mt-0 [&>*:last-child]:mb-0 [&>*:not(:first-child)]:border-l-0 [&>*:not(:first-child)]:border-t-0 [&>*:not(:first-child)]:rounded-l-md [&>*:not(:first-child)]:rounded-l-none [&>*:not(:first-child)]:rounded-t-none [&>*:not(:last-child)]:rounded-b-none [&>*:not(:last-child)]:rounded-r-md [&>*:not(:last-child)]:rounded-r-none [&>*]:focus-visible:relative [&>*]:focus-visible:z-10 [&>[data-slot=select-trigger]:not([class*='w-'])]:w-fit [&>button]:bg-transparent! [&>button]:border-none! [&>button]:hidden [&>button]:hover:bg-secondary! [&>button]:rounded-md [&>div]:max-w-[80%] [&>div]:pb-0 [&>img]:bg-background [&>img]:p-px [&>img]:ring-1 [&>img]:rounded-full [&>input]:flex-1 [&>kbd]:rounded-[calc(var(--radius)-5px)] [&>pre]:bg-background! [&>pre]:m-0 [&>pre]:p-4 [&>pre]:text-foreground! [&>pre]:text-sm [&>span:last-child]:truncate [&>span]:line-clamp-1 [&>svg+div]:translate-y-[-3px] [&>svg:not([class*='size-'])]:size-3.5 [&>svg:not([class*='size-'])]:size-4 [&>svg]:absolute [&>svg]:left-4 [&>svg]:shrink-0 [&>svg]:size-2.5 [&>svg]:size-3 [&>svg]:size-4 [&>svg]:text-destructive [&>svg]:text-foreground [&>svg]:text-sidebar-accent-foreground [&>svg]:top-4 [&>svg~*]:pl-7 [&_[data-command-group-heading]]:font-medium [&_[data-command-group-heading]]:px-2 [&_[data-command-group-heading]]:py-1.5 [&_[data-command-group-heading]]:text-muted-foreground [&_[data-command-group-heading]]:text-xs [&_[data-command-group]:not([hidden])_~[data-command-group]]:pt-0 [&_[data-command-group]]:px-2 [&_[data-command-input]]:h-12 [&_[data-command-item]]:px-2 [&_[data-command-item]]:py-3 [&_[data-command-item]_svg]:h-5 [&_[data-command-item]_svg]:w-5 [&_[data-slot=command-input-wrapper]_svg]:h-5 [&_[data-slot=command-input-wrapper]_svg]:w-5 [&_button:first-child]:rounded-bl-xl [&_code]:break-words [&_code]:font-mono [&_code]:text-sm [&_code]:whitespace-pre-wrap [&_li]:my-0 [&_ol]:my-1 [&_p]:leading-relaxed [&_p]:my-0 [&_pre]:max-w-full [&_pre]:overflow-x-auto [&_svg:not([class*='size-'])]:size-4 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg]:size-4 [&_table]:w-full [&_ul]:my-1 [--bg:linear-gradient(90deg,transparent_calc(50%-var(--spread)),var(--color-background),transparent_calc(50%+var(--spread)))] [.border-b]:pb-3 [.border-t]:pt-3 [[data-side=left][data-collapsible=offcanvas]_&]:-right-2 [[data-side=left][data-state=collapsed]_&]:cursor-e-resize [[data-side=left]_&]:cursor-w-resize [[data-side=right][data-collapsible=offcanvas]_&]:-left-2 [[data-side=right][data-state=collapsed]_&]:cursor-w-resize [[data-side=right]_&]:cursor-e-resize [agents-sdk:getWeather] [background-repeat:no-repeat,padding-box] a abort abortController abortFromExternalSignal abortSignal abortWhenNoSubscribersMs aborted about absolute absolutely acc accept accepted accepts access according account action actionContext actions active active:bg-sidebar-accent active:text-sidebar-accent-foreground activeChatId activeChatTitle activeConsumer activeId activeIndex activeItem activeStream activeStreams activeTheme activeTools activeWriter actively activityIndicator actual add addListNodes addLocal addSuffix addToolApprovalResponse added adding adding/removing adds adjust adjust-reading-level adjustHeight after after:-inset-2 after:absolute after:inset-y-0 after:left-1/2 after:md:hidden after:w-[2px] again again! agent agent-1 agent-runtime-history-compaction agent-runtime-history-compaction-summary agent-runtime-history-compaction-summary:message-2 agent-runtime-history-compaction-summary:message-4 agentId agentInstructions agentPrompt agentic agents agents-chat-model-selector-trigger agents-chat-sidebar-docked-slot agents-chat-sidebar-floating-panel agents-chat-sidebar-hover-badge agents-chat-sidebar-hover-button agents-chat-sidebar-hover-new-chat-button agents-chat-sidebar-hover-shell agents-chat-sidebar-hover-slot agents-chat-sidebar-hover-zone agents-chat-sidebar-panel agents-chat-sidebar-panel-controls agents-sdk agents-sdk-menu agents-sdk-tooltip agentsSchemas agentsSdkClientRoutes agentsSdkTailwindClasses agents_sdk_tool_approval_signing_v1 agg ai ai/v1 aihubmix alert alertVariants alibaba alibaba-cn align alignItemWithTrigger alignOffset all allow allow-forms allow-popups allow-presentation allow-same-origin allow-scripts allowedChatModelIds allowedIds allowedModelIds allowedReasoningEfforts already alt always always-allow always_allow amazon-bedrock an analyze and animate animate-in animate-pulse animate-spin animated annotations another answer anthropic any anywhere api apiError apiId apiKey api_call apikey app appear append-message appendMessage application/json application/octet-stream application/pdf applies applyToolApprovalDecisionReasons applyToolApprovalStates approval approval-1 approval-requested approval-responded approval/denial approvalConfiguration approvalId approvalPolicies approvalState approvalStates approvalid approvals approve approved approvedToolApprovalResponse approximate are area args aria-disabled aria-disabled:opacity-50 aria-disabled:pointer-events-none aria-expanded:bg-accent aria-expanded:text-foreground aria-hidden aria-label aria-live aria-orientation aria-roledescription aria-selected aria-valuemax aria-valuemin aria-valuenow artifact artifact-close-button artifactDefinition artifactDefinitions artifactKind artifactKinds artifactMetadataByDocumentId artifactSnapshot artifactStatus artifacts artifactsPrompt as asChild ask asked asks aspect-square assertNodeTypeEqual assigned assistant assistant! assistant-1 assistantMessageCreatedAt assistantMessageId assistantMessageMetadata assumptions async asynchronously at atBottom attachment attachmentFiles attachmentLabel attachment_too_large attachments attachments-button attachments-preview attachmentsFromMessage attachmentsRef attr attributeFilter attributes attrs attrs1 attrs2 augmentation auth authIdentity authentication authorized authorizedByKey authorizedByUser auto auto-close auto-scroll autoCollapseTimeoutIdRef autoResume available availableChatModels availableModelIds availableTools avoid await awaitingManualApproval awaiting_approval axis azure b back backdrop-blur-sm backend background backgroundImage backgroundPosition bad_request bad_request:api bad_request:document bad_request:provider badgeVariants base64 basePath basePrompt baseURL baseUrl baseUrlFromEnv based baseten basic basicSetup basis-full batched be because been before behavior being belongs beside bestMatch better between bevel bg-[length:250%_100%,auto] bg-accent bg-background bg-background/70 bg-background/75 bg-background/80 bg-border bg-card bg-clip-text bg-destructive bg-destructive/10 bg-destructive/5 bg-foreground/50 bg-gradient-to-b bg-gradient-to-l bg-gradient-to-t bg-input bg-linear-to-t bg-muted bg-muted-foreground/10 bg-muted-foreground/15 bg-muted-foreground/20 bg-muted-foreground/25 bg-muted-foreground/40 bg-muted/30 bg-muted/40 bg-muted/50 bg-popover bg-primary bg-primary-foreground/10 bg-primary-foreground/20 bg-primary/10 bg-secondary bg-sidebar bg-sidebar-accent bg-sidebar-accent-foreground/10 bg-sidebar-border bg-transparent bgColor big billable billing biome-ignore blank blob blob/data block block-end block-start blockquote body bonjour boolean booleans border border-0 border-0! border-2 border-b border-b-0 border-border border-border/50 border-destructive/25 border-destructive/50 border-input border-l border-l-2 border-l-transparent border-muted border-muted-foreground/20 border-muted-foreground/50 border-none border-none! border-primary/20 border-r border-sidebar-border border-t border-t-0 border-t-0! border-t-primary border-t-transparent border-top-0! border-transparent borderRadius both bottom bottom-0 bottom-2 bottom-4 bottom-6 boundingBox branch branchIndex branches break break-all break-word break-words broken bucket bucketName buffer buffered build buildBaseUrl buildContentFromDocument buildDocumentFromContent buildHeaders buildPathWithTenant buildSummary business but button button-group button-group-separator buttonGroupVariants buttonVariants by bytes c cache cache-control cachedInputTokens calculated call call-1 callProviderMetadata callback callbackOptions calls can canGenerateChatTitle canLoadMore canScrollNext canScrollPrev canSubmitMessage cancel cancelCloseTimer cancelled candidate cannot canvas capacity capped capture capturing carousel carouselRef case catch cause cell cellClass center cerebras change changed changedMessages changes channel charCount characterData characters chars chars1 chars2 chat chat-1 chat-model chat-reasoning-effort chat-title chatDate chatDbMock chatId chatIdentity chatIds chatInitialChatModel chatLoader chatModel chatModels chatToDelete chatUsageRecorded chatUsageStartedAt chatgpt chats chatsToDelete chatting! check checkIfAtBottom checked child childList childRef children children1 children2 childrenArray chunk chunkHeaders chunkResponse chunkSize chunking chunks chunksTotal chutes city cityName clarifying class class-variance-authority className classnames claude clean cleaned cleanedCsv cleanedText cleanup cleanupAfterMs clear clearInput clearLocal clearWaitingStatusTimer clearly client client-side clientHeight clientY clip0_2393_1490 clip0_872_3147 clipPath clipRule clipboard clipboard! close closeActiveStream closeDelay closed closing cloudflare-workers-ai cn code codeArtifact codeDelta codePrompt codeTagProps codemirror collapsed collapsible collectSelectItems color column columns command command-input-wrapper commandDefaultValue commandItemMatches comments commonProps compact compactAgentRuntimeHistory compacted compactedHistory compactedText compactedThroughMessage compactedThroughMessageCreatedAt compactedThroughMessageId compaction compacts complete completeData completeHeaders completeResponse completed complex component components composeRefs composition computeChildEqualityFactor concise condition confidence config configurable configuration configure configureAgentRuntime configured configuredIdentity configuredModels configuredTools confirm connection consequences console consoleEndRef consoleError consoleOpen consoleOutputs const constraints consumer contain container containerClassName containerRef contains content content-type contentHeight contentText contentType contents context contextValue continuation continuations continue continuous control controlledItem controlledProps controller conversation conversationError conversational conversations conversion convertBlobUrlToDataUrl convertToUIMessages convertedFiles cookie cookieHeader coordinates coords copy copy! copyToClipboard correct cortecs cost could couldn count country create createAgentLoopRtsStreamProcessor createAgentToolApproval createChatTools createContext createDecorations createDiffMark createDiffNode createDocument createGoogleGenerativeAI createMessage createNewNode createResumableChatStream createRoot createRtsMessageTransport createRuntimeStream createStreamId createSummaryMessage createTestWriter createTextNode createUrl createXai createZeroUsage created createdAt creates creating creation credentials credit crypto css csv ctx current currentArtifact currentBranch currentChat currentColor currentContent currentConversationTitle currentDecorations currentDocument currentDocuments currentHeight currentHigh currentItems currentLevel currentLow currentMessages currentMetadata currentModelId currentModelIdRef currentNode currentPathname currentPyodideInstance currentSelection currentState currentSuggestions currentTarget currentTenantId currentTimeIndex currentUserId currentValue currentVersionIndex current_units currentcolor currently cursor cursor-ns-resize cursor-pointer cursor-text custom customChat customPart customStyle custom_show customerId cx cy daily daily_units damping dangerouslySetInnerHTML dark dark:[&>img]:bg-foreground dark:bg-background dark:bg-input/30 dark:bg-muted dark:bg-transparent dark:block dark:border-0 dark:border-destructive dark:border-transparent! dark:from-muted dark:has-[[data-slot][aria-invalid=true]]:ring-destructive/40 dark:hidden dark:hover:bg-accent/50 dark:invert dark:prose-invert darkHtml data data-[active=true]:bg-sidebar-accent data-[active=true]:font-medium data-[active=true]:text-sidebar-accent-foreground data-[disabled=true]:opacity-50 data-[disabled=true]:pointer-events-none data-[ending-style]:opacity-0 data-[orientation=vertical]:h-auto data-[selected='true']:bg-accent data-[selected=true]:text-accent-foreground data-[side=bottom]:slide-in-from-top-2 data-[side=bottom]:translate-y-1 data-[side=left]:-translate-x-1 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1 data-[side=top]:slide-in-from-bottom-2 data-[starting-style]:opacity-0 data-active data-agents-sdk-resolved-theme data-agents-sdk-theme data-align data-appendMessage data-chat-title data-clear data-closed:animate-out data-closed:duration-300 data-closed:fade-out-0 data-closed:opacity-0 data-closed:slide-out-to-bottom data-closed:slide-out-to-left data-closed:slide-out-to-right data-closed:slide-out-to-top data-closed:slide-out-to-top-2 data-closed:zoom-out-95 data-codeDelta data-collapsible data-command-empty data-command-group data-command-group-heading data-command-input data-command-item data-command-list data-command-separator data-disabled data-disabled:cursor-not-allowed data-disabled:opacity-50 data-disabled:pointer-events-none data-finish data-highlighted:bg-accent data-highlighted:text-accent-foreground data-id data-imageDelta data-kind data-mobile data-open:animate-in data-open:bg-accent data-open:bg-sidebar-accent data-open:duration-500 data-open:fade-in-0 data-open:hover:bg-sidebar-accent data-open:hover:text-sidebar-accent-foreground data-open:opacity-100 data-open:slide-in-from-bottom data-open:slide-in-from-left data-open:slide-in-from-right data-open:slide-in-from-top data-open:slide-in-from-top-2 data-open:text-sidebar-accent-foreground data-open:zoom-in-95 data-orientation data-placeholder:text-muted-foreground data-role data-selected data-sheetDelta data-side data-sidebar data-sidebar-mode data-sidebar-transition data-size data-slot data-state data-suggestion data-testid data-textDelta data-title data-tool-approval-decision data-variant data-waiting-status dataColumns dataPart dataStream dataUrl database date date-fns dateStyle dateTime days db debounce debouncedHandleContentChange debug debugging decision decision-call-1 decisions declare declared decoration decorationTransaction decorations decorative deepinfra deepseek def default default-assistant defaultActiveTools defaultBranch defaultChatModel defaultChatModels defaultColumnOptions defaultEffort defaultGetThinkingMessage defaultItem defaultMarkdownSerializer defaultNavigation defaultOpen defaultPrevented defaultProp defaultRehypePlugins defaultSidebarOpen defaultUrl defaultValue defaultVariants defined definition delay delayDuration delays delete deleteAllChatsByUserId deleteChatById deleteDocument deleteDocumentsByIdAfterTimestamp deleteHandler deleteHistory deleteId deleteKeyCode deleteMessagesByChatIdAfterTimestamp deleteNodeLen deletePromise deleted deletedAt deletedByUserId deletedCount deletedDocs deliberate delta demonstrates denied denies deny denyReason dependencies depending depth deriveTitleFromUserText derived derivedName desc describe described description destroy destructive detail detailed details dev did didJustFinishStreaming diff diff-editor diff-match-patch diffEditor diffMark diffNewChildren diffOldChildren diffSchema diff_match_patch diffedDoc different diffs direct directText directWeatherPatterns direction directly disableAutoResize disableSidebarOpenTransition disabled disabled:bg-muted disabled:cursor-not-allowed disabled:opacity-50 disabled:pointer-events-none disabled:text-muted-foreground dispatch dispatchTransaction dispatcher display displayName displayTemperatures displayTimes displayedVote dispose disposed dist/tailwind-source.js div dmp do doc docChanged dockSidebar docked docs document documentCreatedAt documentId documentPreviewKinds documentSchema documents does doing dom domValue don done down downvote dpi draftArtifact draftContent drafting drag dragConstraints dragElastic dragMomentum dragover drop dropping drops dual-mode dur durable duration duration-150 duration-200 duration-300 durationMs during dynamic dynamic-tool dynamicSpread earlier ease ease-in-out ease-linear easier edge edit editDocument editable edited editing editorRef edits effect effort efforts eft either elapsed element elementRefGetter eleted elevation else embed embla-carousel-react emit emitArtifactStoreChange emitDecision emits empty en-US enableVirtualization enabled end endIndex endReachedOffsetPx endRef endSse endingBefore ending_before endpoint ends enough enqueue ensure ensureArray entire entry enum equal equalityLeft equalityRight err error errorCause errorCode errorData errorElement errorMessage errorName errorStack errorText errorValue errors eslint-disable eslint-disable-next-line essay essays estimateByteLength estimateMessagesChars ev evenodd event events eventually every everything everywhere exact exampleSetup exceed exceeded executable execute executes executing execution exist existing existingChat existingIndex existingMessages exists exit expanded expects experimental_throttle experimental_toolApprovalSecret experimental_transform explaining explicit explicitly export exposes extends extensions external externalWebAccess externally extractMessageTextForHistoryCompaction f factorial fade-in fade-in-0 failAgentLoopRequest failed fails fait fallback fallbackChatModel fallbackDocument fallbackStoredText fallbackText fallbackTitle fallbackValue falls false fast fast-deep-equal fastrouter fc_1 feature feedback fence fetch fetchAuthIdentity fetchCurrentSessionIdentity fetchJson fetcher field field-sizing-content field-sizing-fixed file file:bg-transparent file:border-0 file:font-medium file:text-foreground file:text-sm fileId fileInputRef fileList fileObjectId fileSearch fileSearchParams file_id file_not_found filename files files! filesRef filesystem_db_unavailable fill fill-current fillRule filter filtered final finalFocus finalLeftChildren finalRightChildren finalTranscript finalValue final_answer finally find find-and-replace findCompactedThroughIndex findCustomer findMatchNode finish finish! finish-step finishReason finishedAt fireworks-ai first firstElementChild fitView fixed fixing flag flagship flex flex-1 flex-col flex-col-reverse flex-initial flex-nowrap flex-row flex-row-reverse flex-wrap floating focus-visible:opacity-100 focus-visible:outline focus-visible:outline-2 focus-visible:outline-none focus-visible:outline-offset-2 focus-visible:outline-ring focus-visible:ring-0 focus-visible:ring-2 focus-visible:ring-offset-0 focus-visible:ring-offset-2 focus-visible:ring-ring focus-visible:ring-sidebar-ring focus-within:border-border focus:bg-accent focus:bg-destructive/15 focus:outline-none focus:ring-0 focus:ring-2 focus:ring-offset-0 focus:ring-offset-2 focus:ring-ring focus:text-accent-foreground focus:text-destructive focusPromptOnCloseRef focusTargetRef follow-up following font-light font-medium font-mono font-normal font-sans font-semibold fontSize footer for forbidden forbidden:auth forbidden:chat forbidden:document forceLive forceLiveChat forecast form formData formRef format formatDistance formatISO formatMessageForSummary forwardRef found found! frameId framer-motion framework friendly from from-background/0 from-muted from-popover/95 front frozen fs fsDb fuck full fullStream fully function functional functionality functions gap gap-0 gap-0.5 gap-1 gap-1.5 gap-2 gap-2.5 gap-3 gap-4 gap-6 gap-8 gap-px geist-icon general generate generateCodeDocument generateCsv generateId generateSheetDocument generateText generateTextDocument generateTextMock generateUUID generateUUIDFallback generated generatedTitle generation generationtime_ms generator geocodeCity geocoding get getActionText getAgentLoopRtsMessageChannel getAgentRuntimeConfig getApprovedToolApprovalResponse getArtifactMetadata getArtifactModel getArtifactSnapshot getAsChildRender getBucketName getChatById getChatId getChatIdQuery getChatIdentity getChatMenuTriggerId getChatModels getChatPath getChatStreamingStatus getChatStreamingUpdatedAtMs getChatTenantId getChatUserId getChatsByUserId getClientCookie getConversationErrorMessage getCookie getCookieHeader getCreatedAt getCreatedAtFromMetadata getCurrentTenantIdFromLocation getDefaultAgentDefinition getDefaultReasoningEffortForModel getDefaultReasoningEffortSelection getDerivedKey getDocument getDocumentContentById getDocumentId getDocumentTimestampByIndex getDocumentsById getEdgeParams getElementRef getErrorLogDetails getErrorMessage getHandleCoordsByPosition getHistory getHistoryCompactionState getHostTheme getInitialReasoningEffortSelection getKeepStartIndex getLanguageModel getLastUnansweredUserMessage getLastVisibleAssistantMessage getLatestDocument getMessageById getMessageId getMessagesByChatId getMockCtxForTenant getModelDisplayName getNewChatPath getNodeAttribute getNodeAttributes getNodeChildren getNodeMarks getNodeProperty getNodeText getOutputErrorMessage getPayloadLogContext getProviderApiKeyHint getProviderDisplayName getProviderFromModelId getQueryString getReasoningEffortLabel getReasoningEffortPreference getReasoningEffortSelection getReasoningEffortsForModel getRequestHints getRequestPromptFromHints getRequestTenantId getRequestedReasoningEffort getResetHeader getResumableChatStream getRiskFallbackDecision getRuntimeAllowedChatModelIds getSelectItemsFromChildren getSelectedChatModel getServerSnapshot getSessionTenantId getSessionUser getSessionUserId getSnapshot getStableDomIdPart getStatusBadge getStatusLabel getStreamIdsByChatId getSuggestions getSuggestionsByDocumentId getSystemTheme getTenantFilesystemDb getTenantHeaderRecord getTenantIdFromCtx getTenantIdFromUrl getTextFromMessage getTextFromParts getThinkingMessage getTimestampMs getTitleModel getTitleSourceText getToolApprovalSigningSecret getToolApprovalStateMap getUploadKeyHash getUserIdFromCtx getUserText getVisibleStreamErrorMessage getVotes getVotesByChatId getWeather getWeatherContext gets getter ghost github github-copilot github-models given global globalDrop goToNext goToPrevious good google google-vertex google-vertex-anthropic google/gemini-3.5-flash googleApiKey googleModelId googleProvider gpt-5.6-luna gracefully grid groq group group-[.is-assistant]:bg-secondary group-[.is-assistant]:text-foreground group-[.is-user]:bg-primary group-[.is-user]:bg-secondary group-[.is-user]:ml-auto group-[.is-user]:px-4 group-[.is-user]:py-3 group-[.is-user]:rounded-lg group-[.is-user]:text-foreground group-[.is-user]:text-primary-foreground group-action group-content group-data-[collapsible=icon]:!p-0 group-data-[collapsible=icon]:!p-2 group-data-[collapsible=icon]:!size-8 group-data-[collapsible=icon]:-mt-8 group-data-[collapsible=icon]:hidden group-data-[collapsible=icon]:opacity-0 group-data-[collapsible=icon]:overflow-hidden group-data-[collapsible=icon]:w-[calc(var(--sidebar-width-icon)_+_theme(spacing.4)_+2px)] group-data-[collapsible=icon]:w-[var(--sidebar-width-icon)] group-data-[collapsible=offcanvas]:after:left-full group-data-[collapsible=offcanvas]:hover:bg-sidebar group-data-[collapsible=offcanvas]:translate-x-0 group-data-[collapsible=offcanvas]:w-0 group-data-[disabled=true]/input-group:opacity-50 group-data-[side=left]:-right-4 group-data-[side=left]:border-r group-data-[side=right]:border-l group-data-[side=right]:left-0 group-data-[variant=floating]:border group-data-[variant=floating]:border-sidebar-border group-data-[variant=floating]:rounded-lg group-data-[variant=floating]:shadow group-data-closed:-rotate-90 group-data-open:rotate-180 group-focus-within/menu-item:opacity-100 group-has-[>input]/input-group:pb-2.5 group-has-[>input]/input-group:pt-2.5 group-has-[[data-sidebar=menu-action]]/menu-item:pr-8 group-hover/menu-item:opacity-100 group-hover/message:opacity-100 group-hover:bg-accent group-hover:opacity-0 group-hover:opacity-100 group-hover:pointer-events-auto group-label group/input-group group/menu-item group/message group/sidebar-wrapper groupChatsByDate groupedChats groups grow grow-0 gt gte guide h-10 h-11 h-12 h-14 h-16 h-2 h-2.5 h-3 h-3.5 h-4 h-5 h-6 h-7 h-8 h-9 h-[1px] h-[200px] h-[257px] h-[calc(100dvh-60px)] h-auto h-dvh h-fit h-full h-px h:mm ha handle handleBranchChange handleChange handleClick handleContentChange handleCopy handleDelete handleFileChange handleInput handleKeyDown handleModelChange handleOpenChange handlePaste handlePayload handlePosition handleResize handleRetryConversationError handleRowsChange handleSaveContent handleScroll handleScrollToBottom handleSelect handleSubmit handleTransaction handleType handleUrlChange handleVersionChange handler handlers handles harden has has-[>[data-align=block-end]]:[&>input]:pt-3 has-[>[data-align=block-end]]:flex-col has-[>[data-align=block-end]]:h-auto has-[>[data-align=block-start]]:[&>input]:pb-3 has-[>[data-align=block-start]]:flex-col has-[>[data-align=block-start]]:h-auto has-[>[data-align=inline-end]]:[&>input]:pr-2 has-[>[data-align=inline-start]]:[&>input]:pl-2 has-[>[data-slot=button-group]]:gap-2 has-[>button]:ml-[-0.45rem] has-[>button]:mr-[-0.4rem] has-[>kbd]:ml-[-0.35rem] has-[>kbd]:mr-[-0.35rem] has-[>svg]:p-0 has-[>svg]:px-2 has-[>svg]:px-2.5 has-[>textarea]:h-auto has-[[data-slot=input-group-control]:focus-visible]:ring-1 has-[[data-slot=input-group-control]:focus-visible]:ring-ring has-[[data-slot][aria-invalid=true]]:border-destructive has-[[data-slot][aria-invalid=true]]:ring-destructive/20 has-[[data-variant=inset]]:bg-sidebar has-[select[aria-hidden=true]:last-child]:[&>[data-slot=select-trigger]:last-of-type]:rounded-r-md hasActiveConversation hasAppliedDefaultValueRef hasAutoClosed hasAutoFocused hasHighlightedCode hasKnownField hasMetadata hasModelActivity hasMore hasNextPage hasOpenAiItemId hasReasoningText hasResumedRef hasSentMessage hasStreamingChats hasTextContent hasToolApprovalState hasToolLikeParts hasVisibleAssistantMessageContent hasVisibleMessagePart hasVisibleReasoningPart hasWeatherTool have having header header/trigger headerCellClass headers heading headings headless height hello helloWorld help helpful helps here hex hey hi hidden hide high high-volume highlight hints history historyCompaction historyQuery historyState hit hitboxRef honors horizontal host hour hourTime hourly hourly_units hoursToShow hover:after:bg-sidebar-border hover:bg-accent hover:bg-background hover:bg-destructive/80 hover:bg-destructive/90 hover:bg-muted hover:bg-muted-foreground/10 hover:bg-muted/50 hover:bg-primary/80 hover:bg-primary/90 hover:bg-secondary/80 hover:bg-sidebar-accent hover:border-muted-foreground/50 hover:opacity-100 hover:shadow-[0_0_0_1px_hsl(var(--sidebar-accent))] hover:text-accent-foreground hover:text-foreground hover:text-primary/90 hover:text-sidebar-accent-foreground hover:underline href html http huggingface human hydration i icon icon-sm icon-xs icons id idScope identity idle if iflowcn iframe ight ignore ignoreIncompleteToolCalls ignores image image/png imageArtifact imageDelta imageItems images img immediate immediately import importOriginal important improve in in_progress inception include includeDeleted incoming incomingMessage incomplete indefinite index indexURL infer inference infinite information informational/explanatory inherit init initData initResponse initial initialArtifactData initialChatModel initialInput initialMessages initialModelId initialOpenAIReasoningEffort initialReasoningEffort initialRows initialTextInput initialize initializer inline inline-block inline-end inline-flex inline-start inlineUnsupportedOpenAiFileParts inlining inner innerHTML innerHeight innerWidth input input-attachment-loader input-attachment-preview input-available input-group input-group-addon input-group-control input-streaming inputGroupAddonVariants inputGroupButtonVariants inputJson inputRef inputRules inputSchema inputTextDelta inputTokenDetails inputTokens insert insertNodeLen inserting inset inset-0 inset-x-0 inset-y-0 inside installs instanceof instant instead instructions insufficient intelligence intended interactive interface interimResults internal internal:api internet interpreter interpreting interval intervalId into invalid invalidTarget invalid_file_id io is is-assistant is-user is-user:dark isActive isAnimating isApprovalState isArtifactVisible isAtBottom isAtBottomRef isAutomatic isAvailableReasoningEffort isChatStreamingStale isControlled isCopied isCurrentChat isCurrentHour isCurrentVersion isDark isDay isDenied isDisabled isDocumentPreviewResult isDocumentsFetching isEmptyAssistantMessage isEqual isFetchingNext isFinal isGenericConversationErrorMessage isGoogleModel isGoogleModelId isGreeting isHistoryCompactionState isImage isInitialLoading isInline isListening isLoading isMobile isModelStreamActivity isNode1Array isNode2Array isNodeEqual isObject isOpen isOpenAiModel isOpenAiModelId isPlaywright isPreviewCollapsed isProduction isPublic isReactWarning isReadonly isReasoningModel isReasoningModelId isRecord isRenderableMessagePart isRenderableMessagePartType isResolved isSelected isSpecializedToolType isStaleStreaming isStreaming isSuccessful isSupportedChatModelId isText isTextLike isTextNode isToolApprovalFlow isToolApprovalStatePart isToolLikeMessagePart isToolLikeMessagePartType isToolPart isToolUIPart isToolbarVisible isTruthyEnv isUntitledChatTitle isUpdate isUploading isUpvoted isUserScrollingRef isValidElement isVisible isVisibleConversationMessage isWeatherToolActive isWebSearchActive isWithinInterval isXaiModel isXaiModelId isn iso8601 isolated it italic item item-aligned itemId itemValue items items-center items-end items-start items-stretch iteratively its itself js json just justify-between justify-center justify-end justify-start keep keep-alive keepEnd keepStart keeps kept keptSuggestions key keyboard keydown keyof keywords kind know knowledge knowledgePrompt label labelVariants labels lang language languages last lastActivityAt lastActivityAtFilter lastAssistantHasVisibleContent lastAttachment lastContext lastContextChanged lastExistingMessage lastMessage lastMonth lastSelection lastSelectionRef lastStreamingHeartbeatAt lastUnansweredUserMessage lastVisibleAssistantMessage lastWeek lat latest latitude leading-none leading-relaxed leading-tight leaks leave leaves left left-0 left-1/2 left-2 left-[50%] leftNewNode leftOldNode legacyChatModelIds legitimate length let level lg lg:flex-row li library lifts light like likely limit limits line line-clamp-1 line-clamp-2 line-clamp-3 line-numbers line-through lineArray lineHash lineHeight lineNumberStyle lineNumberTransformer lineStart linear link list listbox listener listeners little llama lmstudio load loadMore loadPyodide loader loading loading_packages local localStorage localStorageInput localTheme location log logAgentLoopError logWeatherToolError logical logo logoProvider logs lon longer longitude lookup loop loops lost low lt lucide-react lucidquery m m-0 m-4 made main major make makes malformed manual many map maps margin mark markClosed markModelActive markStaleChatStreamingIdle markdown markerEnd marks marks1 marks2 master match matchMedia matchNodeType matchNodes matchedCount matchedNodes matches matchesAccept matplotlib max max-age max-h-40 max-h-48 max-h-96 max-h-[22rem] max-h-[300px] max-h-[8.25rem] max-h-[var(--available-height)] max-h-full max-lines max-w-(--breakpoint-toast-mobile) max-w-(--skeleton-width) max-w-2xl max-w-3xl max-w-4xl max-w-[100px] max-w-[14rem] max-w-[18rem] max-w-[450px] max-w-[80%] max-w-[800px] max-w-[95%] max-w-[var(--skeleton-width)] max-w-full max-w-full! max-w-lg max-w-prose max-width maxAge maxBufferBytes maxChars maxContextChars maxContextMessages maxEstimatedChars maxFileSize maxFiles maxHeight maxMessages maxRetries maxSummaryChars max_file_size max_files maximum may maybeMarkChatStreamingIdle maybeRefreshStreamingHeartbeat mb-1 mb-2 mb-3 mb-4 mb-auto md md:-right-16 md:block md:border-l md:gap-3 md:gap-4 md:gap-6 md:hidden md:mt-16 md:opacity-0 md:p-20 md:pb-4 md:peer-data-[state=collapsed]:peer-data-[variant=inset]:ml-2 md:peer-data-[variant=inset]:m-2 md:peer-data-[variant=inset]:ml-0 md:peer-data-[variant=inset]:rounded-xl md:peer-data-[variant=inset]:shadow md:px-4 md:px-8 md:text-2xl md:text-sm me meaningful mediaType medium memo memory menu menu-action menu-badge menu-button menu-item menu-skeleton menu-skeleton-icon menu-skeleton-text menu-sub menu-sub-button menuBar menuTriggerId menus merge mergeConsecutiveReasoningParts mergeHistoryCompactionState mergeProps merged mergedParts mergedProps message message-1 message-2 message-3 message-4 message-5 message-6 message-7 message-assistant-loading message-attachments message-content message-downvote message-edit-button message-editor message-editor-send-button message-error message-error-retry message-message-1-reasoning-0 message-reasoning message-upvote messageCallback messageChanged messageCount messageId messageIds messageMetadata messageMetadataSchema messages messagesToCompact metaKey metadata metadataUserId method middleware mimeType min-h-0 min-h-10 min-h-12 min-h-16 min-h-[24px] min-h-[80px] min-h-[calc(1lh+1.5rem)] min-w-0 min-w-10 min-w-5 min-w-[24px] min-w-[8rem] min-w-[var(--anchor-width)] min-w-[var(--sidebar-width)] minChildLen minDurationMs minHeight minKeep minWidth minimal minute misses missing mistral ml-1 ml-6 ml-auto mobile mod modal mode model modelCtx modelId modelIds modelInputMessages modelMessages modelName models modelsByProvider modelscope modifiedCount modify module modules mongodb mongoose month moonshotai moonshotai-cn morph most mostRecentDocument mostRecentMessage motion mousedown mousemove mouseup moveActive mql mr-0.5 mr-2 mr-4 ms msg_1 msg_complete msg_incomplete msg_user mt-0.5 mt-1 mt-1.5 mt-2 mt-3 mt-4 mt-6 multi-part multi-step multimodal-input multiple must mutationObserver mx-2 mx-3.5 mx-auto my my-0 my-1 n nURL name names namespace namespaced nanoid native nativeDb navigate navigation navigator nearest nebius necessary need needed needs needsApproval network never new newAfterMatchChildren newBeforeMatchChildren newBranch newChatLoader newChatPath newChild newChildLen newChildren newContainer newContent newCsvContent newDecorations newDeltas newDoc newDocument newEndIndex newHeight newHtmlContent newMessages newNode newOpen newRows newSentences newSize newStartIndex newState newText newUrl newValue new_string newline next nextArtifact nextContext nextHeaders nextIndex nextItems nextLastContext nextMessage nextMessages nextMetadata nextPart nextParts nextProps nextRtsUid nextSelection nextSuggestions nextTheme nextValue nextVote no no-cache no-debounce no-save no-store noDangerouslySetInnerHtml noDocumentCookie noEmptyBlockStatements noImgElement noStaticOnlyClass noSubscribersAbortTimer node node-container node:crypto nodes non-empty nonEmptyRows none noop noopener noreferrer normalizeChat normalizeCommandText normalizeDocumentKind normalizeHistoryCompactionLimits normalizeNodeContent normalizeNonnegativeInteger normalizeOptionalBoolean normalizePositiveInteger normalizePromptText normalizeSignedInTenants normalizeString normalizeTenantId normalizeTimestamp normalizeToolApprovalHistoryForModel normalizeUsage normalizeVote normalized normalizedApproval normalizedBase normalizedChatId normalizedCurrentPath normalizedCurrentUserId normalizedDocumentId normalizedHistory normalizedMessage normalizedModelId normalizedNewChatPath normalizedPath normalizedText normalizedUsage not not-prose not_found not_found:chat not_found:document notifyAgentRunState now nowMs nserted null num number numeric nvidia nyc object object-contain object-cover observe observer observers occurred occurrences of off offcanvas offer offline offline:chat offset offsetX offsetY ok old oldAfterMatchChildren oldBeforeMatchChildren oldChild oldChildLen oldChildren oldContainer oldContent oldDoc oldEndIndex oldEndNode oldHtmlContent oldNode oldSentences oldStartIndex oldStartNode oldText old_string older omitting on onAbort onActiveChatTitleChange onAnimationComplete onAnimationStart onApply onCellClick onChange onChunk onClick onClose onCompositionEnd onCompositionStart onData onDecision onDelete onDragEnd onDragOver onDragStart onDrop onEndReached onError onFinish onHoverEnd onHoverStart onKeyDown onKeyDownCapture onMessage onModelChange onMouseDown onMouseMove onOpenAIReasoningEffortChange onOpenChange onPaste onPointerDown onRemove onRetry onRetryConversationError onReviewerUsage onRowsChange onRtsMessage onSaveContent onSelect onStreamPart onSubmit onTranscriptionChange onValueChange onViewportEnter onViewportLeave once one one-dark-pro one-light oneDark oneMonthAgo oneWeekAgo onend onerror onload onloadend only onresult onstart op opacity opacity-0 opacity-100 opacity-60 opacity-70 open openAiApiKey openAiMetadata openDelay openDownloadStream openFileDialog openFileDialogLocal openMobile openProp openRef openState openai openai/gpt-5 openai/gpt-5.4-mini openai/gpt-5.5 openai/gpt-5.6 openai/gpt-5.6-luna openai/gpt-5.6-sol openai/gpt-5.6-terra openaiReasoningEffort openaiReasoningEffortRef openaiReasoningSummary opencode opening openrouter opt-in optimisticDocuments optimisticVote option optional optionalValue options or order order-first order-last ordered orderedmap orientation origin origin-[var(--transform-origin)] original originalMessages originalSentence originalText originalUrl other otherwise ottom our out outline outline-hidden outline-none output output-available output-denied output-error outputContent outputErrorMessage outputText outputTokenDetails outputTokens outputs outside over overflow-auto overflow-hidden overflow-x-auto overflow-x-hidden overflow-x-scroll overflow-y-auto overflow-y-hidden overflow-y-scroll overflowWrap overflowX overflowY overscroll-behavior-contain overview own ownerKeyHash p p-0 p-1 p-1.5 p-2 p-2.5 p-3 p-3! p-4 p-6 p-8 p-[1px] package paddedData paddedRow padding paddingBottom paddingRight paddingTop pageInfo pagination panOnDrag panOnScroll papaparse paragraph param parameters parent parse parseBody parseData parseKind parseLimit parseUploadedFileUrl parsed parsedTimestamp parser part partRecord partialOutput partialOutputStream parts passive past paste pasted patchDocumentNode patchRemainNodes patchTextNodes path pathname pattern patterns payload pb-1 pb-2 pb-3 pb-4 pb-[calc(80dvh)] peer peer-data-[active=true]/menu-button:text-sidebar-accent-foreground peer-data-[size=default]/menu-button:top-1.5 peer-data-[size=lg]/menu-button:top-2.5 peer-data-[size=sm]/menu-button:top-1 peer-disabled:cursor-not-allowed peer-disabled:opacity-70 peer-hover/menu-button:text-sidebar-accent-foreground peer/menu-button pending per perform perplexity persist persistSessionTenantId persisted persists phase photos piece ping pivot pivotLastActivityAt pl-2 pl-3 pl-4 pl-8 placeholder placeholder:text-muted-foreground plan plan-action plan-content plan-description plan-footer plan-header plan-title plan-trigger please plots plt plugins png png_base64 png_buf pointer-events-auto pointer-events-none policies policy policy-violating polish polite popper pos position positions postDocument potential pr-2 pr-3 pr-4 prediction prefer preferredEffort prefers-color-scheme prefersWeatherToolForPrompt prefix prepare present presentation pressed prev prevProps prevent preview previewDocument previous previousContext previousMessage previousSummary previousThroughIndex previousValue previously private proceed process processedCount processor production professional programmatically progress projectedSuggestions projection promises prompt promptInputScrollAreaHeight promptInputScrollAreaRef prop properties proportionate proposed props propsRefDescriptor propsRefGetter propsWithRef prose prosemirror-example-setup prosemirror-inputrules prosemirror-markdown prosemirror-model prosemirror-schema-basic prosemirror-schema-list prosemirror-state prosemirror-view protocol provide provided provider providerExecuted providerMetadata providerModels providerName providerNames providerOptions providers pruned/unsupported. pt-0 pt-1 pt-12 pt-2 pt-20 pt-3 pt-4 pt-[60px] publish publishDone publishJson publishQueue publishRtsMessage publishRuntimeChatMessage push put px px-0 px-0.5 px-1 px-1.5 px-10 px-2 px-2.5 px-3 px-3.5 px-4 px-8 py-0 py-0.5 py-1 py-1.5 py-2 py-2.5 py-3 py-3.5 py-4 py-6 py-8 pyplot python quality query questions queue queueStreamingHeartbeatRefresh quota r race rail randomArr randomUUID rate rate_limit rate_limit:chat raw rawId rawMessage rawPayload rawReasoningEffort rawTenantId rawUrl rawUsage rawUserId rawValue rb-tenant-id rb-upload-key rbAgentsUsageEventFeatureValues rbAgentsUsageEventStatusValues rdg-dark rdg-light re re-add re-expanding reInit react react-data-grid react-dom react-dom/client react-dom/server react-syntax-highlighter read readErrorPayload readUIMessageStream readUploadedFileBytes reader reading reading-level-selector readonly reads ready real-time reason reasonable reasoning reasoning-1 reasoning-delta reasoning-end reasoning-file reasoning-item reasoning-start reasoningEffort reasoningId reasoningSummary reasoningTokens reasons recent recentMessages recognition recognitionRef record recordChatUsageOnce recordUsageEvent records rect redirect reduce reducing ref references reflected refresh refs regenerate regenerateChatResponse region register registerFileInput registerItem regularPrompt rehypePlugins reject rejected rel relative releaseReaderLock remainingChars remove removeLocal removed removedItemReferences removes renaming render renderCell renderEditCell renderErrorExtra renderMessagePart renderSidebarChat renderToString renderableMessagePartTypes rendered repeat repeatCount repeated replace replace_all replacement replacements replacing replayed reply req request request-suggestions requestHints requestPath requestPrompt requestSchema requestSuggestions requestTenantId requestUrl request_manual requested requestedDefault requests requesty require required requiredHandlers requires requiresScrollPadding requiresSigningSecret res reset resetChatData resetChatStore resizable resize resize-none resizeObserver resizeOnNewLinesOnly resolve resolveActiveChatTools resolveHistoryCompactionForRun resolveInlineAttachments resolveMetadataBoolean resolvePolicyDecision resolveReviewerInstructions resolveRuntimeAgent resolveRuntimeUsageContext resolveTarget resolveTheme resolved resolvedHistory resolvedItems resolvedLineHeight resolvedPaddingBottom resolvedPaddingTop resolvedTheme resolvedTools resolver resources response response! responseMessage responseMessageParts responseSchema responseText responses rest result resultIndex resultProviderMetadata resultText results resumable resumeStream retry return returnDocument returned returning returns revalidator review reviewTarget reviewer reviewer-model reviewerModel reviewerOutputSchema reviewerSystemPrompt rewording rewrite rewrites right right-0 right-0.5 right-1 right-2 right-3 right-4 right-6 right-[9px] rightNewNode rightOldNode ring-0 ring-1 ring-border ring-offset-background ring-sidebar-ring risk risk_fallback role root rootData rootLoader rootLoaderData rotate-0 rotate-180 rotate-90 round rounded rounded-2xl rounded-[calc(var(--radius)-5px)] rounded-[inherit] rounded-b-2xl rounded-b-md rounded-full rounded-lg rounded-md rounded-none rounded-sm rounded-t-2xl rounded-t-md rounded-xl route routeRtsUid routes row rowData rowIdx rowIndex rowNumber rowNumberColumn rows rs_1 rs_complete rts-message rtsMessageChannel rtsUid rules run runAgentLoop runId runSelect runnable running runtime runtimeChatModels runtimeConfig runtimePrompt s safe safeMediaType safeParts salut same sandbox sanitization sanitizeChatTitle sanitizeForReview sanitizeMessageParts sanitizeOpenAiResponseHistory sanitizePart sanitizeSegment sanitizeText sanitized sanitizedHistory sanitizes satisfies save save/reuse saveChat saveContent saveDocument saveMessages saveSuggestions saveUsageEvent saved savedDocument saves scale scale-0 scale-100 scaleway schema schemas scira script scripts scroll scrollArea scrollAreaHeight scrollAreaRef scrollHeight scrollIfNeeded scrollNext scrollPrev scrollTimeout scrollToBottom scrollTop scrollViewportRef scrolling search searchContextSize searchParams searchText searchValue secondary secondaryTools seconds secret section sections security see segmentHasOpenAiReasoningItem segmentStart select select-none selectActive selectItem selectItems selectRef selectSnapshot selected selectedChatModel selectedModel selectedModelId selectedReasoningEffort selectedTool selectedValue selecting selection selectionEnd selectionOnDrag selectionStart selector self-center self-end self-start self-stretch send send-button sendAutomaticallyWhen sendChatMessage sendMessage sendReasoning send_reply sending sensitiveKeyPattern sent sentence sentence-level sentences sentencesToChars separates separator serializeRecentMessages serialized server session sessionTenantId sessionUser sessionUserId set setActiveId setApi setArtifact setArtifactMetadata setArtifactSnapshot setAttachmentFiles setAttachments setBranches setCanScrollNext setCanScrollPrev setChatSessionTenantId setConsoleOpen setConsoleOutputs setConversationError setCount setCurrent setCurrentBranch setCurrentConversationTitle setCurrentLevel setCurrentModelId setCurrentVersionIndex setDarkHtml setDataStream setDeleteId setDisableSidebarOpenTransition setDocument setDraftContent setDuration setEndSentinelNode setHasAppendedQuery setHasAutoClosed setHasSentMessage setHasUserSelectedLevel setHeight setHtml setInput setInputValue setIsAnimating setIsAtBottom setIsComposing setIsContentDirty setIsCopied setIsExpanded setIsHovered setIsListening setIsLoading setIsMobile setIsMutating setIsOpen setIsResizing setIsSubmitting setIsToolbarVisible setItems setLocalRows setLocalStorageInput setLocalTheme setMessages setMetadata setMode setOnInsert setOpen setOpenMobile setOpenProp setOpenaiReasoningEffort setOptimisticDocuments setOptimisticVote setPromptInputScrollAreaHeight setRecognition setRef setResolvedHistory setResolvedRtsUid setResolvedTheme setScrollAreaHeight setSearch setSelectedTool setShowDeleteDialog setShowLoadingSkeleton setStartTime setStreamingStatusNow setTextInput setTheme setTimeout setUiMessageStreamHeaders setUncontrolledProp setUploadQueue setUrl setValue setWaitingStatus setting setup sha256 shadow-[0_0_0_1px_hsl(var(--sidebar-border))] shadow-lg shadow-md shadow-none shadow-none! shadow-sm shadow-xl shadow-xs shared sheet sheetArtifact sheetDelta sheetPrompt sheetVariants shiki short shortModelId shortcut should shouldAutoGenerateChatTitle shouldCompact shouldContinue shouldGenerateChatTitle shouldGenerateTitle shouldKeepCaretVisible shouldSendFullHistory shouldShow shouldShowDetails shouldShowPreviewToggle shouldShowThinkingMessage shouldUseScrollArea shouldUseSdkDarkClass shouldUseToolStub show showIcon showLineNumbers showLoadingSkeleton showOnHover shrink-0 side side-effects sideOffset sidebar sidebar-history sidebar-hover-new-chat-button sidebar-hover-trigger-button sidebar-panel-toggle-button sidebar-toggle-button sidebarActions sidebarCookie sidebarDefaultOpen sidebarHistoryState sidebarMenuButtonVariants sidebar_state sign signal signature signed signedInTenants signing signingSecret single size size-0.5 size-16 size-2 size-2.5 size-24 size-3 size-3.5 size-4 size-5 size-6 size-7 size-8 size-9 size-96 size-[40px] size-auto size-fit size-full sized skipEmptyLines sleep slide slide-in-from-top-2 slider sm sm:flex sm:flex-row sm:gap-0.5 sm:gap-2 sm:grid-cols-2 sm:justify-end sm:max-w-sm sm:mt-0 sm:px-10 sm:py-10 sm:rounded-lg sm:space-x-2 sm:text-left small smooth snapshot snippet snippets so sort sortable source source-document source-url sourceNode sourcePos sourcePosition sourceX sourceY sources space space-y-1 space-y-1.5 space-y-2 space-y-3 space-y-4 span special specializedToolTypes specify speechRecognition spread spreadsheet spreadsheets spring sr-only src ssr stableIdScope stale standard start start-step startCloseTimer startIndex startNewChat startResizing startState startStream startStreamingHeartbeat startedAt starting startingAfter starting_after starts startsNextSegment state statements states static status statusByType statusCode statusIcons statusLabels statusStyles statusText stays step step-start steps sticky stiffness still-waiting stop stop-button stop-icon stopResizing stopStreamingHeartbeat stopWaitingStatus stopWhen stopped store stored storedMessages stores str stream streamId streamPart streamProcessor streamTarget streamText streamTransport streamdown streamed streaming streamingHeartbeatActive streamingHeartbeatRefresh streamingUpdatedAt streams string stringFromMarkdown stripMongoFields stripOpenAiItemId stroke stroke-1 stroke-ring strokeDasharray strokeLinecap strokeLinejoin strokeWidth structured stub style subWeeks submit submitButton submitForm submitted submitting submodel subscribe subscribeArtifactStore subscriber subscribers substantial subtree success successfully successfullyUploadedAttachments suggested suggested-actions suggestedActions suggestedSentence suggestedText suggestion suggestion-highlight suggestionId suggestions suggestionsPlugin suggestionsPluginKey summarizing summary summaryIndex sunrise sunset supplied supportsReasoningEffort suppressHydrationWarning surface surrounding svg switch sy sync syncHiddenInput synchronous synthetic system systemPrompt t t3 tabIndex tabular tabular-nums tabular/CSV tag tagName tags target targetId targetNode targetPos targetPosition targetRisk targetX targetY targeted targets task tasks tempContainer temperature_2m temps ten tenantId tenant_missing tense test test-model testId text text-1 text-2xl text-3xl text-[10px] text-[11px] text-accent-foreground text-balance text-base text-base! text-card-foreground text-center text-delta text-destructive text-destructive-foreground text-end text-foreground text-left text-lg text-muted-foreground text-muted-foreground/40 text-muted-foreground/50 text-popover-foreground text-primary text-primary-foreground text-primary-foreground! text-primary-foreground/60 text-primary-foreground/70 text-primary-foreground/80 text-primary-foreground/90 text-right text-secondary-foreground text-sidebar-accent-foreground text-sidebar-foreground text-sidebar-foreground/50 text-sidebar-foreground/70 text-sm text-start text-transparent text-xl text-xs text/csv text/event-stream text1 text2 textArtifact textDelta textFromParts textId textInput textNode textNodes textParts textTransaction textValue textarea textareaRef textblockTypeInputRule than that the their them theme then there they think thinking thinkingPrompt this those through throw throwResponseError throws time timeStyle timeout timeoutId timeoutRef timer timestamp timestamps timezone timezone_abbreviation tiny title title1 title2 titlePrompt titleSourceText titleUsageStartedAt titles to to-background to-transparent toFiniteNumber toText toToolApprovalStatus toast today togetherai toggle toggleListening toggleSidebar token tokenize tokenizeSentences tokens too tool tool-1 tool-approval-decision tool-approval-review tool-call tool-createDocument tool-editDocument tool-findCustomer tool-getWeather tool-get_context tool-input-available tool-input-delta tool-input-start tool-output-available tool-requestSuggestions tool-send_reply tool-updateDocument tool-update_record toolApproval toolApprovalFlow toolCallId toolId toolName toolPart toolStates toolbar toolbarRef tools toolsByArtifactKind toolsWithSearch toolsWithoutSearch tooltip top top-0 top-0.5 top-1.5 top-1/2 top-2 top-3.5 top-4 top-7 top-[13px] top-[50%] total totalBranches totalBytes totalSize totalTokens totalUsage touch-none touch-pan-y tr trace-1 traceId tracking-tight tracking-wide tracking-widest trailingMessage transaction transcript transformers transient transition transition-[color,box-shadow] transition-[margin,opacity] transition-[max-height] transition-[width,height,padding] transition-[width] transition-all transition-colors transition-opacity transition-transform translate-x-[-50%] translate-x-px translate-y-[-50%] transparent transport trigger trim trimTrailingEmptyAssistantMessages trouble true truncate truncateMiddle truncated try turn ty type type1 type2 typeof types ul ules unauthorized unauthorized:auth unauthorized:chat unauthorized:document unavailable uncertain uncontrolledProp undefined under underline underline-offset-4 understanding unexpectedly unique unknown unless unmount unmounting unparse unrecognized unregisterItem unsubscribe unsupported untouched untrusted unverified up update updateChatAgentIdById updateChatLastContextById updateChatSelectedModelById updateChatStreamingById updateChatTitleById updateDocument updateDocumentPrompt updateLeft updateListener updateOne updateRight updateTheme updated updatedAt updatedContent updatedData updatedMessage updatedMessages updatedParts updater updaterFn updates updating upload uploadFile uploadId uploadKey uploadPromises uploadedAttachments uploading uploads uppercase upsert upsertMessage upserts upstage upvote url urlHint usage usageContext use use-stick-to-bottom useAgentsChatNavigation useAgentsSession useArtifact useArtifactSelector useAutoResume useBranch useCallback useCarousel useCarouselApi useChainOfThought useChat useChatDocuments useChatVotes useCommand useConfirmation useConsistentTypeDefinitions useContext useControllableState useCopyToClipboard useDataStream useDebounceCallback useEffect useFormStatus useImageSize useIsMobile useMemo useMessageBranch useMessages useNavigate useOnClickOutside useOpenInContext useOptionalPromptInputController useOptionalProviderAttachments usePlan usePromptInputAttachments usePromptInputController useProviderAttachments useQuery useReasoning useRef useRouteLoaderData useScrollPagination useScrollToBottom useSearchParams useSidebar useState useStickToBottomContext useStub useSyncExternalStore useSyncExternalStoreWithSelector useTheme useWebPreview useWindowSize used usehooks-ts user user-approval user-uploaded userId userLocation userMessage userMessageId userMessageParts userMessageRole userMessages userText users uses usesTaggedThinking using usingProvider utc_offset_seconds utf-8 utf8 v v0 v1 valid validateTarget value valueText valueToSet values variable variant variants venice vercel version versions vertical very vi view viewBox viewRef viewing viewport viewportNode visibility visibilityBySurface visible visibleCount visibleHistory visibleItems visibleMessages visibleSuggestedActions visibleTitle1 visibleTitle2 visualize vitest vitest-user void vote voteMessage voted votes vs vultr w-1/2 w-1/3 w-10 w-12 w-2 w-2.5 w-2/3 w-24 w-3.5 w-3/4 w-32 w-36 w-4 w-40 w-48 w-5 w-52 w-56 w-64 w-7 w-8 w-80 w-96 w-[112px] w-[1px] w-[240px] w-[400px] w-[min(100%,450px)] w-[var(--sidebar-width)] w-auto w-fit w-full w-max w-px w-sm wait waiting waiting-status waitingStatus waitingStatusTimer waitingText wandb want warn was wasStreamingRef we weather weatherAtLocation weatherData webSearch webkitSpeechRecognition went were what when where wherever whether which while whileHover whileTap whitespace-normal whitespace-nowrap whitespace-pre-line widget width widthClass will will-change-scroll window windowWidth with withCurrentTenantHeader withSummaryMessage withTenantHeader within withinSize without withoutChatSegment withoutNewlines word wordBreak words work workflows working workloads works workspaceId world would wrap-break-word wrapLanguageModel write writeSse writeToolApprovalDecision writeWaitingStatus writer writing x x-accel-buffering x-playwright-reset x-vercel-ai-ui-message-stream x1 x2 xAI xai xai/grok-4.3-thinking xaiApiKey xaiModelId xaiProvider xamples xhigh xmlns xmlnsXlink xs xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx y y1 y2 yToLevel year yes yesterday yet you your z z-1 z-10 z-20 z-40 z-50 zai zai-coding-plan zenmux zhipuai zhipuai-coding-plan zod zoom-in-95 zoomOnDoubleClick";
|
|
1
|
+
export const agentsSdkTailwindClasses = "!chunkSize !disableAutoResize !disabled !forceLive !hasReasoningText !hasWeatherTool !isAtBottom !isExpanded !isGoogleModel !isOpenAiModel !isStreaming !isUploading !isVisible !isWeatherToolActive !isWebSearchActive !m-0 !messageId !min-h-0 !onChange !resizeOnNewLinesOnly !shouldShow !status !visibleHistory **:data-[slot=command-input-wrapper]:h-auto **:text-[11px] **:text-sm ----- --anchor-width --available-height --background --bg --border --breakpoint-toast-mobile --color-background --color-muted-foreground --color-ring --foreground --muted-foreground --primary --radius --ring --sidebar --sidebar-accent --sidebar-accent-foreground --sidebar-border --sidebar-width --sidebar-width-icon --skeleton-width --spread --transform-origin -bottom-12 -dragConstraints -left-10 -left-12 -left-4 -mb-1 -ml-0.5 -ml-4 -mr-0.5 -mt-1 -mt-4 -mx-1 -mx-px -right-12 -right-8 -rotate-45 -space-x-1 -thinking -top-12 -top-4 -translate-x-1/2 -translate-x-px -translate-y-1/2 @ai-sdk/google @ai-sdk/openai @ai-sdk/react @ai-sdk/xai @codemirror/lang-python @codemirror/state @codemirror/theme-one-dark @codemirror/view @rpcbase/api @rpcbase/client @rpcbase/db @rpcbase/router @rpcbase/server @rpcbase/ui @ts-expect-error @xyflow/react [&>*:first-child]:mt-0 [&>*:last-child]:mb-0 [&>*:not(:first-child)]:border-l-0 [&>*:not(:first-child)]:border-t-0 [&>*:not(:first-child)]:rounded-l-md [&>*:not(:first-child)]:rounded-l-none [&>*:not(:first-child)]:rounded-t-none [&>*:not(:last-child)]:rounded-b-none [&>*:not(:last-child)]:rounded-r-md [&>*:not(:last-child)]:rounded-r-none [&>*]:focus-visible:relative [&>*]:focus-visible:z-10 [&>[data-slot=select-trigger]:not([class*='w-'])]:w-fit [&>button]:bg-transparent! [&>button]:border-none! [&>button]:hidden [&>button]:hover:bg-secondary! [&>button]:rounded-md [&>div]:max-w-[80%] [&>div]:pb-0 [&>img]:bg-background [&>img]:p-px [&>img]:ring-1 [&>img]:rounded-full [&>input]:flex-1 [&>kbd]:rounded-[calc(var(--radius)-5px)] [&>pre]:bg-background! [&>pre]:m-0 [&>pre]:p-4 [&>pre]:text-foreground! [&>pre]:text-sm [&>span:last-child]:truncate [&>span]:line-clamp-1 [&>svg+div]:translate-y-[-3px] [&>svg:not([class*='size-'])]:size-3.5 [&>svg:not([class*='size-'])]:size-4 [&>svg]:absolute [&>svg]:left-4 [&>svg]:shrink-0 [&>svg]:size-2.5 [&>svg]:size-3 [&>svg]:size-4 [&>svg]:text-destructive [&>svg]:text-foreground [&>svg]:text-sidebar-accent-foreground [&>svg]:top-4 [&>svg~*]:pl-7 [&_[data-command-group-heading]]:font-medium [&_[data-command-group-heading]]:px-2 [&_[data-command-group-heading]]:py-1.5 [&_[data-command-group-heading]]:text-muted-foreground [&_[data-command-group-heading]]:text-xs [&_[data-command-group]:not([hidden])_~[data-command-group]]:pt-0 [&_[data-command-group]]:px-2 [&_[data-command-input]]:h-12 [&_[data-command-item]]:px-2 [&_[data-command-item]]:py-3 [&_[data-command-item]_svg]:h-5 [&_[data-command-item]_svg]:w-5 [&_[data-slot=command-input-wrapper]_svg]:h-5 [&_[data-slot=command-input-wrapper]_svg]:w-5 [&_button:first-child]:rounded-bl-xl [&_code]:break-words [&_code]:font-mono [&_code]:text-sm [&_code]:whitespace-pre-wrap [&_li]:my-0 [&_ol]:my-1 [&_p]:leading-relaxed [&_p]:my-0 [&_pre]:max-w-full [&_pre]:overflow-x-auto [&_svg:not([class*='size-'])]:size-4 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg]:size-4 [&_table]:w-full [&_ul]:my-1 [--bg:linear-gradient(90deg,transparent_calc(50%-var(--spread)),var(--color-background),transparent_calc(50%+var(--spread)))] [.border-b]:pb-3 [.border-t]:pt-3 [[data-side=left][data-collapsible=offcanvas]_&]:-right-2 [[data-side=left][data-state=collapsed]_&]:cursor-e-resize [[data-side=left]_&]:cursor-w-resize [[data-side=right][data-collapsible=offcanvas]_&]:-left-2 [[data-side=right][data-state=collapsed]_&]:cursor-w-resize [[data-side=right]_&]:cursor-e-resize [agents-sdk:getWeather] [background-repeat:no-repeat,padding-box] a abort abortController abortFromExternalSignal abortSignal abortWhenNoSubscribersMs aborted about absolute absolutely acc accept accepted accepts access according account action actionContext actions active active:bg-sidebar-accent active:text-sidebar-accent-foreground activeChatId activeChatTitle activeConsumer activeId activeIndex activeItem activeStream activeStreams activeTheme activeTools activeWriter actively activityIndicator actual add addListNodes addLocal addSuffix addToolApprovalResponse added adding adding/removing adds adjust adjust-reading-level adjustHeight after after:-inset-2 after:absolute after:inset-y-0 after:left-1/2 after:md:hidden after:w-[2px] again again! agent agent-1 agent-runtime-history-compaction agent-runtime-history-compaction-summary agent-runtime-history-compaction-summary:message-2 agent-runtime-history-compaction-summary:message-4 agentId agentInstructions agentPrompt agentic agents agents-chat-model-selector-trigger agents-chat-sidebar-docked-slot agents-chat-sidebar-floating-panel agents-chat-sidebar-hover-badge agents-chat-sidebar-hover-button agents-chat-sidebar-hover-new-chat-button agents-chat-sidebar-hover-shell agents-chat-sidebar-hover-slot agents-chat-sidebar-hover-zone agents-chat-sidebar-panel agents-chat-sidebar-panel-controls agents-sdk agents-sdk-menu agents-sdk-tooltip agentsSchemas agentsSdkClientRoutes agentsSdkTailwindClasses agents_sdk_tool_approval_signing_v1 agg ai ai/v1 aihubmix alert alertVariants alibaba alibaba-cn align alignItemWithTrigger alignOffset all allow allow-forms allow-popups allow-presentation allow-same-origin allow-scripts allowReservedRbModelNames allowedChatModelIds allowedIds allowedModelIds allowedReasoningEfforts already alt alternate alternative always always-allow always_allow amazon-bedrock an analyze and animate animate-in animate-pulse animate-spin animated annotations another answer anthropic any anywhere api apiError apiId apiKey api_call api_catalog_search_unavailable api_schedule_call api_search apikey app appear append-message appendMessage application/json application/octet-stream application/pdf applies applyToolApprovalDecisionReasons applyToolApprovalStates approval approval-1 approval-requested approval-responded approval/denial approvalConfiguration approvalId approvalPolicies approvalState approvalStates approvalid approvals approve approved approvedToolApprovalResponse approximate arc are area args aria-disabled aria-disabled:opacity-50 aria-disabled:pointer-events-none aria-expanded:bg-accent aria-expanded:text-foreground aria-hidden aria-label aria-live aria-orientation aria-roledescription aria-selected aria-valuemax aria-valuemin aria-valuenow artifact artifact-close-button artifactDefinition artifactDefinitions artifactKind artifactKinds artifactMetadataByDocumentId artifactSnapshot artifactStatus artifacts artifactsPrompt as asChild ask asked asks aspect-square assertNodeTypeEqual assigned assistant assistant! assistant-1 assistantMessageCreatedAt assistantMessageId assistantMessageMetadata assumptions async asynchronously at atBottom attachment attachmentFiles attachmentLabel attachment_too_large attachments attachments-button attachments-preview attachmentsFromMessage attachmentsRef attr attributeFilter attributes attrs attrs1 attrs2 augmentation auth authIdentity authentication authorized authorizedByKey authorizedByUser auto auto-close auto-scroll autoCollapseTimeoutIdRef autoResume available availableChatModels availableModelIds availableTools avoid await awaitingManualApproval awaiting_approval axis azure b back backdrop-blur-sm backend background backgroundImage backgroundPosition bad_request bad_request:api bad_request:document bad_request:provider badgeVariants base64 basePath basePrompt baseURL baseUrl baseUrlFromEnv based baseten basic basicSetup basis-full batched be because become been before behavior being belongs beside bestMatch better between bevel bg-[length:250%_100%,auto] bg-accent bg-background bg-background/70 bg-background/75 bg-background/80 bg-border bg-card bg-clip-text bg-destructive bg-destructive/10 bg-destructive/5 bg-foreground/50 bg-gradient-to-b bg-gradient-to-l bg-gradient-to-t bg-input bg-linear-to-t bg-muted bg-muted-foreground/10 bg-muted-foreground/15 bg-muted-foreground/20 bg-muted-foreground/25 bg-muted-foreground/40 bg-muted/30 bg-muted/40 bg-muted/50 bg-popover bg-primary bg-primary-foreground/10 bg-primary-foreground/20 bg-primary/10 bg-secondary bg-sidebar bg-sidebar-accent bg-sidebar-accent-foreground/10 bg-sidebar-border bg-transparent bgColor big billable billing biome-ignore blank blob blob/data block block-end block-start blockquote body bonjour boolean booleans border border-0 border-0! border-b border-b-0 border-border border-border/50 border-destructive/25 border-destructive/50 border-input border-l border-l-2 border-l-transparent border-muted border-muted-foreground/20 border-muted-foreground/50 border-none border-none! border-r border-sidebar-border border-t border-t-0 border-t-0! border-t-transparent border-top-0! border-transparent borderRadius both bottom bottom-0 bottom-2 bottom-4 bottom-6 boundingBox branch branchIndex branches break break-all break-word break-words broken bucket bucketName buffer buffered build buildBaseUrl buildContentFromDocument buildDocumentFromContent buildHeaders buildPathWithTenant buildSummary business but button button-group button-group-separator buttonGroupVariants buttonVariants by bytes c cache cache-control cachedInputTokens calculated call call-1 callProviderMetadata callback callbackOptions calls can canGenerateChatTitle canLoadMore canScrollNext canScrollPrev canSubmitMessage cancel cancelCloseTimer cancelled candidate cannot canvas capability capacity capped capture capturing carousel carouselRef case catalog catch cause cell cellClass center cerebras change changed changedMessages changedSources changes channel charCount characterData characters chars chars1 chars2 chat chat-1 chat-model chat-reasoning-effort chat-title chatDate chatDbMock chatId chatIdentity chatIds chatInitialChatModel chatLoader chatModel chatModels chatToDelete chatUsageRecorded chatUsageStartedAt chatgpt chats chatsToDelete chatting! check checkIfAtBottom checked child childList childRef children children1 children2 childrenArray chunk chunkHeaders chunkResponse chunkSize chunking chunks chunksTotal chutes city cityName clarifying class class-variance-authority className classnames claude clean cleaned cleanedCsv cleanedText cleanup cleanupAfterMs clear clearInput clearLocal clearWaitingStatusTimer clearer clearly client client-side clientHeight clientY clip0_872_3147 clipPath clipRule clipboard clipboard! close closeActiveStream closeDelay closed closing cloudflare-workers-ai cn code codeArtifact codeDelta codePrompt codeTagProps codemirror collapsed collapsible collectSelectItems collection color column columns combine command command-input-wrapper commandDefaultValue commandItemMatches comments commonProps compact compactAgentRuntimeHistory compacted compactedHistory compactedText compactedThroughMessage compactedThroughMessageCreatedAt compactedThroughMessageId compaction compacts complete completeData completeHeaders completeResponse completed complex component components composeRefs composition computeChildEqualityFactor concise concluding concurrentlyCreatedIndex condition confidence config configurable configuration configure configureAgentRuntime configured configuredIdentity configuredModels configuredTools confirm connection consequences console consoleEndRef consoleError consoleOpen consoleOutputs const constraints consumer contact contacts contain container containerClassName containerRef contains content content-type contentHeight contentText contentType contents context contextValue continuation continuations continue continuous control controlledItem controlledProps controller conversation conversationError conversational conversations conversion convertBlobUrlToDataUrl convertToUIMessages convertedFiles cookie cookieHeader coordinates coords copy copy! copyToClipboard correct cortecs cosine cost could couldn count country create createAgentLoopRtsStreamProcessor createAgentToolApproval createChatTools createContext createDecorations createDiffMark createDiffNode createDocument createGoogleGenerativeAI createHash createMessage createNewNode createResumableChatStream createRoot createRtsMessageTransport createRuntimeStream createStreamId createSummaryMessage createTestWriter createTextNode createUrl createXai createZeroUsage created createdAt creates creating creation credentials credit crypto css csv ctx current currentArtifact currentBranch currentChat currentColor currentContent currentConversationTitle currentDate currentDecorations currentDocument currentDocuments currentHeight currentHigh currentHour currentItems currentLevel currentLow currentMessages currentMetadata currentModelId currentModelIdRef currentNode currentPathname currentPyodideInstance currentSelection currentState currentSuggestions currentTarget currentTenantId currentUserId currentValue currentVersionIndex current_units currentcolor currently cursor cursor-ns-resize cursor-pointer cursor-text custom customChat customPart customStyle custom_show customerId cx cy daily dailyIndex daily_units damping dangerouslySetInnerHTML dark dark:[&>img]:bg-foreground dark:bg-background dark:bg-input/30 dark:bg-muted dark:bg-transparent dark:block dark:border-0 dark:border-destructive dark:border-transparent! dark:from-muted dark:has-[[data-slot][aria-invalid=true]]:ring-destructive/40 dark:hidden dark:hover:bg-accent/50 dark:invert dark:prose-invert darkHtml data data-[active=true]:bg-sidebar-accent data-[active=true]:font-medium data-[active=true]:text-sidebar-accent-foreground data-[disabled=true]:opacity-50 data-[disabled=true]:pointer-events-none data-[ending-style]:opacity-0 data-[orientation=vertical]:h-auto data-[selected='true']:bg-accent data-[selected=true]:text-accent-foreground data-[side=bottom]:slide-in-from-top-2 data-[side=bottom]:translate-y-1 data-[side=left]:-translate-x-1 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1 data-[side=top]:slide-in-from-bottom-2 data-[starting-style]:opacity-0 data-active data-agents-sdk-resolved-theme data-agents-sdk-theme data-align data-appendMessage data-chat-title data-clear data-closed:animate-out data-closed:duration-300 data-closed:fade-out-0 data-closed:opacity-0 data-closed:slide-out-to-bottom data-closed:slide-out-to-left data-closed:slide-out-to-right data-closed:slide-out-to-top data-closed:slide-out-to-top-2 data-closed:zoom-out-95 data-codeDelta data-collapsible data-command-empty data-command-group data-command-group-heading data-command-input data-command-item data-command-list data-command-separator data-disabled data-disabled:cursor-not-allowed data-disabled:opacity-50 data-disabled:pointer-events-none data-finish data-highlighted:bg-accent data-highlighted:text-accent-foreground data-id data-imageDelta data-kind data-mobile data-open:animate-in data-open:bg-accent data-open:bg-sidebar-accent data-open:duration-500 data-open:fade-in-0 data-open:hover:bg-sidebar-accent data-open:hover:text-sidebar-accent-foreground data-open:opacity-100 data-open:slide-in-from-bottom data-open:slide-in-from-left data-open:slide-in-from-right data-open:slide-in-from-top data-open:slide-in-from-top-2 data-open:text-sidebar-accent-foreground data-open:zoom-in-95 data-orientation data-placeholder:text-muted-foreground data-role data-selected data-sheetDelta data-side data-sidebar data-sidebar-mode data-sidebar-transition data-size data-slot data-spinner-layer data-state data-suggestion data-testid data-textDelta data-title data-tool-approval-decision data-variant data-waiting-status dataColumns dataPart dataStream dataUrl database date date-fns dateStyle dateTime dated dates day dayHourlyIndexes dayTemperatures days db deadline debounce debouncedHandleContentChange debug debugging decision decision-call-1 decisions declare declared decoration decorationTransaction decorations decorative deepinfra deepseek def default default-assistant defaultActiveTools defaultBranch defaultChatModel defaultChatModels defaultColumnOptions defaultEffort defaultGetThinkingMessage defaultItem defaultMarkdownSerializer defaultNavigation defaultOpen defaultPrevented defaultProp defaultRehypePlugins defaultSidebarOpen defaultUrl defaultValue defaultVariants defined definition delay delayDuration delays delete deleteAllChatsByUserId deleteChatById deleteDocument deleteDocumentsByIdAfterTimestamp deleteHandler deleteHistory deleteId deleteKeyCode deleteMessagesByChatIdAfterTimestamp deleteNodeLen deletePromise deleted deletedAt deletedByUserId deletedCount deletedDocs deliberate delta demonstrates denied denies deny denyReason dependencies depending depth deriveTitleFromUserText derived derivedName desc describe described description destroy destructive detail detailed details dev did didJustFinishStreaming diff diff-editor diff-match-patch diffEditor diffMark diffNewChildren diffOldChildren diffSchema diff_match_patch diffedDoc different diffs dimensions direct directText directWeatherPatterns direction directly disableAutoResize disableSidebarOpenTransition disabled disabled:bg-muted disabled:cursor-not-allowed disabled:opacity-50 disabled:pointer-events-none disabled:text-muted-foreground discovers dispatch dispatchTransaction dispatcher display displayHourlyIndexes displayName displayTemperature displayTemperatures displayTime displayTimes displayedVote dispose disposed dist/tailwind-source.js distinct div dmp do doc docChanged dockSidebar docked docs document documentCreatedAt documentId documentPreviewKinds documentSchema documents does doing dom domValue domain don done down downvote dpi draftArtifact draftContent drafting drag dragConstraints dragElastic dragMomentum dragover drop dropping drops dual-mode duplicate dur durable duration duration-150 duration-200 duration-300 durationMs during dynamic dynamic-tool dynamicSpread earlier ease ease-in-out ease-linear easier edge edit editDocument editable edited editing editorRef edits effect effort efforts eft either elapsed element elementRefGetter eleted elevation else email embed embedMany embedding embeddingDimensions embeddingId embeddingModel embeddings embla-carousel-react emit emitArtifactStoreChange emitDecision emits empty en-US enableVirtualization enabled end endIndex endReachedOffsetPx endRef endSse end_date endingBefore ending_before endpoint ends enough enqueue ensure ensureArray entered entire entry enum equal equalityLeft equalityRight err error errorCause errorCode errorData errorElement errorMessage errorName errorStack errorText errorValue errors eslint-disable eslint-disable-next-line essay essays estimateByteLength estimateMessagesChars ev evenodd event events eventually every everything everywhere exact exampleSetup exceed exceeded executable execute executes executing execution exist existing existingChat existingIndex existingMessages exists exit expanded expects experimental_throttle experimental_toolApprovalSecret experimental_transform explaining explicit explicitly export exposes extends extensions external externalWebAccess externally extractMessageTextForHistoryCompaction f factorial fade-in fade-in-0 failAgentLoopRequest failed failedAt fails fait fallback fallbackChatModel fallbackDocument fallbackHourlyIndexes fallbackStoredText fallbackText fallbackTitle fallbackValue falls false fast fast-deep-equal fastrouter fc_1 feature feedback fence fetch fetchAuthIdentity fetchCurrentSessionIdentity fetchJson fetchMock fetcher field field-sizing-content field-sizing-fixed fields file file:bg-transparent file:border-0 file:font-medium file:text-foreground file:text-sm fileId fileInputRef fileList fileObjectId fileSearch fileSearchParams file_id file_not_found filename files files! filesRef filesystem_db_unavailable fill fill-current fillRule filter filtered final finalFocus finalLeftChildren finalRightChildren finalTranscript finalValue final_answer finally find find-and-replace findCompactedThroughIndex findCustomer findMatchNode finish finish! finish-step finishReason finishedAt fireworks-ai first firstElementChild firstForecastHourlyIndex firstForecastIndexInDay fitView fixed fixing flag flagship flex flex-1 flex-col flex-col-reverse flex-initial flex-nowrap flex-row flex-row-reverse flex-wrap floating focus-visible:opacity-100 focus-visible:outline focus-visible:outline-2 focus-visible:outline-none focus-visible:outline-offset-2 focus-visible:outline-ring focus-visible:ring-0 focus-visible:ring-2 focus-visible:ring-offset-0 focus-visible:ring-offset-2 focus-visible:ring-ring focus-visible:ring-sidebar-ring focus-within:border-border focus:bg-accent focus:bg-destructive/15 focus:outline-none focus:ring-0 focus:ring-2 focus:ring-offset-0 focus:ring-offset-2 focus:ring-ring focus:text-accent-foreground focus:text-destructive focusPromptOnCloseRef focusTargetRef follow-up following font-light font-medium font-mono font-normal font-sans font-semibold fontSize footer for forbidden forbidden:auth forbidden:chat forbidden:document forceLive forceLiveChat forecast forecastDate forecastHourlyIndexes forecastQuery form formData formRef format formatDistance formatISO formatMessageForSummary forwardRef found found! frameId framer-motion framework friendly from from-background/0 from-muted from-popover/95 front frozen fs fsDb fuck full fullStream fully function functional functionality functions fuzzy gap gap-0 gap-0.5 gap-1 gap-1.5 gap-2 gap-2.5 gap-3 gap-4 gap-6 gap-8 gap-px geist-icon general generate generateCodeDocument generateCsv generateId generateSheetDocument generateText generateTextDocument generateTextMock generateUUID generateUUIDFallback generated generatedTitle generation generationtime_ms generator generic geocodeCity geocoding get getActionText getAgentLoopRtsMessageChannel getAgentRuntimeConfig getApprovedToolApprovalResponse getArtifactMetadata getArtifactModel getArtifactSnapshot getAsChildRender getBucketName getChatById getChatId getChatIdQuery getChatIdentity getChatMenuTriggerId getChatModels getChatPath getChatStreamingStatus getChatStreamingUpdatedAtMs getChatTenantId getChatUserId getChatsByUserId getClientCookie getConversationErrorMessage getCookie getCookieHeader getCreatedAt getCreatedAtFromMetadata getCurrentTenantIdFromLocation getDefaultAgentDefinition getDefaultReasoningEffortForModel getDefaultReasoningEffortSelection getDerivedKey getDocument getDocumentContentById getDocumentId getDocumentTimestampByIndex getDocuments getDocumentsById getEdgeParams getElementRef getErrorLogDetails getErrorMessage getHandleCoordsByPosition getHistory getHistoryCompactionState getHostTheme getInitialReasoningEffortSelection getKeepStartIndex getLanguageModel getLastUnansweredUserMessage getLastVisibleAssistantMessage getLatestDocument getMessageById getMessageId getMessagesByChatId getMockCtxForTenant getModelDisplayName getNewChatPath getNodeAttribute getNodeAttributes getNodeChildren getNodeMarks getNodeProperty getNodeText getOutputErrorMessage getPayloadLogContext getProviderApiKeyHint getProviderDisplayName getProviderFromModelId getQueryString getReasoningEffortLabel getReasoningEffortPreference getReasoningEffortSelection getReasoningEffortsForModel getRequestHints getRequestPromptFromHints getRequestTenantId getRequestedReasoningEffort getResetHeader getResumableChatStream getRiskFallbackDecision getRuntimeAllowedChatModelIds getSelectItemsFromChildren getSelectedChatModel getServerSnapshot getSessionTenantId getSessionUser getSessionUserId getSnapshot getStableDomIdPart getStatusBadge getStatusLabel getStreamIdsByChatId getSuggestions getSuggestionsByDocumentId getSystemTheme getTenantFilesystemDb getTenantHeaderRecord getTenantIdFromCtx getTenantIdFromUrl getTextFromMessage getTextFromParts getThinkingMessage getTimestampMs getTitleModel getTitleSourceText getToolApprovalSigningSecret getToolApprovalStateMap getUploadKeyHash getUserIdFromCtx getUserText getVisibleStreamErrorMessage getVotes getVotesByChatId getWeather getWeatherContext gets getter ghost github github-copilot github-models given global globalDrop goToNext goToPrevious good google google-vertex google-vertex-anthropic google/gemini-3.5-flash googleApiKey googleModelId googleProvider gpt-5.6-luna gracefully grid groq group group-[.is-assistant]:bg-secondary group-[.is-assistant]:text-foreground group-[.is-user]:bg-primary group-[.is-user]:bg-secondary group-[.is-user]:ml-auto group-[.is-user]:px-4 group-[.is-user]:py-3 group-[.is-user]:rounded-lg group-[.is-user]:text-foreground group-[.is-user]:text-primary-foreground group-action group-content group-data-[collapsible=icon]:!p-0 group-data-[collapsible=icon]:!p-2 group-data-[collapsible=icon]:!size-8 group-data-[collapsible=icon]:-mt-8 group-data-[collapsible=icon]:hidden group-data-[collapsible=icon]:opacity-0 group-data-[collapsible=icon]:overflow-hidden group-data-[collapsible=icon]:w-[calc(var(--sidebar-width-icon)_+_theme(spacing.4)_+2px)] group-data-[collapsible=icon]:w-[var(--sidebar-width-icon)] group-data-[collapsible=offcanvas]:after:left-full group-data-[collapsible=offcanvas]:hover:bg-sidebar group-data-[collapsible=offcanvas]:translate-x-0 group-data-[collapsible=offcanvas]:w-0 group-data-[disabled=true]/input-group:opacity-50 group-data-[side=left]:-right-4 group-data-[side=left]:border-r group-data-[side=right]:border-l group-data-[side=right]:left-0 group-data-[variant=floating]:border group-data-[variant=floating]:border-sidebar-border group-data-[variant=floating]:rounded-lg group-data-[variant=floating]:shadow group-data-closed:-rotate-90 group-data-open:rotate-180 group-focus-within/menu-item:opacity-100 group-has-[>input]/input-group:pb-2.5 group-has-[>input]/input-group:pt-2.5 group-has-[[data-sidebar=menu-action]]/menu-item:pr-8 group-hover/menu-item:opacity-100 group-hover/message:opacity-100 group-hover:bg-accent group-hover:opacity-0 group-hover:opacity-100 group-hover:pointer-events-auto group-label group/input-group group/menu-item group/message group/sidebar-wrapper groupChatsByDate groupedChats groups grow grow-0 gt gte guide h-10 h-11 h-12 h-14 h-16 h-2 h-2.5 h-3 h-3.5 h-4 h-5 h-6 h-7 h-8 h-9 h-[1px] h-[200px] h-[257px] h-[calc(100dvh-60px)] h-auto h-dvh h-fit h-full h-px h:mm ha handle handleBranchChange handleChange handleClick handleContentChange handleCopy handleDelete handleFileChange handleInput handleKeyDown handleModelChange handleOpenChange handlePaste handlePayload handlePosition handleResize handleRetryConversationError handleRowsChange handleSaveContent handleScroll handleScrollToBottom handleSelect handleSubmit handleTransaction handleType handleUrlChange handleVersionChange handler handlers handles harden has has-[>[data-align=block-end]]:[&>input]:pt-3 has-[>[data-align=block-end]]:flex-col has-[>[data-align=block-end]]:h-auto has-[>[data-align=block-start]]:[&>input]:pb-3 has-[>[data-align=block-start]]:flex-col has-[>[data-align=block-start]]:h-auto has-[>[data-align=inline-end]]:[&>input]:pr-2 has-[>[data-align=inline-start]]:[&>input]:pl-2 has-[>[data-slot=button-group]]:gap-2 has-[>button]:ml-[-0.45rem] has-[>button]:mr-[-0.4rem] has-[>kbd]:ml-[-0.35rem] has-[>kbd]:mr-[-0.35rem] has-[>svg]:p-0 has-[>svg]:px-2 has-[>svg]:px-2.5 has-[>textarea]:h-auto has-[[data-slot=input-group-control]:focus-visible]:ring-1 has-[[data-slot=input-group-control]:focus-visible]:ring-ring has-[[data-slot][aria-invalid=true]]:border-destructive has-[[data-slot][aria-invalid=true]]:ring-destructive/20 has-[[data-variant=inset]]:bg-sidebar has-[select[aria-hidden=true]:last-child]:[&>[data-slot=select-trigger]:last-of-type]:rounded-r-md hasActiveConversation hasApiIdFilter hasAppliedDefaultValueRef hasAutoClosed hasAutoFocused hasHighlightedCode hasKnownField hasMetadata hasModelActivity hasMore hasNextPage hasOpenAiItemId hasReasoningText hasResumedRef hasSentMessage hasStreamingChats hasTextContent hasToolApprovalState hasToolLikeParts hasVectorField hasVisibleAssistantMessageContent hasVisibleMessagePart hasVisibleReasoningPart hasWeatherTool have having header header/trigger headerCellClass headers heading headings headless height hello helloWorld help helpful helps here hex hey hi hidden hide high high-volume highlight hints history historyCompaction historyQuery historyState hit hitboxRef honors horizontal host hour hourTime hourly hourlyTemperatures hourlyTimes hourly_units hoursToShow hover:after:bg-sidebar-border hover:bg-accent hover:bg-background hover:bg-destructive/80 hover:bg-destructive/90 hover:bg-muted hover:bg-muted-foreground/10 hover:bg-muted/50 hover:bg-primary/80 hover:bg-primary/90 hover:bg-secondary/80 hover:bg-sidebar-accent hover:border-muted-foreground/50 hover:opacity-100 hover:shadow-[0_0_0_1px_hsl(var(--sidebar-accent))] hover:text-accent-foreground hover:text-foreground hover:text-primary/90 hover:text-sidebar-accent-foreground hover:underline href html http huggingface human hydration i icon icon-sm icon-xs icons id idScope identity idle if iflowcn iframe ight ignore ignoreIncompleteToolCalls ignores image image/png imageArtifact imageDelta imageItems images img immediate immediately import importOriginal important improve in in_progress inception include includeDeleted incoming incomingMessage incomplete indefinite index indexURL indexes infer inference infinite information informational/explanatory inherit init initData initResponse initial initialArtifactData initialChatModel initialInput initialMessages initialModelId initialOpenAIReasoningEffort initialReasoningEffort initialRows initialTextInput initializationPromise initialize initializer injects inline inline-block inline-end inline-flex inline-start inlineUnsupportedOpenAiFileParts inlining inner innerHTML innerHeight innerWidth input input-attachment-loader input-attachment-preview input-available input-group input-group-addon input-group-control input-streaming inputGroupAddonVariants inputGroupButtonVariants inputJson inputRef inputRules inputSchema inputTextDelta inputTokenDetails inputTokens insert insertNodeLen inserting inset inset-0 inset-x-0 inset-y-0 inside installs instanceof instant instead instructions insufficient intelligence intended interactive interface interimResults internal internal:api internet interpreter interpreting interval intervalId into invalid invalidTarget invalid_file_id invent io is is-assistant is-user is-user:dark isActive isAnimating isApprovalState isArtifactVisible isAtBottom isAtBottomRef isAutomatic isAvailableReasoningEffort isChatStreamingStale isControlled isCopied isCurrentChat isCurrentForecast isCurrentHour isCurrentVersion isDark isDay isDenied isDisabled isDocumentPreviewResult isDocumentsFetching isEmptyAssistantMessage isEqual isFetchingNext isFinal isGenericConversationErrorMessage isGoogleModel isGoogleModelId isGreeting isHistoryCompactionState isImage isInitialLoading isInitialized isInline isListening isLoading isMobile isModelRegistered isModelStreamActivity isNode1Array isNode2Array isNodeEqual isObject isOpen isOpenAiModel isOpenAiModelId isPlaywright isPreviewCollapsed isProduction isPublic isReactWarning isReadonly isReady isReasoningModel isReasoningModelId isRecord isRenderableMessagePart isRenderableMessagePartType isResolved isSelected isSpecializedToolType isStaleStreaming isStreaming isSuccessful isSupportedChatModelId isText isTextLike isTextNode isToolApprovalFlow isToolApprovalStatePart isToolLikeMessagePart isToolLikeMessagePartType isToolPart isToolUIPart isToolbarVisible isTruthyEnv isUntitledChatTitle isUpdate isUploading isUpvoted isUserScrollingRef isValidElement isVisible isVisibleConversationMessage isWeatherToolActive isWebSearchActive isWithinInterval isXaiModel isXaiModelId isn iso8601 isolated issue it italic item item-aligned itemId itemValue items items-center items-end items-start items-stretch iteratively its itself js json just justify-between justify-center justify-end justify-start keep keep-alive keepEnd keepStart keeps kept keptSuggestions key keyboard keydown keyof keywords kind know knowledge knowledgePrompt label labelVariants labels lang language languages last lastActivityAt lastActivityAtFilter lastAssistantHasVisibleContent lastAttachment lastContext lastContextChanged lastExistingMessage lastInitializationFailure lastMessage lastMonth lastSelection lastSelectionRef lastStreamingHeartbeatAt lastUnansweredUserMessage lastVisibleAssistantMessage lastWeek lat latest latestDefinition latitude leading-none leading-relaxed leading-tight leaks leave leaves left left-0 left-1/2 left-2 left-[50%] leftNewNode leftOldNode legacyChatModelIds legitimate length let level lg lg:flex-row li library lifts light like likely limit limits line line-clamp-1 line-clamp-2 line-clamp-3 line-numbers line-through lineArray lineHash lineHeight lineNumberStyle lineNumberTransformer lineStart linear link list listbox listener listeners little llama lmstudio load loadMore loadPyodide loader loading loading_packages local localStorage localStorageInput localTheme location log logAgentLoopError logWeatherToolError logical logo logoProvider logs lon longer longitude lookup loop loops lost low lt lucide-react lucidquery m m-0 m-4 made main major make makes malformed manual many map maps margin mark markClosed markModelActive markStaleChatStreamingIdle markdown markerEnd marks marks1 marks2 markup master match matchMedia matchNodeType matchNodes matchedCount matchedNodes matches matchesAccept matplotlib max max-age max-h-40 max-h-48 max-h-96 max-h-[22rem] max-h-[300px] max-h-[8.25rem] max-h-[var(--available-height)] max-h-full max-lines max-w-(--breakpoint-toast-mobile) max-w-(--skeleton-width) max-w-2xl max-w-3xl max-w-4xl max-w-[100px] max-w-[14rem] max-w-[18rem] max-w-[450px] max-w-[80%] max-w-[800px] max-w-[95%] max-w-[var(--skeleton-width)] max-w-full max-w-full! max-w-lg max-w-prose max-width maxAge maxBufferBytes maxChars maxContextChars maxContextMessages maxEstimatedChars maxFileSize maxFiles maxHeight maxMessages maxRetries maxSteps maxSummaryChars max_file_size max_files maximum may maybeMarkChatStreamingIdle maybeRefreshStreamingHeartbeat mb-1 mb-2 mb-3 mb-4 mb-auto md md:-right-16 md:block md:border-l md:gap-3 md:gap-4 md:gap-6 md:hidden md:mt-16 md:opacity-0 md:p-20 md:pb-4 md:peer-data-[state=collapsed]:peer-data-[variant=inset]:ml-2 md:peer-data-[variant=inset]:m-2 md:peer-data-[variant=inset]:ml-0 md:peer-data-[variant=inset]:rounded-xl md:peer-data-[variant=inset]:shadow md:px-4 md:px-8 md:text-2xl md:text-sm me meaningful mediaType medium memo memory menu menu-action menu-badge menu-button menu-item menu-skeleton menu-skeleton-icon menu-skeleton-text menu-sub menu-sub-button menuBar menuTriggerId menus merge mergeConsecutiveReasoningParts mergeHistoryCompactionState mergeProps merged mergedParts mergedProps message message-1 message-2 message-3 message-4 message-5 message-6 message-7 message-assistant-loading message-attachments message-content message-downvote message-edit-button message-editor message-editor-send-button message-error message-error-retry message-message-1-reasoning-0 message-reasoning message-upvote messageCallback messageChanged messageCount messageId messageIds messageMetadata messageMetadataSchema messages messagesToCompact meta metaKey metadata metadataUserId method middleware mimeType min-h-0 min-h-10 min-h-12 min-h-16 min-h-[24px] min-h-[80px] min-h-[calc(1lh+1.5rem)] min-w-0 min-w-10 min-w-5 min-w-[24px] min-w-[8rem] min-w-[var(--anchor-width)] min-w-[var(--sidebar-width)] minChildLen minDurationMs minHeight minKeep minScore minWidth minimal minute misses missing mistral ml-1 ml-6 ml-auto mobile mod modal mode model modelCtx modelId modelIds modelInputMessages modelMessages modelName models modelsByProvider modelscope modifiedCount modify module modules mongodb mongoose month moonshotai moonshotai-cn morph most mostRecentDocument mostRecentMessage motion mousedown mousemove mouseup moveActive mql mr-0.5 mr-2 mr-4 ms msg_1 msg_complete msg_incomplete msg_user mt-0.5 mt-1 mt-1.5 mt-2 mt-3 mt-4 mt-6 multi-part multi-step multimodal-input multiple must mutationObserver mx-2 mx-3.5 mx-auto my my-0 my-1 n nURL name names namespace namespaced nanoid native nativeDb navigate navigation navigator nearest nebius necessary need needed needs needsApproval network never new newAfterMatchChildren newBeforeMatchChildren newBranch newChatLoader newChatPath newChild newChildLen newChildren newContainer newContent newCsvContent newDecorations newDeltas newDoc newDocument newEndIndex newHeight newHtmlContent newMessages newNode newOpen newRows newSentences newSize newStartIndex newState newText newUrl newValue new_string newline next nextArtifact nextContext nextHeaders nextIndex nextItems nextLastContext nextMessage nextMessages nextMetadata nextPart nextParts nextProps nextRtsUid nextSelection nextSuggestions nextTheme nextValue nextVote nin no no-cache no-debounce no-save no-store noDangerouslySetInnerHtml noDocumentCookie noEmptyBlockStatements noImgElement noStaticOnlyClass noSubscribersAbortTimer node node-container node:crypto nodes non-empty nonEmptyRows none noop noopener noreferrer normalizeChat normalizeCommandText normalizeDocumentKind normalizeHistoryCompactionLimits normalizeMaxSteps normalizeNodeContent normalizeNonnegativeInteger normalizeOptionalBoolean normalizePositiveInteger normalizePromptText normalizeSignedInTenants normalizeString normalizeTenantId normalizeTimestamp normalizeToolApprovalHistoryForModel normalizeUsage normalizeVote normalized normalizedApproval normalizedBase normalizedChatId normalizedCurrentPath normalizedCurrentUserId normalizedDocumentId normalizedDocuments normalizedHistory normalizedMessage normalizedModelId normalizedNewChatPath normalizedPath normalizedText normalizedUsage not not-prose not_found not_found:chat not_found:document notifyAgentRunState now nowMs nserted null num numDimensions number numeric nvidia nyc object object-contain object-cover observe observer observers occurred occurrences of off offcanvas offer offline offline:chat offset offsetX offsetY ok old oldAfterMatchChildren oldBeforeMatchChildren oldChild oldChildLen oldChildren oldContainer oldContent oldDoc oldEndIndex oldEndNode oldHtmlContent oldNode oldSentences oldStartIndex oldStartNode oldText old_string older omittedProperties omitting on onAbort onActiveChatTitleChange onAnimationComplete onAnimationStart onApply onCellClick onChange onChunk onClick onClose onCompositionEnd onCompositionStart onData onDecision onDelete onDragEnd onDragOver onDragStart onDrop onEndReached onError onFinish onHoverEnd onHoverStart onKeyDown onKeyDownCapture onMessage onModelChange onMouseDown onMouseMove onOpenAIReasoningEffortChange onOpenChange onPaste onPointerDown onRemove onRetry onRetryConversationError onReviewerUsage onRowsChange onRtsMessage onSaveContent onSelect onStreamPart onSubmit onTranscriptionChange onValueChange onViewportEnter onViewportLeave once one one-dark-pro one-light oneDark oneMonthAgo oneWeekAgo onend onerror onload onloadend only onresult onstart op opacity opacity-0 opacity-100 opacity-20 opacity-60 opacity-70 open openAiApiKey openAiMetadata openDelay openDownloadStream openFileDialog openFileDialogLocal openMobile openProp openRef openState openai openai/gpt-5 openai/gpt-5.4-mini openai/gpt-5.5 openai/gpt-5.6 openai/gpt-5.6-luna openai/gpt-5.6-sol openai/gpt-5.6-terra openaiReasoningEffort openaiReasoningEffortRef openaiReasoningSummary opencode opening openrouter opt-in optimisticDocuments optimisticVote option optional optionalValue options or order order-first order-last ordered orderedmap orientation origin origin-[var(--transform-origin)] original originalMessages originalSentence originalText originalUrl other otherwise ottom our out outline outline-hidden outline-none output output-available output-denied output-error outputContent outputErrorMessage outputText outputTokenDetails outputTokens outputs outside over overflow-auto overflow-hidden overflow-x-auto overflow-x-hidden overflow-x-scroll overflow-y-auto overflow-y-hidden overflow-y-scroll overflowWrap overflowX overflowY overscroll-behavior-contain overview own ownerKeyHash p p-0 p-1 p-1.5 p-2 p-2.5 p-3 p-3! p-4 p-6 p-8 p-[1px] package paddedData paddedRow padding paddingBottom paddingRight paddingTop pageInfo pagination panOnDrag panOnScroll papaparse paragraph parallel parallelToolCalls param parameters parent parse parseBody parseData parseKind parseLimit parseUploadedFileUrl parsed parsedTimestamp parser part partRecord partialOutput partialOutputStream parts pass passive past paste pasted patchDocumentNode patchRemainNodes patchTextNodes path pathname pattern patterns payload pb-1 pb-2 pb-3 pb-4 pb-[calc(80dvh)] peer peer-data-[active=true]/menu-button:text-sidebar-accent-foreground peer-data-[size=default]/menu-button:top-1.5 peer-data-[size=lg]/menu-button:top-2.5 peer-data-[size=sm]/menu-button:top-1 peer-disabled:cursor-not-allowed peer-disabled:opacity-70 peer-hover/menu-button:text-sidebar-accent-foreground peer/menu-button pending per perform performs perplexity persist persistSessionTenantId persisted persists phase phone photos piece ping pivot pivotLastActivityAt pl-2 pl-3 pl-4 pl-8 placeholder placeholder:text-muted-foreground plan plan-action plan-content plan-description plan-footer plan-header plan-title plan-trigger please plots plt plugins png png_base64 png_buf pointer-events-auto pointer-events-none policies policy policy-violating polish polite popper pos position positions positive postDocument potential pr-2 pr-3 pr-4 prediction prefer preferredEffort prefers-color-scheme prefersWeatherToolForPrompt prefix prepare present presentation preserves pressed prev prevProps prevent preview previewDocument previous previousContext previousMessage previousSummary previousThroughIndex previousValue previously private proceed process processedCount processor production professional programmatically progress project projectedSuggestions projection promises prompt promptInputScrollAreaHeight promptInputScrollAreaRef prop properties propertyName propertyNames proportionate proposed props propsRefDescriptor propsRefGetter propsWithRef prose prosemirror-example-setup prosemirror-inputrules prosemirror-markdown prosemirror-model prosemirror-schema-basic prosemirror-schema-list prosemirror-state prosemirror-view protocol provide provided provider providerExecuted providerMetadata providerModels providerName providerNames providerOptions providers pruned/unsupported. pt-0 pt-1 pt-12 pt-2 pt-20 pt-3 pt-4 pt-[60px] publish publishDone publishJson publishQueue publishRtsMessage publishRuntimeChatMessage push put px px-0 px-0.5 px-1 px-1.5 px-10 px-2 px-2.5 px-3 px-3.5 px-4 px-8 py-0 py-0.5 py-1 py-1.5 py-2 py-2.5 py-3 py-3.5 py-4 py-6 py-8 pyplot python quality queries query queryEmbeddings queryVector queryable questions queue queueStreamingHeartbeatRefresh quota r race rail randomArr randomUUID rate rate_limit rate_limit:chat raw rawId rawMessage rawPayload rawReasoningEffort rawTenantId rawUrl rawUsage rawUserId rawValue rb-tenant-id rb-upload-key rbAgentsUsageEventFeatureValues rbAgentsUsageEventStatusValues rb_agents_api_catalog_embedding_api_id_unique rb_agents_api_catalog_embedding_vector rb_agents_api_catalog_embeddings rdg-dark rdg-light re re-add re-expanding reInit react react-data-grid react-dom react-dom/client react-dom/server react-syntax-highlighter read readErrorPayload readUIMessageStream readUploadedFileBytes reader reading reading-level-selector readonly reads ready real-time reason reasonable reasoning reasoning-1 reasoning-delta reasoning-end reasoning-file reasoning-item reasoning-start reasoningEffort reasoningId reasoningSummary reasoningTokens reasons recent recentMessages recognition recognitionRef record recordChatUsageOnce recordUsageEvent records rect redirect reduce reducing ref references reflected refresh refs regenerate regenerateChatResponse region register registerFileInput registerItem regularPrompt rehypePlugins reject rejected rel related relative releaseReaderLock remainingChars remove removeLocal removed removedItemReferences removes renaming render renderCell renderEditCell renderErrorExtra renderMessagePart renderSidebarChat renderToStaticMarkup renderToString renderableMessagePartTypes rendered renders repeat repeatCount repeated replace replace_all replacement replacements replacing replayed reply req request request-suggestions requestHints requestPath requestPrompt requestSchema requestSuggestions requestTenantId requestUrl request_manual requested requestedDate requestedDefault requestedUrl requests requesty require required requiredHandlers requires requiresScrollPadding requiresSigningSecret res reset resetChatData resetChatStore resizable resize resize-none resizeObserver resizeOnNewLinesOnly resolve resolveActiveChatTools resolveHistoryCompactionForRun resolveInlineAttachments resolveMetadataBoolean resolvePolicyDecision resolveReviewerInstructions resolveRuntimeAgent resolveRuntimeUsageContext resolveTarget resolveTheme resolved resolvedHistory resolvedItems resolvedLineHeight resolvedPaddingBottom resolvedPaddingTop resolvedTheme resolvedTools resolver resources response response! responseMessage responseMessageParts responseSchema responseText responses rest result resultIndex resultProviderMetadata resultText results resumable resumeStream retry return returnDocument returned returning returns revalidator review reviewTarget reviewer reviewer-model reviewerModel reviewerOutputSchema reviewerSystemPrompt rewording rewrite rewrites right right-0 right-0.5 right-1 right-2 right-3 right-4 right-6 right-[9px] rightNewNode rightOldNode ring-0 ring-1 ring-border ring-offset-background ring-sidebar-ring risk risk_fallback role root rootData rootLoader rootLoaderData rotate-0 rotate-180 rotate-90 round rounded rounded-2xl rounded-[calc(var(--radius)-5px)] rounded-[inherit] rounded-b-2xl rounded-b-md rounded-full rounded-lg rounded-md rounded-none rounded-sm rounded-t-2xl rounded-t-md rounded-xl route routeRtsUid routes row rowData rowIdx rowIndex rowNumber rowNumberColumn rows rs_1 rs_complete rts-message rtsMessageChannel rtsUid rules run runAgentLoop runId runOptions runSelect runnable running runtime runtime-managed runtimeChatModels runtimeConfig runtimePrompt s safe safeMediaType safeParts salut same sandbox sanitization sanitizeChatTitle sanitizeForReview sanitizeMessageParts sanitizeOpenAiResponseHistory sanitizePart sanitizeSegment sanitizeText sanitized sanitizedHistory sanitizes satisfies save save/reuse saveChat saveContent saveDocument saveMessages saveSuggestions saveUsageEvent saved savedDocument saves says scale scale-0 scale-100 scaleway schema schemas scira scopes score script scripts scroll scrollArea scrollAreaHeight scrollAreaRef scrollHeight scrollIfNeeded scrollNext scrollPrev scrollTimeout scrollToBottom scrollTop scrollViewportRef scrolling search searchContextSize searchInput searchParams searchText searchValue secondary secondaryTools seconds secret section sections security see seenApiIds segmentHasOpenAiReasoningItem segmentStart select select-none selectActive selectItem selectItems selectRef selectSnapshot selected selectedChatModel selectedModel selectedModelId selectedReasoningEffort selectedTool selectedValue selecting selection selectionEnd selectionOnDrag selectionStart selector self-center self-end self-start self-stretch send send-button sendAutomaticallyWhen sendChatMessage sendMessage sendReasoning send_reply sending sensitiveKeyPattern sent sentence sentence-level sentences sentencesToChars separate separates separator serializeRecentMessages serialized server session sessionTenantId sessionUser sessionUserId set setActiveId setApi setArtifact setArtifactMetadata setArtifactSnapshot setAttachmentFiles setAttachments setBranches setCanScrollNext setCanScrollPrev setChatSessionTenantId setConsoleOpen setConsoleOutputs setConversationError setCount setCurrent setCurrentBranch setCurrentConversationTitle setCurrentLevel setCurrentModelId setCurrentVersionIndex setDarkHtml setDataStream setDeleteId setDisableSidebarOpenTransition setDocument setDraftContent setDuration setEndSentinelNode setHasAppendedQuery setHasAutoClosed setHasSentMessage setHasUserSelectedLevel setHeight setHtml setInput setInputValue setIsAnimating setIsAtBottom setIsComposing setIsContentDirty setIsCopied setIsExpanded setIsHovered setIsListening setIsLoading setIsMobile setIsMutating setIsOpen setIsResizing setIsSubmitting setIsToolbarVisible setItems setLocalRows setLocalStorageInput setLocalTheme setMessages setMetadata setMode setOnInsert setOpen setOpenMobile setOpenProp setOpenaiReasoningEffort setOptimisticDocuments setOptimisticVote setPromptInputScrollAreaHeight setRecognition setRef setResolvedHistory setResolvedRtsUid setResolvedTheme setScrollAreaHeight setSearch setSelectedTool setShowDeleteDialog setShowLoadingSkeleton setStartTime setStreamingStatusNow setTextInput setTheme setTimeout setUiMessageStreamHeaders setUncontrolledProp setUploadQueue setUrl setValue setWaitingStatus setting setup sha256 shadow-[0_0_0_1px_hsl(var(--sidebar-border))] shadow-lg shadow-md shadow-none shadow-none! shadow-sm shadow-xl shadow-xs shared sheet sheetArtifact sheetDelta sheetPrompt sheetVariants shiki short shortModelId shortcut should shouldAutoGenerateChatTitle shouldCompact shouldContinue shouldGenerateChatTitle shouldGenerateTitle shouldKeepCaretVisible shouldSendFullHistory shouldShow shouldShowDetails shouldShowPreviewToggle shouldShowThinkingMessage shouldUseScrollArea shouldUseSdkDarkClass shouldUseToolStub show showIcon showLineNumbers showLoadingSkeleton showOnHover shrink-0 side side-effects sideOffset sidebar sidebar-history sidebar-hover-new-chat-button sidebar-hover-trigger-button sidebar-panel-toggle-button sidebar-toggle-button sidebarActions sidebarCookie sidebarDefaultOpen sidebarHistoryState sidebarMenuButtonVariants sidebar_state sign signal signature signed signedInTenants signing signingSecret similarity single size size-0.5 size-16 size-2 size-2.5 size-24 size-3 size-3.5 size-4 size-5 size-6 size-7 size-8 size-9 size-96 size-[40px] size-auto size-fit size-full sized skipEmptyLines sleep slide slide-in-from-top-2 slider sm sm:flex sm:flex-row sm:gap-0.5 sm:gap-2 sm:grid-cols-2 sm:justify-end sm:max-w-sm sm:mt-0 sm:px-10 sm:py-10 sm:rounded-lg sm:space-x-2 sm:text-left small smooth snapshot snippet snippets so sort sortable source source-document source-url sourceHash sourceNode sourcePos sourcePosition sourceX sourceY sources space space-y-1 space-y-1.5 space-y-2 space-y-3 space-y-4 span special specializedToolTypes specific specify speechRecognition spinner spread spreadsheet spreadsheets spring sr-only src ssr stableIdScope stale standard start start-step startCloseTimer startIndex startNewChat startResizing startState startStream startStreamingHeartbeat start_date startedAt starting startingAfter starting_after starts startsNextSegment state statements states static status statusByType statusCode statusIcons statusLabels statusStyles statusText stays step step-start steps sticky stiffness still-waiting stop stop-button stop-icon stopResizing stopStreamingHeartbeat stopWaitingStatus stopWhen stopped store stored storedHashByApiId storedMessages storedSources stores str stream streamId streamPart streamProcessor streamTarget streamText streamTransport streamdown streamed streaming streamingHeartbeatActive streamingHeartbeatRefresh streamingUpdatedAt streams string stringFromMarkdown stripMongoFields stripOpenAiItemId stroke stroke-1 stroke-ring strokeDasharray strokeLinecap strokeLinejoin strokeWidth structured stub style subWeeks submit submitButton submitForm submitted submitting submodel subscribe subscribeArtifactStore subscriber subscribers substantial subtree success successfully successfullyUploadedAttachments such suggested suggested-actions suggestedActions suggestedSentence suggestedText suggestion suggestion-highlight suggestionId suggestions suggestionsPlugin suggestionsPluginKey summarizing summary summaryIndex sunrise sunset supplied supportsReasoningEffort suppressHydrationWarning surface surrounding svg switch sy sync syncHiddenInput synchronize synchronous synthetic system systemPrompt t t3 tabIndex tabular tabular-nums tabular/CSV tag tagName tags target targetId targetNode targetPos targetPosition targetRisk targetX targetY targeted targets task tasks tempContainer temperature_2m temporarily temps ten tenant tenantId tenant_missing tense test test-model testId text text-1 text-2xl text-3xl text-[10px] text-[11px] text-accent-foreground text-balance text-base text-base! text-card-foreground text-center text-delta text-destructive text-destructive-foreground text-embedding-3-large text-end text-foreground text-left text-lg text-muted-foreground text-muted-foreground/40 text-muted-foreground/50 text-popover-foreground text-primary text-primary-foreground text-primary-foreground! text-primary-foreground/60 text-primary-foreground/70 text-primary-foreground/80 text-primary-foreground/90 text-right text-secondary-foreground text-sidebar-accent-foreground text-sidebar-foreground text-sidebar-foreground/50 text-sidebar-foreground/70 text-sm text-start text-transparent text-xl text-xs text/csv text/event-stream text1 text2 textArtifact textDelta textFromParts textId textInput textNode textNodes textParts textTransaction textValue textarea textareaRef textblockTypeInputRule than that the their them theme then there they think thinking thinkingPrompt this those through throw throwResponseError throws time timeStyle timeout timeoutId timeoutRef timer timestamp timestamps timezone timezone_abbreviation tiny title title1 title2 titlePrompt titleSourceText titleUsageStartedAt titles to to-background to-transparent toFiniteNumber toText toToolApprovalStatus toast today togetherai toggle toggleListening toggleSidebar token tokenize tokenizeSentences tokens too tool tool-1 tool-approval-decision tool-approval-review tool-call tool-createDocument tool-editDocument tool-findCustomer tool-getWeather tool-get_context tool-input-available tool-input-delta tool-input-start tool-output-available tool-requestSuggestions tool-send_reply tool-updateDocument tool-update_record toolApproval toolApprovalFlow toolCallId toolId toolName toolPart toolStates toolbar toolbarRef tools toolsByArtifactKind toolsWithSearch toolsWithoutSearch tooltip top top-0 top-0.5 top-1.5 top-1/2 top-2 top-3.5 top-4 top-7 top-[13px] top-[50%] total totalBranches totalBytes totalSize totalTokens totalUsage touch-none touch-pan-y tr trace-1 traceId track tracking-tight tracking-wide tracking-widest trailingMessage transaction transcript transformers transient transition transition-[color,box-shadow] transition-[margin,opacity] transition-[max-height] transition-[width,height,padding] transition-[width] transition-all transition-colors transition-opacity transition-transform translate-x-[-50%] translate-x-px translate-y-[-50%] transparent transport trigger trim trimTrailingEmptyAssistantMessages trouble true truncate truncateMiddle truncated try turn ty type type1 type2 typeof types ul ules unauthorized unauthorized:auth unauthorized:chat unauthorized:document unavailable unavailableError uncertain uncontrolledProp undefined under underline underline-offset-4 understanding unexpectedly unique unknown unless unmount unmounting unparse unrecognized unregisterItem unsubscribe unsupported untouched untrusted unverified up update updateChatAgentIdById updateChatLastContextById updateChatSelectedModelById updateChatStreamingById updateChatTitleById updateDocument updateDocumentPrompt updateLeft updateListener updateOne updateRight updateTheme updated updatedAt updatedContent updatedData updatedMessage updatedMessages updatedParts updater updaterFn updates updating upload uploadFile uploadId uploadKey uploadPromises uploadedAttachments uploading uploads uppercase upsert upsertMessage upserts upstage upvote url urlHint usage usageContext use use-stick-to-bottom useAgentsChatNavigation useAgentsSession useArtifact useArtifactSelector useAutoResume useBranch useCallback useCarousel useCarouselApi useChainOfThought useChat useChatDocuments useChatVotes useCommand useConfirmation useConsistentTypeDefinitions useContext useControllableState useCopyToClipboard useDataStream useDebounceCallback useEffect useFormStatus useImageSize useIsMobile useMemo useMessageBranch useMessages useNavigate useOnClickOutside useOpenInContext useOptionalPromptInputController useOptionalProviderAttachments usePlan usePromptInputAttachments usePromptInputController useProviderAttachments useQuery useReasoning useRef useRouteLoaderData useScrollPagination useScrollToBottom useSearchParams useSidebar useState useStickToBottomContext useStub useSyncExternalStore useSyncExternalStoreWithSelector useTheme useWebPreview useWindowSize used useful usehooks-ts user user-approval user-uploaded userId userLocation userMessage userMessageId userMessageParts userMessageRole userMessages userText users uses usesTaggedThinking using usingProvider utc_offset_seconds utf-8 utf8 v v0 v1 valid validateTarget value valueText valueToSet values variable variant variants vector vectorSearch vectorSearchScore venice vercel version versions vertical very vi view viewBox viewRef viewing viewport viewportNode visibility visibilityBySurface visible visibleApiIds visibleCount visibleHistory visibleItems visibleMessages visibleSuggestedActions visibleTitle1 visibleTitle2 visualize vitest vitest-user vocabulary void vote voteMessage voted votes vs vultr w-1/2 w-1/3 w-10 w-12 w-2 w-2.5 w-2/3 w-24 w-3.5 w-3/4 w-32 w-36 w-4 w-40 w-48 w-5 w-52 w-56 w-64 w-7 w-8 w-80 w-96 w-[112px] w-[1px] w-[240px] w-[400px] w-[min(100%,450px)] w-[var(--sidebar-width)] w-auto w-fit w-full w-max w-px w-sm wait waiting waiting-status waitingStatus waitingStatusTimer waitingText wandb want warn was wasStreamingRef we weather weatherAtLocation weatherData weatherResponse webSearch webkitSpeechRecognition went were what when where wherever whether which while whileHover whileTap whitespace-normal whitespace-nowrap whitespace-pre-line widget width widthClass will will-change-scroll window windowWidth with withCurrentTenantHeader withSummaryMessage withTenantHeader within withinSize without withoutChatSegment withoutNewlines word wordBreak words work workflows working workloads works workspaceId world would wrap-break-word wrapLanguageModel write writeSse writeToolApprovalDecision writeWaitingStatus writer writing x x-accel-buffering x-playwright-reset x-vercel-ai-ui-message-stream x1 x2 xAI xai xai/grok-4.3-thinking xaiApiKey xaiModelId xaiProvider xamples xhigh xmlns xmlnsXlink xs xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx y y1 y2 yToLevel year yes yesterday yet you your z z-1 z-10 z-20 z-40 z-50 zai zai-coding-plan zenmux zhipuai zhipuai-coding-plan zod zoom-in-95 zoomOnDoubleClick";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rpcbase/agents-sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.21.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -65,6 +65,11 @@
|
|
|
65
65
|
"types": "./dist/runtime.d.ts",
|
|
66
66
|
"default": "./dist/runtime.js"
|
|
67
67
|
},
|
|
68
|
+
"./api-catalog-search": {
|
|
69
|
+
"import": "./dist/api-catalog-search.js",
|
|
70
|
+
"types": "./dist/api-catalog-search.d.ts",
|
|
71
|
+
"default": "./dist/api-catalog-search.js"
|
|
72
|
+
},
|
|
68
73
|
"./agents-sdk.css": "./dist/agents-sdk.css",
|
|
69
74
|
"./tailwind-source.js": {
|
|
70
75
|
"types": "./dist/tailwind-source.d.ts",
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import type { HTMLAttributes } from "react";
|
|
2
|
-
export type LoaderProps = HTMLAttributes<HTMLDivElement> & {
|
|
3
|
-
size?: number;
|
|
4
|
-
};
|
|
5
|
-
export declare const Loader: ({ className, size, ...props }: LoaderProps) => import("react").JSX.Element;
|
|
6
|
-
//# sourceMappingURL=loader.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"loader.d.ts","sourceRoot":"","sources":["../../../src/components/ai-elements/loader.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,OAAO,CAAA;AAmF3C,MAAM,MAAM,WAAW,GAAG,cAAc,CAAC,cAAc,CAAC,GAAG;IACzD,IAAI,CAAC,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,eAAO,MAAM,MAAM,kCAAwC,WAAW,gCAUrE,CAAA"}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import type { HTMLAttributes } from "react";
|
|
2
|
-
export type LoaderProps = HTMLAttributes<HTMLDivElement> & {
|
|
3
|
-
size?: number;
|
|
4
|
-
};
|
|
5
|
-
export declare const Loader: ({ className, size, ...props }: LoaderProps) => import("react").JSX.Element;
|
|
6
|
-
//# sourceMappingURL=loader.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"loader.d.ts","sourceRoot":"","sources":["../../../src/components/elements/loader.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,OAAO,CAAA;AAmF3C,MAAM,MAAM,WAAW,GAAG,cAAc,CAAC,cAAc,CAAC,GAAG;IACzD,IAAI,CAAC,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,eAAO,MAAM,MAAM,kCAAwC,WAAW,gCAUrE,CAAA"}
|