@copilotkit/react-core 1.68.3-canary.1786716392 → 1.68.3
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/{copilotkit-CZjzQPdq.d.mts → copilotkit-BUIK5yln.d.mts} +3 -33
- package/dist/copilotkit-BUIK5yln.d.mts.map +1 -0
- package/dist/{copilotkit-EFunREg5.cjs → copilotkit-Bocmlr37.cjs} +1 -76
- package/dist/copilotkit-Bocmlr37.cjs.map +1 -0
- package/dist/{copilotkit-DT2FmOwK.mjs → copilotkit-C4RqjAba.mjs} +2 -71
- package/dist/{copilotkit-DT2FmOwK.mjs.map → copilotkit-C4RqjAba.mjs.map} +1 -1
- package/dist/{copilotkit-B1K0Tgnz.d.cts → copilotkit-DSvKW3SS.d.cts} +3 -33
- package/dist/copilotkit-DSvKW3SS.d.cts.map +1 -0
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.mjs +1 -1
- package/dist/v2/index.cjs +1 -2
- package/dist/v2/index.d.cts +2 -2
- package/dist/v2/index.d.mts +2 -2
- package/dist/v2/index.mjs +2 -2
- package/dist/v2/index.umd.js +0 -70
- package/dist/v2/index.umd.js.map +1 -1
- package/package.json +8 -8
- package/skills/react-core/SKILL.md +1 -1
- package/dist/copilotkit-B1K0Tgnz.d.cts.map +0 -1
- package/dist/copilotkit-CZjzQPdq.d.mts.map +0 -1
- package/dist/copilotkit-EFunREg5.cjs.map +0 -1
|
@@ -3,7 +3,7 @@ import { Agent, ExtensionsInput, ForwardedParametersInput, LangGraphInterruptEve
|
|
|
3
3
|
import * as react from "react";
|
|
4
4
|
import React$1, { ComponentType, ReactNode } from "react";
|
|
5
5
|
import { Action, Attachment, Attachment as Attachment$1, AttachmentModality, AttachmentsConfig, AttachmentsConfig as AttachmentsConfig$1, CopilotCloudConfig, CopilotErrorHandler, CopilotKitError, DebugConfig, FunctionCallHandler, InferSchemaOutput, InputContentSource, LicenseContextValue, MappedParameterTypes, Parameter, StandardSchemaV1 } from "@copilotkit/shared";
|
|
6
|
-
import { CopilotKitCore, CopilotKitCoreConfig, CopilotKitCoreErrorCode, CopilotKitCoreSubscriber, CopilotKitCoreSubscription, DynamicSuggestionsConfig, FrontendTool, Memory, Memory as Memory$1, MemoryChanges, MemoryChanges as MemoryChanges$1, MemoryKind, MemoryRealtimeStatus, MemoryScope, NewMemory, NewMemory as NewMemory$1, StaticSuggestionsConfig,
|
|
6
|
+
import { CopilotKitCore, CopilotKitCoreConfig, CopilotKitCoreErrorCode, CopilotKitCoreSubscriber, CopilotKitCoreSubscription, DynamicSuggestionsConfig, FrontendTool, Memory, Memory as Memory$1, MemoryChanges, MemoryChanges as MemoryChanges$1, MemoryKind, MemoryRealtimeStatus, MemoryScope, NewMemory, NewMemory as NewMemory$1, StaticSuggestionsConfig, Suggestion, ToolCallStatus } from "@copilotkit/core";
|
|
7
7
|
import { AbstractAgent, Interrupt, ResumeEntry, RunAgentResult } from "@ag-ui/client";
|
|
8
8
|
import { ActivityMessage, AgentCapabilities, AssistantMessage, Message as Message$2, ReasoningMessage, ToolCall, ToolMessage, UserMessage } from "@ag-ui/core";
|
|
9
9
|
import { Streamdown } from "streamdown";
|
|
@@ -2630,36 +2630,6 @@ declare function useAgent({
|
|
|
2630
2630
|
isReady: boolean;
|
|
2631
2631
|
};
|
|
2632
2632
|
//#endregion
|
|
2633
|
-
//#region src/v2/hooks/use-subagent.d.ts
|
|
2634
|
-
interface UseSubagentParams {
|
|
2635
|
-
/** The subagent's opaque id (exact, always unambiguous). */
|
|
2636
|
-
subagentRunId?: string;
|
|
2637
|
-
/**
|
|
2638
|
-
* The declared subagent name (`subagent_type`). Not guaranteed unique — if
|
|
2639
|
-
* more than one subagent currently carries this name, the most recently
|
|
2640
|
-
* started match is returned, `isAmbiguous`/`matchCount` are set, and a
|
|
2641
|
-
* dev-only warning is logged once. Pass `subagentRunId` for a stable reference.
|
|
2642
|
-
*/
|
|
2643
|
-
subagentName?: string;
|
|
2644
|
-
/** Owning agent id. Defaults to the chat's configured agent (like useAgent). */
|
|
2645
|
-
agentId?: string;
|
|
2646
|
-
}
|
|
2647
|
-
interface SubagentView extends SubagentState {
|
|
2648
|
-
/** True when a `subagentName` lookup matched more than one subagent. */
|
|
2649
|
-
isAmbiguous?: boolean;
|
|
2650
|
-
/** Number of subagents that matched a `subagentName` lookup (when >1). */
|
|
2651
|
-
matchCount?: number;
|
|
2652
|
-
}
|
|
2653
|
-
/**
|
|
2654
|
-
* Read a subagent's live lifecycle state (name, description, running status)
|
|
2655
|
-
* from the CopilotKit core subagent registry, by id or by declared name.
|
|
2656
|
-
*
|
|
2657
|
-
* @example
|
|
2658
|
-
* const sub = useSubagent({ subagentRunId: message.subagentRunId });
|
|
2659
|
-
* // sub?.name, sub?.description, sub?.status
|
|
2660
|
-
*/
|
|
2661
|
-
declare function useSubagent(params: UseSubagentParams): SubagentView | undefined;
|
|
2662
|
-
//#endregion
|
|
2663
2633
|
//#region src/v2/hooks/use-capabilities.d.ts
|
|
2664
2634
|
/**
|
|
2665
2635
|
* Returns the capabilities declared by the given agent (or the agent resolved
|
|
@@ -3616,5 +3586,5 @@ declare function CopilotKit({
|
|
|
3616
3586
|
}: CopilotKitProps): react_jsx_runtime0.JSX.Element;
|
|
3617
3587
|
declare const defaultCopilotContextCategories: string[];
|
|
3618
3588
|
//#endregion
|
|
3619
|
-
export {
|
|
3620
|
-
//# sourceMappingURL=copilotkit-
|
|
3589
|
+
export { useRenderTool as $, LangGraphInterruptActionSetterArgs as $n, CopilotPopupViewProps as $t, UseAttachmentsReturn as A, CopilotChatAssistantMessage as An, MCPAppsActivityType as At, useMemories as B, CopilotChatLabels as Bn, CopilotChatAttachmentQueue as Bt, MemoryScope as C, CopilotChatSuggestionViewProps as Cn, RenderFunctionStatus as Cr, OpenGenerativeUIActivityType as Ct, UseLearningContainersArgs as D, CopilotChatReasoningMessageProps as Dn, MCPAppsActivityContent as Dt, useLearningContainersInCurrentThread as E, CopilotChatReasoningMessage as En, OpenGenerativeUIToolRenderer as Et, LearnFromUserActionInput as F, CopilotChatInputProps as Fn, WildcardToolCallRender as Ft, AgentContextInput as G, CoagentInChatRenderFunction as Gn, UseThreadsInput as Gt, useInterrupt as H, AudioRecorderError as Hn, CopilotThreadsDrawerProps as Ht, LearnFromUserActionResult as I, ToolsMenuItem as In, Attachment$1 as It, useCapabilities as J, CopilotContextParams as Jn, CopilotPopup as Jt, JsonSerializable as K, CopilotApiConfig as Kn, UseThreadsResult as Kt, UseLearnFromUserActionRecorder as L, CopilotChatConfigurationProvider as Ln, AttachmentModality as Lt, LearnFromUserActionInCurrentThreadInput as M, CopilotChatToolCallsView as Mn, ɵrunMcpFollowUp as Mt, UseLearnFromUserActionInCurrentThreadRecorder as N, CopilotChatToolCallsViewProps as Nn, CopilotKitInspector as Nt, useLearningContainers as O, CopilotChatUserMessage as On, MCPAppsActivityContentSchema as Ot, useLearnFromUserActionInCurrentThread as P, CopilotChatInput as Pn, CopilotKitInspectorProps as Pt, useDefaultRenderTool as Q, LangGraphInterruptActionSetter as Qn, CopilotPopupView as Qt, useLearnFromUserAction as R, CopilotChatConfigurationProviderProps as Rn, AttachmentsConfig$1 as Rt, MemoryKind as S, CopilotChatSuggestionView as Sn, FrontendActionAvailability as Sr, OpenGenerativeUIActivityRenderer as St, UseLearningContainersInCurrentThreadArgs as T, CopilotChatSuggestionPillProps as Tn, OpenGenerativeUIContentSchema as Tt, useConfigureSuggestions as U, AudioRecorderState as Un, CopilotThreadsDrawerRowRenderer as Ut, UseInterruptConfig as V, useCopilotChatConfiguration as Vn, CopilotThreadsDrawer as Vt, useSuggestions as W, CopilotChatAudioRecorder as Wn, Thread as Wt, useAgent as X, CoAgentStateRender as Xn, CopilotSidebar as Xt, UseAgentUpdate as Y, useCopilotContext as Yn, CopilotPopupProps as Yt, useHumanInTheLoop as Z, LangGraphInterruptAction as Zn, CopilotSidebarProps as Zt, CopilotKitCoreReact as _, IntelligenceIndicatorProps as _n, ActionRenderPropsNoArgsWait as _r, ReactCustomMessageRenderer as _t, A2UIMessageRendererOptions as a, CopilotChatToggleButtonProps as an, CrewsResponse as ar, InterruptCancelFn as at, Memory$1 as b, IntelligenceIndicatorView as bn, CatchAllFrontendAction as br, GenerateSandboxedUiArgs as bt, InspectorAnchor as c, CopilotChat as cn, CrewsTaskStateItem as cr, InterruptRenderProps as ct, CopilotKitProvider as d, CopilotChatViewProps as dn, SystemMessageFunction as dr, defineToolCallRenderer as dt, CopilotSidebarView as en, LangGraphInterruptRender as er, useComponent as et, CopilotKitProviderProps as f, AutoScrollMode as fn, DocumentPointer as fr, ReactHumanInTheLoop as ft, useLicenseContext as g, IntelligenceIndicator as gn, ActionRenderPropsNoArgs as gr, useRenderCustomMessages as gt, useCopilotKit as h, INTELLIGENCE_TURN_HEAD as hn, ActionRenderProps as hr, ReactToolCallRenderer as ht, A2UIActionInterceptor as i, CopilotChatToggleButton as in, CrewsAgentState as ir, Interrupt as it, useAttachments as j, CopilotChatAssistantMessageProps as jn, ɵMcpFollowUpHost as jt, UseAttachmentsProps as k, CopilotChatUserMessageProps as kn, MCPAppsActivityRenderer as kt, SandboxFunctionsContext as l, CopilotChatProps as ln, CrewsToolStateItem as lr, InterruptResolveFn as lt, CopilotKitContextValue as m, CopilotChatMessageViewProps as mn, TreeNode as mr, ReactActivityMessageRenderer as mt, defaultCopilotContextCategories as n, CopilotModalHeader as nn, LangGraphInterruptRenderProps as nr, useRenderActivityMessage as nt, A2UIUserAction as o, DefaultCloseIcon as on, CrewsResponseStatus as or, InterruptEvent as ot, A2UIRecoveryRendererOptions as p, CopilotChatMessageView as pn, Tree as pr, ReactFrontendTool as pt, useAgentContext as q, CopilotContext as qn, useThreads as qt, CopilotKitProps as r, CopilotModalHeaderProps as rn, QueuedInterruptEvent as rr, SandboxFunction as rt, createA2UIMessageRenderer as s, DefaultOpenIcon as sn, CrewsStateItem as sr, InterruptHandlerProps as st, CopilotKit as t, CopilotSidebarViewProps as tn, LangGraphInterruptRenderHandlerProps as tr, useFrontendTool as tt, useSandboxFunctions as u, CopilotChatView as un, CopilotChatSuggestionConfiguration as ur, ResumeEntry as ut, CopilotKitCoreReactConfig as v, getIntelligenceTurnAnchors as vn, ActionRenderPropsWait as vr, ReactCustomMessageRendererPosition as vt, NewMemory$1 as w, CopilotChatSuggestionPill as wn, OpenGenerativeUIContent as wt, MemoryChanges$1 as x, IntelligenceIndicatorViewProps as xn, FrontendAction as xr, GenerateSandboxedUiArgsSchema as xt, CopilotKitCoreReactSubscriber as y, IntelligenceIndicatorStatus as yn, CatchAllActionRenderProps as yr, useRenderToolCall as yt, UseMemoriesResult as z, CopilotChatConfigurationValue as zn, CopilotChatAttachmentRenderer as zt };
|
|
3590
|
+
//# sourceMappingURL=copilotkit-DSvKW3SS.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"copilotkit-DSvKW3SS.d.cts","names":[],"sources":["../src/types/frontend-action.ts","../src/hooks/use-tree.ts","../src/types/document-pointer.ts","../src/types/system-message.ts","../src/types/chat-suggestion-configuration.ts","../src/types/crew.ts","../src/types/interrupt-action.ts","../src/types/coagent-action.ts","../src/types/coagent-state.ts","../src/context/copilot-context.tsx","../src/v2/components/chat/CopilotChatAudioRecorder.tsx","../src/v2/providers/CopilotChatConfigurationProvider.tsx","../src/v2/lib/slots.tsx","../src/v2/components/chat/CopilotChatInput.tsx","../src/v2/components/chat/CopilotChatToolCallsView.tsx","../src/v2/components/chat/CopilotChatAssistantMessage.tsx","../src/v2/components/chat/CopilotChatUserMessage.tsx","../src/v2/components/chat/CopilotChatReasoningMessage.tsx","../src/v2/components/chat/CopilotChatSuggestionPill.tsx","../src/v2/components/chat/CopilotChatSuggestionView.tsx","../src/v2/components/intelligence-indicator/IntelligenceIndicatorView.tsx","../src/v2/components/intelligence-indicator/IntelligenceIndicator.tsx","../src/v2/components/chat/CopilotChatMessageView.tsx","../src/v2/components/chat/normalize-auto-scroll.ts","../src/v2/components/chat/CopilotChatView.tsx","../src/v2/components/chat/CopilotChat.tsx","../src/v2/components/chat/CopilotChatToggleButton.tsx","../src/v2/components/chat/CopilotModalHeader.tsx","../src/v2/components/chat/CopilotSidebarView.tsx","../src/v2/components/chat/CopilotPopupView.tsx","../src/v2/components/chat/CopilotSidebar.tsx","../src/v2/components/chat/CopilotPopup.tsx","../src/v2/hooks/use-threads.tsx","../src/v2/components/chat/CopilotThreadsDrawer.tsx","../src/v2/components/chat/CopilotChatAttachmentQueue.tsx","../src/v2/components/chat/CopilotChatAttachmentRenderer.tsx","../src/v2/components/WildcardToolCallRender.tsx","../src/v2/components/CopilotKitInspectorContext.tsx","../src/v2/components/CopilotKitInspector.tsx","../src/v2/components/MCPAppsActivityRenderer.tsx","../src/v2/components/OpenGenerativeUIRenderer.tsx","../src/v2/hooks/use-render-tool-call.tsx","../src/v2/types/react-custom-message-renderer.ts","../src/v2/hooks/use-render-custom-messages.tsx","../src/v2/types/react-tool-call-renderer.ts","../src/v2/types/react-activity-message-renderer.ts","../src/v2/types/frontend-tool.ts","../src/v2/types/human-in-the-loop.ts","../src/v2/types/defineToolCallRenderer.ts","../src/v2/types/interrupt.ts","../src/v2/types/sandbox-function.ts","../src/v2/hooks/use-render-activity-message.tsx","../src/v2/hooks/use-frontend-tool.tsx","../src/v2/hooks/use-component.tsx","../src/v2/hooks/use-render-tool.tsx","../src/v2/hooks/use-default-render-tool.tsx","../src/v2/hooks/use-human-in-the-loop.tsx","../src/v2/hooks/use-agent.tsx","../src/v2/hooks/use-capabilities.tsx","../src/v2/hooks/use-agent-context.tsx","../src/v2/hooks/use-suggestions.tsx","../src/v2/hooks/use-configure-suggestions.tsx","../src/v2/hooks/use-interrupt.tsx","../src/v2/hooks/use-memories.tsx","../src/v2/hooks/use-learn-from-user-action.tsx","../src/v2/hooks/use-learn-from-user-action-in-current-thread.tsx","../src/v2/hooks/use-attachments.tsx","../src/v2/hooks/use-learning-containers.tsx","../src/v2/hooks/use-learning-containers-in-current-thread.tsx","../src/v2/lib/react-core.ts","../src/v2/context.ts","../src/v2/a2ui/A2UIRecoveryStates.tsx","../src/v2/providers/CopilotKitProvider.tsx","../src/v2/providers/SandboxFunctionsContext.ts","../src/v2/a2ui/A2UIMessageRenderer.tsx","../src/components/copilot-provider/copilotkit-props.tsx","../src/components/copilot-provider/copilotkit.tsx"],"mappings":"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"}
|
package/dist/index.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
4
|
-
const require_copilotkit = require('./copilotkit-
|
|
4
|
+
const require_copilotkit = require('./copilotkit-Bocmlr37.cjs');
|
|
5
5
|
let react = require("react");
|
|
6
6
|
react = require_copilotkit.__toESM(react);
|
|
7
7
|
let _copilotkit_core = require("@copilotkit/core");
|
package/dist/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { $
|
|
1
|
+
import { $n as LangGraphInterruptActionSetterArgs, Cr as RenderFunctionStatus, Gn as CoagentInChatRenderFunction, Jn as CopilotContextParams, Kn as CopilotApiConfig, Qn as LangGraphInterruptActionSetter, Sr as FrontendActionAvailability, X as useAgent, Xn as CoAgentStateRender, Yn as useCopilotContext, Zn as LangGraphInterruptAction, _r as ActionRenderPropsNoArgsWait, ar as CrewsResponse, br as CatchAllFrontendAction, cr as CrewsTaskStateItem, dr as SystemMessageFunction, er as LangGraphInterruptRender, fr as DocumentPointer, gr as ActionRenderPropsNoArgs, hr as ActionRenderProps, ir as CrewsAgentState, lr as CrewsToolStateItem, mr as TreeNode, n as defaultCopilotContextCategories, nr as LangGraphInterruptRenderProps, or as CrewsResponseStatus, pr as Tree, qn as CopilotContext, r as CopilotKitProps, rr as QueuedInterruptEvent, sr as CrewsStateItem, t as CopilotKit, tr as LangGraphInterruptRenderHandlerProps, ur as CopilotChatSuggestionConfiguration, vr as ActionRenderPropsWait, xr as FrontendAction, yr as CatchAllActionRenderProps, yt as useRenderToolCall$1 } from "./copilotkit-DSvKW3SS.cjs";
|
|
2
2
|
import "./v2/index.cjs";
|
|
3
3
|
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
4
4
|
import { CopilotRuntimeClient, CopilotRuntimeClientOptions, ForwardedParametersInput, Message } from "@copilotkit/runtime-client-gql";
|
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { $
|
|
1
|
+
import { $n as LangGraphInterruptActionSetterArgs, Cr as RenderFunctionStatus, Gn as CoagentInChatRenderFunction, Jn as CopilotContextParams, Kn as CopilotApiConfig, Qn as LangGraphInterruptActionSetter, Sr as FrontendActionAvailability, X as useAgent, Xn as CoAgentStateRender, Yn as useCopilotContext, Zn as LangGraphInterruptAction, _r as ActionRenderPropsNoArgsWait, ar as CrewsResponse, br as CatchAllFrontendAction, cr as CrewsTaskStateItem, dr as SystemMessageFunction, er as LangGraphInterruptRender, fr as DocumentPointer, gr as ActionRenderPropsNoArgs, hr as ActionRenderProps, ir as CrewsAgentState, lr as CrewsToolStateItem, mr as TreeNode, n as defaultCopilotContextCategories, nr as LangGraphInterruptRenderProps, or as CrewsResponseStatus, pr as Tree, qn as CopilotContext, r as CopilotKitProps, rr as QueuedInterruptEvent, sr as CrewsStateItem, t as CopilotKit, tr as LangGraphInterruptRenderHandlerProps, ur as CopilotChatSuggestionConfiguration, vr as ActionRenderPropsWait, xr as FrontendAction, yr as CatchAllActionRenderProps, yt as useRenderToolCall$1 } from "./copilotkit-BUIK5yln.mjs";
|
|
2
2
|
import "./v2/index.mjs";
|
|
3
3
|
import React, { ReactNode, RefObject, SetStateAction } from "react";
|
|
4
4
|
import { StaticSuggestionsConfig, Suggestion } from "@copilotkit/core";
|
package/dist/index.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
|
|
3
|
-
import {
|
|
3
|
+
import { Dt as useRenderToolCall$1, Mt as useCopilotChatConfiguration, X as useConfigureSuggestions, Y as useInterrupt, Z as useSuggestions, a as ThreadsProvider, c as CoAgentStateRendersProvider, ct as useRenderCustomMessages, d as shouldShowDevConsole, f as useToast, g as useCopilotContext, h as CopilotContext, i as ThreadsContext, l as useCoAgentStateRenders, m as useCopilotMessagesContext, n as defaultCopilotContextCategories, nt as useHumanInTheLoop$1, o as useThreads, ot as useFrontendTool$1, p as CopilotMessagesContext, pt as defineToolCallRenderer, r as CoAgentStateRenderBridge, s as CoAgentStateRendersContext, t as CopilotKit, tt as useAgent, u as useAsyncCallback, ut as useCopilotKit } from "./copilotkit-C4RqjAba.mjs";
|
|
4
4
|
import React, { Fragment, createElement, useCallback, useContext, useEffect, useMemo, useRef, useState } from "react";
|
|
5
5
|
import { CopilotKitCoreRuntimeConnectionStatus, ToolCallStatus } from "@copilotkit/core";
|
|
6
6
|
import { AGUIConnectNotImplementedError, HttpAgent } from "@ag-ui/client";
|
package/dist/v2/index.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
4
|
-
const require_copilotkit = require('../copilotkit-
|
|
4
|
+
const require_copilotkit = require('../copilotkit-Bocmlr37.cjs');
|
|
5
5
|
require("./index.css");
|
|
6
6
|
let _copilotkit_a2ui_renderer = require("@copilotkit/a2ui-renderer");
|
|
7
7
|
let _copilotkit_react_core_v2_context = require("@copilotkit/react-core/v2/context");
|
|
@@ -110,7 +110,6 @@ exports.useRenderCustomMessages = require_copilotkit.useRenderCustomMessages;
|
|
|
110
110
|
exports.useRenderTool = require_copilotkit.useRenderTool;
|
|
111
111
|
exports.useRenderToolCall = require_copilotkit.useRenderToolCall;
|
|
112
112
|
exports.useSandboxFunctions = require_copilotkit.useSandboxFunctions;
|
|
113
|
-
exports.useSubagent = require_copilotkit.useSubagent;
|
|
114
113
|
exports.useSuggestions = require_copilotkit.useSuggestions;
|
|
115
114
|
exports.useThreads = require_copilotkit.useThreads$1;
|
|
116
115
|
exports.ɵrunMcpFollowUp = require_copilotkit.ɵrunMcpFollowUp;
|
package/dist/v2/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { $ as
|
|
1
|
+
import { $ as useRenderTool, $t as CopilotPopupViewProps, A as UseAttachmentsReturn, An as CopilotChatAssistantMessage, At as MCPAppsActivityType, B as useMemories, Bn as CopilotChatLabels, Bt as CopilotChatAttachmentQueue, C as MemoryScope, Cn as CopilotChatSuggestionViewProps, Ct as OpenGenerativeUIActivityType, D as UseLearningContainersArgs, Dn as CopilotChatReasoningMessageProps, Dt as MCPAppsActivityContent, E as useLearningContainersInCurrentThread, En as CopilotChatReasoningMessage, Et as OpenGenerativeUIToolRenderer, F as LearnFromUserActionInput, Fn as CopilotChatInputProps, Ft as WildcardToolCallRender, G as AgentContextInput, Gt as UseThreadsInput, H as useInterrupt, Hn as AudioRecorderError, Ht as CopilotThreadsDrawerProps, I as LearnFromUserActionResult, In as ToolsMenuItem, It as Attachment, J as useCapabilities, Jt as CopilotPopup, K as JsonSerializable, Kt as UseThreadsResult, L as UseLearnFromUserActionRecorder, Ln as CopilotChatConfigurationProvider, Lt as AttachmentModality, M as LearnFromUserActionInCurrentThreadInput, Mn as CopilotChatToolCallsView, Mt as ɵrunMcpFollowUp, N as UseLearnFromUserActionInCurrentThreadRecorder, Nn as CopilotChatToolCallsViewProps, Nt as CopilotKitInspector, O as useLearningContainers, On as CopilotChatUserMessage, Ot as MCPAppsActivityContentSchema, P as useLearnFromUserActionInCurrentThread, Pn as CopilotChatInput, Pt as CopilotKitInspectorProps, Q as useDefaultRenderTool, Qt as CopilotPopupView, R as useLearnFromUserAction, Rn as CopilotChatConfigurationProviderProps, Rt as AttachmentsConfig, S as MemoryKind, Sn as CopilotChatSuggestionView, St as OpenGenerativeUIActivityRenderer, T as UseLearningContainersInCurrentThreadArgs, Tn as CopilotChatSuggestionPillProps, Tt as OpenGenerativeUIContentSchema, U as useConfigureSuggestions, Un as AudioRecorderState, Ut as CopilotThreadsDrawerRowRenderer, V as UseInterruptConfig, Vn as useCopilotChatConfiguration, Vt as CopilotThreadsDrawer, W as useSuggestions, Wn as CopilotChatAudioRecorder, Wt as Thread, X as useAgent, Xt as CopilotSidebar, Y as UseAgentUpdate, Yt as CopilotPopupProps, Z as useHumanInTheLoop, Zt as CopilotSidebarProps, _ as CopilotKitCoreReact, _n as IntelligenceIndicatorProps, _t as ReactCustomMessageRenderer, a as A2UIMessageRendererOptions, an as CopilotChatToggleButtonProps, at as InterruptCancelFn, b as Memory, bn as IntelligenceIndicatorView, bt as GenerateSandboxedUiArgs, c as InspectorAnchor, cn as CopilotChat, ct as InterruptRenderProps, d as CopilotKitProvider, dn as CopilotChatViewProps, dt as defineToolCallRenderer, en as CopilotSidebarView, et as useComponent, f as CopilotKitProviderProps, fn as AutoScrollMode, ft as ReactHumanInTheLoop, g as useLicenseContext, gn as IntelligenceIndicator, gt as useRenderCustomMessages, h as useCopilotKit, hn as INTELLIGENCE_TURN_HEAD, ht as ReactToolCallRenderer, i as A2UIActionInterceptor, in as CopilotChatToggleButton, it as Interrupt, j as useAttachments, jn as CopilotChatAssistantMessageProps, jt as ɵMcpFollowUpHost, k as UseAttachmentsProps, kn as CopilotChatUserMessageProps, kt as MCPAppsActivityRenderer, l as SandboxFunctionsContext, ln as CopilotChatProps, lt as InterruptResolveFn, m as CopilotKitContextValue, mn as CopilotChatMessageViewProps, mt as ReactActivityMessageRenderer, nn as CopilotModalHeader, nt as useRenderActivityMessage, o as A2UIUserAction, on as DefaultCloseIcon, ot as InterruptEvent, p as A2UIRecoveryRendererOptions, pn as CopilotChatMessageView, pt as ReactFrontendTool, q as useAgentContext, qt as useThreads, r as CopilotKitProps, rn as CopilotModalHeaderProps, rt as SandboxFunction, s as createA2UIMessageRenderer, sn as DefaultOpenIcon, st as InterruptHandlerProps, t as CopilotKit, tn as CopilotSidebarViewProps, tt as useFrontendTool, u as useSandboxFunctions, un as CopilotChatView, ut as ResumeEntry, v as CopilotKitCoreReactConfig, vn as getIntelligenceTurnAnchors, vt as ReactCustomMessageRendererPosition, w as NewMemory, wn as CopilotChatSuggestionPill, wt as OpenGenerativeUIContent, x as MemoryChanges, xn as IntelligenceIndicatorViewProps, xt as GenerateSandboxedUiArgsSchema, y as CopilotKitCoreReactSubscriber, yn as IntelligenceIndicatorStatus, yt as useRenderToolCall, z as UseMemoriesResult, zn as CopilotChatConfigurationValue, zt as CopilotChatAttachmentRenderer } from "../copilotkit-DSvKW3SS.cjs";
|
|
2
2
|
import { Theme as A2UITheme, defaultTheme as a2uiDefaultTheme } from "@copilotkit/a2ui-renderer";
|
|
3
3
|
export * from "@copilotkit/core";
|
|
4
4
|
export * from "@ag-ui/client";
|
|
5
|
-
export { type A2UIActionInterceptor, type A2UIMessageRendererOptions, type A2UIRecoveryRendererOptions, type A2UITheme, type A2UIUserAction, AgentContextInput, Attachment, AttachmentModality, AttachmentsConfig, AudioRecorderError, AudioRecorderState, AutoScrollMode, CopilotChat, CopilotChatAssistantMessage, CopilotChatAssistantMessageProps, CopilotChatAttachmentQueue, CopilotChatAttachmentRenderer, CopilotChatAudioRecorder, CopilotChatConfigurationProvider, CopilotChatConfigurationProviderProps, CopilotChatConfigurationValue, CopilotChatInput, CopilotChatInputProps, CopilotChatLabels, CopilotChatMessageView, CopilotChatMessageViewProps, CopilotChatProps, CopilotChatReasoningMessage, CopilotChatReasoningMessageProps, CopilotChatSuggestionPill, CopilotChatSuggestionPillProps, CopilotChatSuggestionView, CopilotChatSuggestionViewProps, CopilotChatToggleButton, DefaultCloseIcon as CopilotChatToggleButtonCloseIcon, DefaultOpenIcon as CopilotChatToggleButtonOpenIcon, CopilotChatToggleButtonProps, CopilotChatToolCallsView, CopilotChatToolCallsViewProps, CopilotChatUserMessage, CopilotChatUserMessageProps, CopilotChatView, CopilotChatViewProps, CopilotKit, CopilotKitContextValue, CopilotKitCoreReact, CopilotKitCoreReactConfig, CopilotKitCoreReactSubscriber, CopilotKitInspector, CopilotKitInspectorProps, type CopilotKitProps, CopilotKitProvider, CopilotKitProviderProps, CopilotModalHeader, CopilotModalHeaderProps, CopilotPopup, CopilotPopupProps, CopilotPopupView, CopilotPopupViewProps, CopilotSidebar, CopilotSidebarProps, CopilotSidebarView, CopilotSidebarViewProps, CopilotThreadsDrawer, CopilotThreadsDrawerProps, CopilotThreadsDrawerRowRenderer, GenerateSandboxedUiArgs, GenerateSandboxedUiArgsSchema, INTELLIGENCE_TURN_HEAD, InspectorAnchor, IntelligenceIndicator, IntelligenceIndicatorProps, IntelligenceIndicatorStatus, IntelligenceIndicatorView, IntelligenceIndicatorViewProps, Interrupt, InterruptCancelFn, InterruptEvent, InterruptHandlerProps, InterruptRenderProps, InterruptResolveFn, JsonSerializable, LearnFromUserActionInCurrentThreadInput, LearnFromUserActionInput, LearnFromUserActionResult, MCPAppsActivityContent, MCPAppsActivityContentSchema, MCPAppsActivityRenderer, MCPAppsActivityType, Memory, MemoryChanges, MemoryKind, MemoryScope, NewMemory, OpenGenerativeUIActivityRenderer, OpenGenerativeUIActivityType, OpenGenerativeUIContent, OpenGenerativeUIContentSchema, OpenGenerativeUIToolRenderer, ReactActivityMessageRenderer, ReactCustomMessageRenderer, ReactCustomMessageRendererPosition, ReactFrontendTool, ReactHumanInTheLoop, ReactToolCallRenderer, ResumeEntry, SandboxFunction, SandboxFunctionsContext,
|
|
5
|
+
export { type A2UIActionInterceptor, type A2UIMessageRendererOptions, type A2UIRecoveryRendererOptions, type A2UITheme, type A2UIUserAction, AgentContextInput, Attachment, AttachmentModality, AttachmentsConfig, AudioRecorderError, AudioRecorderState, AutoScrollMode, CopilotChat, CopilotChatAssistantMessage, CopilotChatAssistantMessageProps, CopilotChatAttachmentQueue, CopilotChatAttachmentRenderer, CopilotChatAudioRecorder, CopilotChatConfigurationProvider, CopilotChatConfigurationProviderProps, CopilotChatConfigurationValue, CopilotChatInput, CopilotChatInputProps, CopilotChatLabels, CopilotChatMessageView, CopilotChatMessageViewProps, CopilotChatProps, CopilotChatReasoningMessage, CopilotChatReasoningMessageProps, CopilotChatSuggestionPill, CopilotChatSuggestionPillProps, CopilotChatSuggestionView, CopilotChatSuggestionViewProps, CopilotChatToggleButton, DefaultCloseIcon as CopilotChatToggleButtonCloseIcon, DefaultOpenIcon as CopilotChatToggleButtonOpenIcon, CopilotChatToggleButtonProps, CopilotChatToolCallsView, CopilotChatToolCallsViewProps, CopilotChatUserMessage, CopilotChatUserMessageProps, CopilotChatView, CopilotChatViewProps, CopilotKit, CopilotKitContextValue, CopilotKitCoreReact, CopilotKitCoreReactConfig, CopilotKitCoreReactSubscriber, CopilotKitInspector, CopilotKitInspectorProps, type CopilotKitProps, CopilotKitProvider, CopilotKitProviderProps, CopilotModalHeader, CopilotModalHeaderProps, CopilotPopup, CopilotPopupProps, CopilotPopupView, CopilotPopupViewProps, CopilotSidebar, CopilotSidebarProps, CopilotSidebarView, CopilotSidebarViewProps, CopilotThreadsDrawer, CopilotThreadsDrawerProps, CopilotThreadsDrawerRowRenderer, GenerateSandboxedUiArgs, GenerateSandboxedUiArgsSchema, INTELLIGENCE_TURN_HEAD, InspectorAnchor, IntelligenceIndicator, IntelligenceIndicatorProps, IntelligenceIndicatorStatus, IntelligenceIndicatorView, IntelligenceIndicatorViewProps, Interrupt, InterruptCancelFn, InterruptEvent, InterruptHandlerProps, InterruptRenderProps, InterruptResolveFn, JsonSerializable, LearnFromUserActionInCurrentThreadInput, LearnFromUserActionInput, LearnFromUserActionResult, MCPAppsActivityContent, MCPAppsActivityContentSchema, MCPAppsActivityRenderer, MCPAppsActivityType, Memory, MemoryChanges, MemoryKind, MemoryScope, NewMemory, OpenGenerativeUIActivityRenderer, OpenGenerativeUIActivityType, OpenGenerativeUIContent, OpenGenerativeUIContentSchema, OpenGenerativeUIToolRenderer, ReactActivityMessageRenderer, ReactCustomMessageRenderer, ReactCustomMessageRendererPosition, ReactFrontendTool, ReactHumanInTheLoop, ReactToolCallRenderer, ResumeEntry, SandboxFunction, SandboxFunctionsContext, Thread, ToolsMenuItem, UseAgentUpdate, UseAttachmentsProps, UseAttachmentsReturn, UseInterruptConfig, UseLearnFromUserActionInCurrentThreadRecorder, UseLearnFromUserActionRecorder, UseLearningContainersArgs, UseLearningContainersInCurrentThreadArgs, UseMemoriesResult, UseThreadsInput, UseThreadsResult, WildcardToolCallRender, a2uiDefaultTheme, createA2UIMessageRenderer, defineToolCallRenderer, getIntelligenceTurnAnchors, useAgent, useAgentContext, useAttachments, useCapabilities, useComponent, useConfigureSuggestions, useCopilotChatConfiguration, useCopilotKit, useDefaultRenderTool, useFrontendTool, useHumanInTheLoop, useInterrupt, useLearnFromUserAction, useLearnFromUserActionInCurrentThread, useLearningContainers, useLearningContainersInCurrentThread, useLicenseContext, useMemories, useRenderActivityMessage, useRenderCustomMessages, useRenderTool, useRenderToolCall, useSandboxFunctions, useSuggestions, useThreads, ɵMcpFollowUpHost, ɵrunMcpFollowUp };
|
package/dist/v2/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { $ as
|
|
1
|
+
import { $ as useRenderTool, $t as CopilotPopupViewProps, A as UseAttachmentsReturn, An as CopilotChatAssistantMessage, At as MCPAppsActivityType, B as useMemories, Bn as CopilotChatLabels, Bt as CopilotChatAttachmentQueue, C as MemoryScope, Cn as CopilotChatSuggestionViewProps, Ct as OpenGenerativeUIActivityType, D as UseLearningContainersArgs, Dn as CopilotChatReasoningMessageProps, Dt as MCPAppsActivityContent, E as useLearningContainersInCurrentThread, En as CopilotChatReasoningMessage, Et as OpenGenerativeUIToolRenderer, F as LearnFromUserActionInput, Fn as CopilotChatInputProps, Ft as WildcardToolCallRender, G as AgentContextInput, Gt as UseThreadsInput, H as useInterrupt, Hn as AudioRecorderError, Ht as CopilotThreadsDrawerProps, I as LearnFromUserActionResult, In as ToolsMenuItem, It as Attachment, J as useCapabilities, Jt as CopilotPopup, K as JsonSerializable, Kt as UseThreadsResult, L as UseLearnFromUserActionRecorder, Ln as CopilotChatConfigurationProvider, Lt as AttachmentModality, M as LearnFromUserActionInCurrentThreadInput, Mn as CopilotChatToolCallsView, Mt as ɵrunMcpFollowUp, N as UseLearnFromUserActionInCurrentThreadRecorder, Nn as CopilotChatToolCallsViewProps, Nt as CopilotKitInspector, O as useLearningContainers, On as CopilotChatUserMessage, Ot as MCPAppsActivityContentSchema, P as useLearnFromUserActionInCurrentThread, Pn as CopilotChatInput, Pt as CopilotKitInspectorProps, Q as useDefaultRenderTool, Qt as CopilotPopupView, R as useLearnFromUserAction, Rn as CopilotChatConfigurationProviderProps, Rt as AttachmentsConfig, S as MemoryKind, Sn as CopilotChatSuggestionView, St as OpenGenerativeUIActivityRenderer, T as UseLearningContainersInCurrentThreadArgs, Tn as CopilotChatSuggestionPillProps, Tt as OpenGenerativeUIContentSchema, U as useConfigureSuggestions, Un as AudioRecorderState, Ut as CopilotThreadsDrawerRowRenderer, V as UseInterruptConfig, Vn as useCopilotChatConfiguration, Vt as CopilotThreadsDrawer, W as useSuggestions, Wn as CopilotChatAudioRecorder, Wt as Thread, X as useAgent, Xt as CopilotSidebar, Y as UseAgentUpdate, Yt as CopilotPopupProps, Z as useHumanInTheLoop, Zt as CopilotSidebarProps, _ as useCopilotKit, _n as IntelligenceIndicatorProps, _t as ReactCustomMessageRenderer, a as A2UIMessageRendererOptions, an as CopilotChatToggleButtonProps, at as InterruptCancelFn, b as Memory, bn as IntelligenceIndicatorView, bt as GenerateSandboxedUiArgs, c as CopilotKitCoreReact, cn as CopilotChat, ct as InterruptRenderProps, d as InspectorAnchor, dn as CopilotChatViewProps, dt as defineToolCallRenderer, en as CopilotSidebarView, et as useComponent, f as SandboxFunctionsContext, fn as AutoScrollMode, ft as ReactHumanInTheLoop, g as CopilotKitProviderProps, gn as IntelligenceIndicator, gt as useRenderCustomMessages, h as CopilotKitProvider, hn as INTELLIGENCE_TURN_HEAD, ht as ReactToolCallRenderer, i as A2UIActionInterceptor, in as CopilotChatToggleButton, it as Interrupt, j as useAttachments, jn as CopilotChatAssistantMessageProps, jt as ɵMcpFollowUpHost, k as UseAttachmentsProps, kn as CopilotChatUserMessageProps, kt as MCPAppsActivityRenderer, l as CopilotKitCoreReactConfig, ln as CopilotChatProps, lt as InterruptResolveFn, m as CopilotKitContextValue, mn as CopilotChatMessageViewProps, mt as ReactActivityMessageRenderer, nn as CopilotModalHeader, nt as useRenderActivityMessage, o as A2UIUserAction, on as DefaultCloseIcon, ot as InterruptEvent, p as useSandboxFunctions, pn as CopilotChatMessageView, pt as ReactFrontendTool, q as useAgentContext, qt as useThreads, r as CopilotKitProps, rn as CopilotModalHeaderProps, rt as SandboxFunction, s as createA2UIMessageRenderer, sn as DefaultOpenIcon, st as InterruptHandlerProps, t as CopilotKit, tn as CopilotSidebarViewProps, tt as useFrontendTool, u as CopilotKitCoreReactSubscriber, un as CopilotChatView, ut as ResumeEntry, v as useLicenseContext, vn as getIntelligenceTurnAnchors, vt as ReactCustomMessageRendererPosition, w as NewMemory, wn as CopilotChatSuggestionPill, wt as OpenGenerativeUIContent, x as MemoryChanges, xn as IntelligenceIndicatorViewProps, xt as GenerateSandboxedUiArgsSchema, y as A2UIRecoveryRendererOptions, yn as IntelligenceIndicatorStatus, yt as useRenderToolCall, z as UseMemoriesResult, zn as CopilotChatConfigurationValue, zt as CopilotChatAttachmentRenderer } from "../copilotkit-BUIK5yln.mjs";
|
|
2
2
|
import { Theme as A2UITheme, defaultTheme as a2uiDefaultTheme } from "@copilotkit/a2ui-renderer";
|
|
3
3
|
export * from "@copilotkit/core";
|
|
4
4
|
export * from "@ag-ui/client";
|
|
5
|
-
export { type A2UIActionInterceptor, type A2UIMessageRendererOptions, type A2UIRecoveryRendererOptions, type A2UITheme, type A2UIUserAction, AgentContextInput, Attachment, AttachmentModality, AttachmentsConfig, AudioRecorderError, AudioRecorderState, AutoScrollMode, CopilotChat, CopilotChatAssistantMessage, CopilotChatAssistantMessageProps, CopilotChatAttachmentQueue, CopilotChatAttachmentRenderer, CopilotChatAudioRecorder, CopilotChatConfigurationProvider, CopilotChatConfigurationProviderProps, CopilotChatConfigurationValue, CopilotChatInput, CopilotChatInputProps, CopilotChatLabels, CopilotChatMessageView, CopilotChatMessageViewProps, CopilotChatProps, CopilotChatReasoningMessage, CopilotChatReasoningMessageProps, CopilotChatSuggestionPill, CopilotChatSuggestionPillProps, CopilotChatSuggestionView, CopilotChatSuggestionViewProps, CopilotChatToggleButton, DefaultCloseIcon as CopilotChatToggleButtonCloseIcon, DefaultOpenIcon as CopilotChatToggleButtonOpenIcon, CopilotChatToggleButtonProps, CopilotChatToolCallsView, CopilotChatToolCallsViewProps, CopilotChatUserMessage, CopilotChatUserMessageProps, CopilotChatView, CopilotChatViewProps, CopilotKit, CopilotKitContextValue, CopilotKitCoreReact, CopilotKitCoreReactConfig, CopilotKitCoreReactSubscriber, CopilotKitInspector, CopilotKitInspectorProps, type CopilotKitProps, CopilotKitProvider, CopilotKitProviderProps, CopilotModalHeader, CopilotModalHeaderProps, CopilotPopup, CopilotPopupProps, CopilotPopupView, CopilotPopupViewProps, CopilotSidebar, CopilotSidebarProps, CopilotSidebarView, CopilotSidebarViewProps, CopilotThreadsDrawer, CopilotThreadsDrawerProps, CopilotThreadsDrawerRowRenderer, GenerateSandboxedUiArgs, GenerateSandboxedUiArgsSchema, INTELLIGENCE_TURN_HEAD, InspectorAnchor, IntelligenceIndicator, IntelligenceIndicatorProps, IntelligenceIndicatorStatus, IntelligenceIndicatorView, IntelligenceIndicatorViewProps, Interrupt, InterruptCancelFn, InterruptEvent, InterruptHandlerProps, InterruptRenderProps, InterruptResolveFn, JsonSerializable, LearnFromUserActionInCurrentThreadInput, LearnFromUserActionInput, LearnFromUserActionResult, MCPAppsActivityContent, MCPAppsActivityContentSchema, MCPAppsActivityRenderer, MCPAppsActivityType, Memory, MemoryChanges, MemoryKind, MemoryScope, NewMemory, OpenGenerativeUIActivityRenderer, OpenGenerativeUIActivityType, OpenGenerativeUIContent, OpenGenerativeUIContentSchema, OpenGenerativeUIToolRenderer, ReactActivityMessageRenderer, ReactCustomMessageRenderer, ReactCustomMessageRendererPosition, ReactFrontendTool, ReactHumanInTheLoop, ReactToolCallRenderer, ResumeEntry, SandboxFunction, SandboxFunctionsContext,
|
|
5
|
+
export { type A2UIActionInterceptor, type A2UIMessageRendererOptions, type A2UIRecoveryRendererOptions, type A2UITheme, type A2UIUserAction, AgentContextInput, Attachment, AttachmentModality, AttachmentsConfig, AudioRecorderError, AudioRecorderState, AutoScrollMode, CopilotChat, CopilotChatAssistantMessage, CopilotChatAssistantMessageProps, CopilotChatAttachmentQueue, CopilotChatAttachmentRenderer, CopilotChatAudioRecorder, CopilotChatConfigurationProvider, CopilotChatConfigurationProviderProps, CopilotChatConfigurationValue, CopilotChatInput, CopilotChatInputProps, CopilotChatLabels, CopilotChatMessageView, CopilotChatMessageViewProps, CopilotChatProps, CopilotChatReasoningMessage, CopilotChatReasoningMessageProps, CopilotChatSuggestionPill, CopilotChatSuggestionPillProps, CopilotChatSuggestionView, CopilotChatSuggestionViewProps, CopilotChatToggleButton, DefaultCloseIcon as CopilotChatToggleButtonCloseIcon, DefaultOpenIcon as CopilotChatToggleButtonOpenIcon, CopilotChatToggleButtonProps, CopilotChatToolCallsView, CopilotChatToolCallsViewProps, CopilotChatUserMessage, CopilotChatUserMessageProps, CopilotChatView, CopilotChatViewProps, CopilotKit, CopilotKitContextValue, CopilotKitCoreReact, CopilotKitCoreReactConfig, CopilotKitCoreReactSubscriber, CopilotKitInspector, CopilotKitInspectorProps, type CopilotKitProps, CopilotKitProvider, CopilotKitProviderProps, CopilotModalHeader, CopilotModalHeaderProps, CopilotPopup, CopilotPopupProps, CopilotPopupView, CopilotPopupViewProps, CopilotSidebar, CopilotSidebarProps, CopilotSidebarView, CopilotSidebarViewProps, CopilotThreadsDrawer, CopilotThreadsDrawerProps, CopilotThreadsDrawerRowRenderer, GenerateSandboxedUiArgs, GenerateSandboxedUiArgsSchema, INTELLIGENCE_TURN_HEAD, InspectorAnchor, IntelligenceIndicator, IntelligenceIndicatorProps, IntelligenceIndicatorStatus, IntelligenceIndicatorView, IntelligenceIndicatorViewProps, Interrupt, InterruptCancelFn, InterruptEvent, InterruptHandlerProps, InterruptRenderProps, InterruptResolveFn, JsonSerializable, LearnFromUserActionInCurrentThreadInput, LearnFromUserActionInput, LearnFromUserActionResult, MCPAppsActivityContent, MCPAppsActivityContentSchema, MCPAppsActivityRenderer, MCPAppsActivityType, Memory, MemoryChanges, MemoryKind, MemoryScope, NewMemory, OpenGenerativeUIActivityRenderer, OpenGenerativeUIActivityType, OpenGenerativeUIContent, OpenGenerativeUIContentSchema, OpenGenerativeUIToolRenderer, ReactActivityMessageRenderer, ReactCustomMessageRenderer, ReactCustomMessageRendererPosition, ReactFrontendTool, ReactHumanInTheLoop, ReactToolCallRenderer, ResumeEntry, SandboxFunction, SandboxFunctionsContext, Thread, ToolsMenuItem, UseAgentUpdate, UseAttachmentsProps, UseAttachmentsReturn, UseInterruptConfig, UseLearnFromUserActionInCurrentThreadRecorder, UseLearnFromUserActionRecorder, UseLearningContainersArgs, UseLearningContainersInCurrentThreadArgs, UseMemoriesResult, UseThreadsInput, UseThreadsResult, WildcardToolCallRender, a2uiDefaultTheme, createA2UIMessageRenderer, defineToolCallRenderer, getIntelligenceTurnAnchors, useAgent, useAgentContext, useAttachments, useCapabilities, useComponent, useConfigureSuggestions, useCopilotChatConfiguration, useCopilotKit, useDefaultRenderTool, useFrontendTool, useHumanInTheLoop, useInterrupt, useLearnFromUserAction, useLearnFromUserActionInCurrentThread, useLearningContainers, useLearningContainersInCurrentThread, useLicenseContext, useMemories, useRenderActivityMessage, useRenderCustomMessages, useRenderTool, useRenderToolCall, useSandboxFunctions, useSuggestions, useThreads, ɵMcpFollowUpHost, ɵrunMcpFollowUp };
|
package/dist/v2/index.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
|
|
3
|
-
import { $ as useCapabilities, A as CopilotChatMessageView, At as
|
|
3
|
+
import { $ as useCapabilities, A as CopilotChatMessageView, At as CopilotChatAudioRecorder, B as CopilotChatAssistantMessage_default, C as CopilotModalHeader, Ct as MCPAppsActivityRenderer, D as CopilotChat, Dt as useRenderToolCall, E as DefaultOpenIcon, Et as CopilotKitInspector, F as CopilotChatSuggestionView, G as useLearnFromUserActionInCurrentThread, H as useLearningContainersInCurrentThread, I as CopilotChatSuggestionPill, J as useThreads, K as useLearnFromUserAction, L as CopilotChatReasoningMessage_default, M as IntelligenceIndicator, Mt as useCopilotChatConfiguration, N as getIntelligenceTurnAnchors, O as CopilotChatView_default, Ot as CopilotChatInput_default, P as IntelligenceIndicatorView, Q as useAgentContext, R as CopilotChatUserMessage_default, S as CopilotSidebarView, St as MCPAppsActivityContentSchema, T as DefaultCloseIcon, Tt as ɵrunMcpFollowUp, U as useLearningContainers, V as CopilotChatToolCallsView, W as useAttachments, X as useConfigureSuggestions, Y as useInterrupt, Z as useSuggestions, _ as WildcardToolCallRender, _t as OpenGenerativeUIActivityType, at as useComponent, b as CopilotSidebar, bt as SandboxFunctionsContext, ct as useRenderCustomMessages, dt as useLicenseContext, et as UseAgentUpdate, ft as CopilotKitCoreReact, gt as OpenGenerativeUIActivityRenderer, ht as GenerateSandboxedUiArgsSchema, it as useRenderTool, j as INTELLIGENCE_TURN_HEAD, jt as CopilotChatConfigurationProvider, k as CopilotChatAttachmentQueue, kt as AudioRecorderError, lt as CopilotKitProvider, mt as createA2UIMessageRenderer, nt as useHumanInTheLoop, ot as useFrontendTool, pt as defineToolCallRenderer, q as useMemories, rt as useDefaultRenderTool, st as useRenderActivityMessage, t as CopilotKit, tt as useAgent, ut as useCopilotKit, v as CopilotThreadsDrawer, vt as OpenGenerativeUIContentSchema, w as CopilotChatToggleButton, wt as MCPAppsActivityType, x as CopilotPopupView, xt as useSandboxFunctions, y as CopilotPopup, yt as OpenGenerativeUIToolRenderer, z as CopilotChatAttachmentRenderer } from "../copilotkit-C4RqjAba.mjs";
|
|
4
4
|
import "./index.css";
|
|
5
5
|
import { defaultTheme as a2uiDefaultTheme } from "@copilotkit/a2ui-renderer";
|
|
6
6
|
|
|
@@ -8,4 +8,4 @@ export * from "@copilotkit/core"
|
|
|
8
8
|
|
|
9
9
|
export * from "@ag-ui/client"
|
|
10
10
|
|
|
11
|
-
export { AudioRecorderError, CopilotChat, CopilotChatAssistantMessage_default as CopilotChatAssistantMessage, CopilotChatAttachmentQueue, CopilotChatAttachmentRenderer, CopilotChatAudioRecorder, CopilotChatConfigurationProvider, CopilotChatInput_default as CopilotChatInput, CopilotChatMessageView, CopilotChatReasoningMessage_default as CopilotChatReasoningMessage, CopilotChatSuggestionPill, CopilotChatSuggestionView, CopilotChatToggleButton, DefaultCloseIcon as CopilotChatToggleButtonCloseIcon, DefaultOpenIcon as CopilotChatToggleButtonOpenIcon, CopilotChatToolCallsView, CopilotChatUserMessage_default as CopilotChatUserMessage, CopilotChatView_default as CopilotChatView, CopilotKit, CopilotKitCoreReact, CopilotKitInspector, CopilotKitProvider, CopilotModalHeader, CopilotPopup, CopilotPopupView, CopilotSidebar, CopilotSidebarView, CopilotThreadsDrawer, GenerateSandboxedUiArgsSchema, INTELLIGENCE_TURN_HEAD, IntelligenceIndicator, IntelligenceIndicatorView, MCPAppsActivityContentSchema, MCPAppsActivityRenderer, MCPAppsActivityType, OpenGenerativeUIActivityRenderer, OpenGenerativeUIActivityType, OpenGenerativeUIContentSchema, OpenGenerativeUIToolRenderer, SandboxFunctionsContext, UseAgentUpdate, WildcardToolCallRender, a2uiDefaultTheme, createA2UIMessageRenderer, defineToolCallRenderer, getIntelligenceTurnAnchors, useAgent, useAgentContext, useAttachments, useCapabilities, useComponent, useConfigureSuggestions, useCopilotChatConfiguration, useCopilotKit, useDefaultRenderTool, useFrontendTool, useHumanInTheLoop, useInterrupt, useLearnFromUserAction, useLearnFromUserActionInCurrentThread, useLearningContainers, useLearningContainersInCurrentThread, useLicenseContext, useMemories, useRenderActivityMessage, useRenderCustomMessages, useRenderTool, useRenderToolCall, useSandboxFunctions,
|
|
11
|
+
export { AudioRecorderError, CopilotChat, CopilotChatAssistantMessage_default as CopilotChatAssistantMessage, CopilotChatAttachmentQueue, CopilotChatAttachmentRenderer, CopilotChatAudioRecorder, CopilotChatConfigurationProvider, CopilotChatInput_default as CopilotChatInput, CopilotChatMessageView, CopilotChatReasoningMessage_default as CopilotChatReasoningMessage, CopilotChatSuggestionPill, CopilotChatSuggestionView, CopilotChatToggleButton, DefaultCloseIcon as CopilotChatToggleButtonCloseIcon, DefaultOpenIcon as CopilotChatToggleButtonOpenIcon, CopilotChatToolCallsView, CopilotChatUserMessage_default as CopilotChatUserMessage, CopilotChatView_default as CopilotChatView, CopilotKit, CopilotKitCoreReact, CopilotKitInspector, CopilotKitProvider, CopilotModalHeader, CopilotPopup, CopilotPopupView, CopilotSidebar, CopilotSidebarView, CopilotThreadsDrawer, GenerateSandboxedUiArgsSchema, INTELLIGENCE_TURN_HEAD, IntelligenceIndicator, IntelligenceIndicatorView, MCPAppsActivityContentSchema, MCPAppsActivityRenderer, MCPAppsActivityType, OpenGenerativeUIActivityRenderer, OpenGenerativeUIActivityType, OpenGenerativeUIContentSchema, OpenGenerativeUIToolRenderer, SandboxFunctionsContext, UseAgentUpdate, WildcardToolCallRender, a2uiDefaultTheme, createA2UIMessageRenderer, defineToolCallRenderer, getIntelligenceTurnAnchors, useAgent, useAgentContext, useAttachments, useCapabilities, useComponent, useConfigureSuggestions, useCopilotChatConfiguration, useCopilotKit, useDefaultRenderTool, useFrontendTool, useHumanInTheLoop, useInterrupt, useLearnFromUserAction, useLearnFromUserActionInCurrentThread, useLearningContainers, useLearningContainersInCurrentThread, useLicenseContext, useMemories, useRenderActivityMessage, useRenderCustomMessages, useRenderTool, useRenderToolCall, useSandboxFunctions, useSuggestions, useThreads, ɵrunMcpFollowUp };
|
package/dist/v2/index.umd.js
CHANGED
|
@@ -4657,75 +4657,6 @@ window.parent.postMessage({jsonrpc:"2.0",method:"ui/notifications/sandbox-proxy-
|
|
|
4657
4657
|
};
|
|
4658
4658
|
}
|
|
4659
4659
|
|
|
4660
|
-
//#endregion
|
|
4661
|
-
//#region src/v2/hooks/use-subagent.tsx
|
|
4662
|
-
const warnedAmbiguousNames = /* @__PURE__ */ new Set();
|
|
4663
|
-
function resolveSubagent(subagents, subagentRunId, subagentName) {
|
|
4664
|
-
if (subagentRunId) {
|
|
4665
|
-
const match = subagents[subagentRunId];
|
|
4666
|
-
return match ? { ...match } : void 0;
|
|
4667
|
-
}
|
|
4668
|
-
if (subagentName) {
|
|
4669
|
-
const matches = Object.values(subagents).filter((s) => s.name === subagentName);
|
|
4670
|
-
if (matches.length === 0) return;
|
|
4671
|
-
const chosen = matches[matches.length - 1];
|
|
4672
|
-
return matches.length > 1 ? {
|
|
4673
|
-
...chosen,
|
|
4674
|
-
isAmbiguous: true,
|
|
4675
|
-
matchCount: matches.length
|
|
4676
|
-
} : { ...chosen };
|
|
4677
|
-
}
|
|
4678
|
-
}
|
|
4679
|
-
/**
|
|
4680
|
-
* Read a subagent's live lifecycle state (name, description, running status)
|
|
4681
|
-
* from the CopilotKit core subagent registry, by id or by declared name.
|
|
4682
|
-
*
|
|
4683
|
-
* @example
|
|
4684
|
-
* const sub = useSubagent({ subagentRunId: message.subagentRunId });
|
|
4685
|
-
* // sub?.name, sub?.description, sub?.status
|
|
4686
|
-
*/
|
|
4687
|
-
function useSubagent(params) {
|
|
4688
|
-
const { subagentRunId, subagentName, agentId } = params;
|
|
4689
|
-
const { copilotkit } = useCopilotKit();
|
|
4690
|
-
const config = useCopilotChatConfiguration();
|
|
4691
|
-
const resolvedAgentId = (0, react.useMemo)(() => agentId ?? config?.agentId ?? _copilotkit_shared.DEFAULT_AGENT_ID, [agentId, config?.agentId]);
|
|
4692
|
-
const [subagent, setSubagent] = (0, react.useState)(() => resolveSubagent(copilotkit.getSubagents(resolvedAgentId), subagentRunId, subagentName));
|
|
4693
|
-
(0, react.useEffect)(() => {
|
|
4694
|
-
setSubagent(resolveSubagent(copilotkit.getSubagents(resolvedAgentId), subagentRunId, subagentName));
|
|
4695
|
-
}, [
|
|
4696
|
-
copilotkit,
|
|
4697
|
-
resolvedAgentId,
|
|
4698
|
-
subagentRunId,
|
|
4699
|
-
subagentName
|
|
4700
|
-
]);
|
|
4701
|
-
(0, react.useEffect)(() => {
|
|
4702
|
-
const subscription = copilotkit.subscribe({ onSubagentsChanged: ({ agentId: changedAgentId, subagents }) => {
|
|
4703
|
-
if (changedAgentId !== resolvedAgentId) return;
|
|
4704
|
-
setSubagent(resolveSubagent(subagents, subagentRunId, subagentName));
|
|
4705
|
-
} });
|
|
4706
|
-
return () => {
|
|
4707
|
-
subscription.unsubscribe();
|
|
4708
|
-
};
|
|
4709
|
-
}, [
|
|
4710
|
-
copilotkit,
|
|
4711
|
-
resolvedAgentId,
|
|
4712
|
-
subagentRunId,
|
|
4713
|
-
subagentName
|
|
4714
|
-
]);
|
|
4715
|
-
(0, react.useEffect)(() => {
|
|
4716
|
-
if (process.env.NODE_ENV === "production" || !subagentName || !subagent?.isAmbiguous) return;
|
|
4717
|
-
const key = `${subagentName}:${subagent.matchCount}`;
|
|
4718
|
-
if (warnedAmbiguousNames.has(key)) return;
|
|
4719
|
-
warnedAmbiguousNames.add(key);
|
|
4720
|
-
console.warn(`[CopilotKit] useSubagent({ subagentName: ${JSON.stringify(subagentName)} }) matched ${subagent.matchCount} subagents. Returning the most recently started one; pass a subagentRunId for a stable reference.`);
|
|
4721
|
-
}, [
|
|
4722
|
-
subagentName,
|
|
4723
|
-
subagent?.isAmbiguous,
|
|
4724
|
-
subagent?.matchCount
|
|
4725
|
-
]);
|
|
4726
|
-
return subagent;
|
|
4727
|
-
}
|
|
4728
|
-
|
|
4729
4660
|
//#endregion
|
|
4730
4661
|
//#region src/v2/hooks/use-capabilities.tsx
|
|
4731
4662
|
/**
|
|
@@ -12023,7 +11954,6 @@ exports.useRenderCustomMessages = useRenderCustomMessages;
|
|
|
12023
11954
|
exports.useRenderTool = useRenderTool;
|
|
12024
11955
|
exports.useRenderToolCall = useRenderToolCall;
|
|
12025
11956
|
exports.useSandboxFunctions = useSandboxFunctions;
|
|
12026
|
-
exports.useSubagent = useSubagent;
|
|
12027
11957
|
exports.useSuggestions = useSuggestions;
|
|
12028
11958
|
exports.useThreads = useThreads;
|
|
12029
11959
|
exports.ɵrunMcpFollowUp = ɵrunMcpFollowUp;
|