@copilotkit/react-core 1.59.3 → 1.59.4

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.
@@ -881,12 +881,170 @@ declare const CopilotChatSuggestionView: React$1.ForwardRefExoticComponent<{
881
881
  loadingIndexes?: ReadonlyArray<number>;
882
882
  } & React$1.HTMLAttributes<HTMLDivElement>, "children"> & React$1.RefAttributes<HTMLDivElement>>;
883
883
  //#endregion
884
+ //#region src/v2/components/intelligence-indicator/IntelligenceIndicatorView.d.ts
885
+ /** Lifecycle state the brain hands the face. */
886
+ type IntelligenceIndicatorStatus = "in-progress" | "finished";
887
+ interface IntelligenceIndicatorViewProps extends React$1.HTMLAttributes<HTMLSpanElement> {
888
+ /** The assistant message this indicator is attached to. */
889
+ message: Message$2;
890
+ /**
891
+ * Whether the intelligence work is still running (`in-progress`) or
892
+ * has settled (`finished`). Drives the icon morph and chrome
893
+ * fade-out via the `data-status` attribute on the wrapper.
894
+ */
895
+ status: IntelligenceIndicatorStatus;
896
+ /** The visible label, e.g. "Using CopilotKit Intelligence". */
897
+ label: string;
898
+ }
899
+ /**
900
+ * The presentational "CopilotKit Intelligence" face — the default
901
+ * rendered by the {@link IntelligenceIndicator} brain and the default
902
+ * value for the `intelligenceIndicator` slot.
903
+ *
904
+ * Single-element three-stage design:
905
+ * 1. **In-progress.** Glassmorphism pill chrome around a 270° arc icon
906
+ * and the label. The arc has a single continuous visible stroke
907
+ * (one `stroke-dasharray` dash + one gap, summing to the path
908
+ * length) and the whole SVG rotates — so the viewer sees one
909
+ * C-shaped arc spinning around the visual center.
910
+ * 2. **Icon morph (~250 ms).** On status flip the single icon path
911
+ * interpolates from the arc to a checkmark via CSS `d:` while the
912
+ * dashed stroke transitions to solid (filling in the gap that was
913
+ * the spinner's open portion). The SVG rotation animation is
914
+ * removed; the snap back to identity is masked by the simultaneous
915
+ * shape change. Chrome and text stay at full opacity throughout.
916
+ * 3. **Settle (~400 ms, starts at +250 ms).** Chrome (background,
917
+ * border, shadow, backdrop-blur) fades to zero opacity. The label
918
+ * and icon stroke color transitions from saturated purple to a
919
+ * true-neutral gray at 0.8 alpha — no hue cast, reads as "settled
920
+ * history metadata." The label simultaneously skews to ~10° (a
921
+ * transform-based italic feel that interpolates smoothly with the
922
+ * color, rather than the discrete `font-style: italic` snap that
923
+ * would cause a layout pop). The label text stays put — only its
924
+ * color and slant change — so there is no "bump" where the brand
925
+ * text disappears and reappears.
926
+ *
927
+ * Hard sequence: stage 3 has a 250 ms transition-delay so it waits
928
+ * for stage 2 to finish. Total settle time ~650 ms in production.
929
+ *
930
+ * Both shapes are 3-segment cubic Bézier paths with matched command
931
+ * structure (one `M` plus three `C`s), which is what makes the d
932
+ * morph interpolate as a continuous shape change rather than snapping.
933
+ *
934
+ * The label is identical in both states (default "CopilotKit
935
+ * Intelligence"). The static check icon carries the "done" semantic;
936
+ * the color + slant transition does the "settle" work without needing
937
+ * any wording change.
938
+ *
939
+ * Customize via the `intelligenceIndicator` slot on `CopilotChat`:
940
+ * a className string restyles the wrapper, a props object tweaks
941
+ * the default (`{ label }`), and a component replaces it entirely
942
+ * with full control over visuals and timing.
943
+ */
944
+ declare function IntelligenceIndicatorView({
945
+ message,
946
+ status,
947
+ label,
948
+ className,
949
+ ...rest
950
+ }: IntelligenceIndicatorViewProps): React$1.ReactElement;
951
+ //#endregion
952
+ //#region src/v2/components/intelligence-indicator/IntelligenceIndicator.d.ts
953
+ interface IntelligenceIndicatorProps {
954
+ /** The message this indicator is attached to. */
955
+ message: Message$2;
956
+ /**
957
+ * Agent id whose run state the indicator tracks. Pass through from
958
+ * the surrounding chat configuration; mounting from
959
+ * `CopilotChatMessageView` resolves this automatically.
960
+ */
961
+ agentId: string;
962
+ /**
963
+ * Optional override for the visible label. Defaults to
964
+ * "CopilotKit Intelligence".
965
+ */
966
+ label?: string;
967
+ /**
968
+ * Slot override for the presentational face. A className string, a
969
+ * props object, or a full replacement component — see
970
+ * {@link IntelligenceIndicatorView}. Forwarded from the
971
+ * `intelligenceIndicator` slot on `CopilotChat`.
972
+ */
973
+ intelligenceIndicator?: SlotValue<typeof IntelligenceIndicatorView>;
974
+ }
975
+ /**
976
+ * Stable turn id for the messages that precede the first user message (a turn
977
+ * with no opening user message of its own). Used as the React key so the
978
+ * indicator for that turn never collides with a real user-message id.
979
+ */
980
+ declare const INTELLIGENCE_TURN_HEAD = "__cpk_turn_head__";
981
+ /**
982
+ * Map each Intelligence-using turn to its anchor message — the FIRST bash-using
983
+ * assistant message of the turn — and a stable turn id (the id of the user
984
+ * message that opened the turn, or {@link INTELLIGENCE_TURN_HEAD} for the
985
+ * pre-first-user turn). Returns `Map<anchorMessageId, turnId>`.
986
+ *
987
+ * Anchoring to the FIRST (not last) bash-using message keeps the indicator
988
+ * fixed in place for the whole turn: later bash steps don't reposition it, so
989
+ * the spinner never abruptly jumps mid-turn (bug 1). `CopilotChatMessageView`
990
+ * emits exactly one `IntelligenceIndicator` per entry, keyed by the turn id and
991
+ * positioned at the anchor; the per-turn key also lets every past turn keep its
992
+ * own indicator in scroll-back.
993
+ */
994
+ declare function getIntelligenceTurnAnchors(messages: readonly Message$2[]): Map<string, string>;
995
+ /**
996
+ * The "Using CopilotKit Intelligence" indicator brain. Auto-mounted by
997
+ * `CopilotChatMessageView` — once per Intelligence-using turn, at that
998
+ * turn's anchor message and keyed by the turn id (see
999
+ * {@link getIntelligenceTurnAnchors}). Callers do not register this
1000
+ * themselves. It owns the run subscription and the phase machine and
1001
+ * renders its swappable face via the `intelligenceIndicator` slot.
1002
+ *
1003
+ * Placement (which message anchors the turn) is decided by the view, so
1004
+ * this component does not self-gate its own placement; it only derives
1005
+ * in-progress/finished for the turn it was mounted on.
1006
+ *
1007
+ * Render gates (all must hold):
1008
+ * 1. `copilotkit.intelligence !== undefined`
1009
+ * 2. The (anchor) message is an assistant message with at least one
1010
+ * tool call whose name matches {@link DEFAULT_TOOL_PATTERNS}.
1011
+ * 3. The phase machine is past `hidden`.
1012
+ *
1013
+ * Because the view keys each indicator by its turn id, the instance moves
1014
+ * with the anchor across a hand-off (no remount, no spinner restart), and
1015
+ * every prior Intelligence-using turn keeps its own persistent indicator
1016
+ * in chat history.
1017
+ *
1018
+ * Phase machine (per-instance, all timers local):
1019
+ * - Starts in `hidden`, unless the message mounts onto an
1020
+ * already-completed turn (no pending work, agent stopped or a
1021
+ * real follow-up already present), in which case the lazy
1022
+ * `useState` initializer starts directly in `finished`. This is
1023
+ * what avoids a "hidden flash" on history replay.
1024
+ * - `hidden → spinner` once a matching tool call has been pending
1025
+ * (no `tool`-role result with a matching `toolCallId`) for
1026
+ * {@link PENDING_THRESHOLD_MS}. Replay flashes (tool call + result
1027
+ * in the same tick) never cross this threshold.
1028
+ * - `hidden → finished` if after the grace window the turn is
1029
+ * already complete (no pending work AND
1030
+ * `sawRealFollowup || !agent.isRunning`). Handles very fast tools
1031
+ * whose result lands within the grace window.
1032
+ * - `spinner → finished` as soon as EITHER `agent.isRunning` flips
1033
+ * false OR a non-tool-call-like message appears later in
1034
+ * `agent.messages` (i.e. the agent produced a "real" follow-up —
1035
+ * prose answer or a new user turn).
1036
+ * - `finished` is terminal: the indicator settles into its
1037
+ * persistent tag form and stays mounted.
1038
+ */
1039
+ declare function IntelligenceIndicator(props: IntelligenceIndicatorProps): React$1.ReactElement | null;
1040
+ //#endregion
884
1041
  //#region src/v2/components/chat/CopilotChatMessageView.d.ts
885
1042
  type CopilotChatMessageViewProps = Omit<WithSlots<{
886
1043
  assistantMessage: typeof CopilotChatAssistantMessage;
887
1044
  userMessage: typeof CopilotChatUserMessage;
888
1045
  reasoningMessage: typeof CopilotChatReasoningMessage;
889
1046
  cursor: typeof CopilotChatMessageView.Cursor;
1047
+ intelligenceIndicator: typeof IntelligenceIndicatorView;
890
1048
  }, {
891
1049
  isRunning?: boolean;
892
1050
  messages?: Message$2[];
@@ -904,6 +1062,7 @@ declare function CopilotChatMessageView({
904
1062
  userMessage,
905
1063
  reasoningMessage,
906
1064
  cursor,
1065
+ intelligenceIndicator,
907
1066
  isRunning,
908
1067
  children,
909
1068
  className,
@@ -977,6 +1136,12 @@ type CopilotChatViewProps = WithSlots<{
977
1136
  * ```
978
1137
  */
979
1138
  disclaimer?: SlotValue<React$1.FC<React$1.HTMLAttributes<HTMLDivElement>>>;
1139
+ /**
1140
+ * Slot for the "Using CopilotKit Intelligence" indicator. Pass-through
1141
+ * to `CopilotChatMessageView`'s `intelligenceIndicator` slot — accepts a
1142
+ * className string, a props object, or a replacement component.
1143
+ */
1144
+ intelligenceIndicator?: SlotValue<typeof IntelligenceIndicatorView>;
980
1145
  } & React$1.HTMLAttributes<HTMLDivElement>>;
981
1146
  declare function CopilotChatView({
982
1147
  messageView,
@@ -1009,6 +1174,7 @@ declare function CopilotChatView({
1009
1174
  isConnecting,
1010
1175
  hasExplicitThreadId,
1011
1176
  disclaimer,
1177
+ intelligenceIndicator,
1012
1178
  children,
1013
1179
  className,
1014
1180
  ...props
@@ -1303,62 +1469,6 @@ interface MCPAppsActivityRendererProps {
1303
1469
  */
1304
1470
  declare const MCPAppsActivityRenderer: React$1.FC<MCPAppsActivityRendererProps>;
1305
1471
  //#endregion
1306
- //#region src/v2/components/intelligence-indicator/IntelligenceIndicator.d.ts
1307
- interface IntelligenceIndicatorProps {
1308
- /** The message this indicator is attached to. */
1309
- message: Message$2;
1310
- /**
1311
- * Agent id whose run state the indicator tracks. Pass through from
1312
- * the surrounding chat configuration; mounting from
1313
- * `CopilotChatMessageView` resolves this automatically.
1314
- */
1315
- agentId: string;
1316
- /**
1317
- * Optional override for the visible label. Defaults to "Using
1318
- * CopilotKit Intelligence".
1319
- */
1320
- label?: string;
1321
- }
1322
- /**
1323
- * The "Using CopilotKit Intelligence" pill. Auto-mounted by
1324
- * `CopilotChatMessageView` for every message slot when
1325
- * `copilotkit.intelligence` is configured — callers do not register
1326
- * this themselves. Self-gates so only the canonical message renders a
1327
- * pill.
1328
- *
1329
- * Render gates (all must hold):
1330
- * 1. `copilotkit.intelligence !== undefined`
1331
- * 2. The message is an assistant message with at least one tool call
1332
- * whose name matches {@link DEFAULT_TOOL_PATTERNS}
1333
- * 3. The message is the *latest* such matching-assistant message in
1334
- * `agent.messages` — tool-result messages and prose-only assistant
1335
- * messages don't invalidate the slot, so the pill stays
1336
- * continuously through a multi-step tool chain.
1337
- * 4. The phase machine is past `idle` (the pending-grace timer fired)
1338
- * and not yet `hidden`.
1339
- *
1340
- * Phase machine (per-instance, all timers local):
1341
- * - Starts in `idle` — nothing rendered.
1342
- * - `idle → spinner` once a matching tool call has been pending
1343
- * (no `tool`-role result with a matching `toolCallId`) for
1344
- * {@link PENDING_THRESHOLD_MS}. Replay flashes (tool call + result
1345
- * in the same tick) never cross this threshold.
1346
- * - `spinner → check` as soon as EITHER `agent.isRunning` flips
1347
- * false OR a non-tool-call-like message appears later in
1348
- * `agent.messages` (i.e. the agent has produced a "real"
1349
- * follow-up — prose answer or a new user turn).
1350
- * - `check → fading` after {@link CHECK_HOLD_MS}.
1351
- * - `fading → hidden` after {@link FADE_OUT_ANIMATION_MS}.
1352
- *
1353
- * Once `hidden`, the phase is sticky — a finished pill never re-spawns
1354
- * on the same message. New runs mount fresh indicator instances on
1355
- * their own assistant messages.
1356
- *
1357
- * The "exactly one pill at a time" guarantee is structural: only one
1358
- * message satisfies the latest-matching-assistant gate at any moment.
1359
- */
1360
- declare function IntelligenceIndicator(props: IntelligenceIndicatorProps): React$1.ReactElement | null;
1361
- //#endregion
1362
1472
  //#region src/v2/hooks/use-render-tool-call.d.ts
1363
1473
  interface UseRenderToolCallProps {
1364
1474
  toolCall: ToolCall;
@@ -2086,6 +2196,130 @@ declare function useThreads({
2086
2196
  limit
2087
2197
  }: UseThreadsInput): UseThreadsResult;
2088
2198
  //#endregion
2199
+ //#region src/v2/hooks/use-learn-from-user-action.d.ts
2200
+ /**
2201
+ * Input to {@link UseLearnFromUserActionRecorder}, the function returned
2202
+ * by {@link useLearnFromUserAction}. Captures a single UI interaction that
2203
+ * the Intelligence platform's auto-curated knowledge base loop will distill
2204
+ * into the team's `/project` notes.
2205
+ */
2206
+ interface LearnFromUserActionInput {
2207
+ /** Thread the action is associated with. May be unknown to the platform. */
2208
+ threadId: string;
2209
+ /** Short, agent-readable summary of what the user did. Optional. */
2210
+ title?: string | null;
2211
+ /** Optional longer explanation. */
2212
+ description?: string | null;
2213
+ /** Free-form, JSON-serializable snapshot describing the action. Optional. */
2214
+ data?: unknown;
2215
+ /** ISO-8601 client-asserted timestamp. Defaults to server NOW() when absent. */
2216
+ occurredAt?: string;
2217
+ /**
2218
+ * Caller-supplied idempotency key. When omitted, `recordAnnotation` generates a
2219
+ * fresh UUID per call so retries collapse to the original row at the
2220
+ * platform. Supply your own to keep a single semantic event idempotent
2221
+ * across calls (e.g. a React re-render or a manual retry button).
2222
+ */
2223
+ clientEventId?: string;
2224
+ }
2225
+ /** Outcome returned by the recorder function. */
2226
+ interface LearnFromUserActionResult {
2227
+ /** Platform-assigned id of the user-action row. */
2228
+ id: string;
2229
+ /** True when the platform recognized this `clientEventId` as a retry. */
2230
+ duplicate: boolean;
2231
+ }
2232
+ /** Recorder function returned by {@link useLearnFromUserAction}. */
2233
+ type UseLearnFromUserActionRecorder = (input: LearnFromUserActionInput) => Promise<LearnFromUserActionResult>;
2234
+ /**
2235
+ * Record a user UI interaction in the Intelligence platform's user-actions
2236
+ * stream. The platform's auto-curated knowledge base agent reads these
2237
+ * (alongside finished agent runs) and writes free-form Obsidian-flavored
2238
+ * markdown to `/project`, where any agent in the same project can later
2239
+ * read it via the `copilotkit_knowledge_base_shell` MCP tool.
2240
+ *
2241
+ * The hook returns a stable function. Calling it issues a request to the
2242
+ * customer's CopilotKit runtime (`POST ${runtimeUrl}/annotate`), which
2243
+ * resolves the Intel user from the BFF's auth and forwards to the
2244
+ * platform — the Intel API key never reaches the browser.
2245
+ *
2246
+ * If `clientEventId` is omitted `recordAnnotation` generates a UUID per call,
2247
+ * so a naive double-call (e.g. React 18 strict-mode double-mount, or a retry
2248
+ * after a network blip on a fresh Promise) is naturally safe. Supply your
2249
+ * own key when a single semantic event must remain idempotent across
2250
+ * multiple `learnFromUserAction(...)` calls.
2251
+ *
2252
+ * @example
2253
+ * ```tsx
2254
+ * import { useLearnFromUserAction } from "@copilotkit/react-core";
2255
+ *
2256
+ * function SettingsPage({ threadId }) {
2257
+ * const learnFromUserAction = useLearnFromUserAction();
2258
+ *
2259
+ * const onRename = (oldName: string, newName: string) => {
2260
+ * void learnFromUserAction({
2261
+ * threadId,
2262
+ * title: "Renamed project",
2263
+ * data: { previous: { name: oldName }, next: { name: newName } },
2264
+ * });
2265
+ * };
2266
+ * }
2267
+ * ```
2268
+ */
2269
+ declare function useLearnFromUserAction(): UseLearnFromUserActionRecorder;
2270
+ //#endregion
2271
+ //#region src/v2/hooks/use-learn-from-user-action-in-current-thread.d.ts
2272
+ /**
2273
+ * Input to {@link UseLearnFromUserActionInCurrentThreadRecorder} — same as
2274
+ * {@link LearnFromUserActionInput} minus `threadId`, which is sourced from
2275
+ * the surrounding `<CopilotChatConfigurationProvider>` at call time.
2276
+ */
2277
+ type LearnFromUserActionInCurrentThreadInput = Omit<LearnFromUserActionInput, "threadId">;
2278
+ /** Recorder function returned by {@link useLearnFromUserActionInCurrentThread}. */
2279
+ type UseLearnFromUserActionInCurrentThreadRecorder = (input: LearnFromUserActionInCurrentThreadInput) => Promise<LearnFromUserActionResult>;
2280
+ /**
2281
+ * Record a user UI interaction against the **current chat's** thread. The
2282
+ * `threadId` is sourced from the surrounding
2283
+ * `<CopilotChatConfigurationProvider>` (the same provider `<CopilotChat>`,
2284
+ * `<CopilotSidebar>`, and friends set up), so callers in a chat-aware
2285
+ * subtree don't need to thread an id through manually.
2286
+ *
2287
+ * Throws on **call** (not on mount) when there is no chat-config provider
2288
+ * in scope — matches the "throw on call when runtimeUrl is missing"
2289
+ * behavior of {@link useLearnFromUserAction}. Mounting the hook in a branch
2290
+ * that never fires is harmless.
2291
+ *
2292
+ * The recorder does NOT accept a `threadId` override. If you need to
2293
+ * record against an explicit thread, use {@link useLearnFromUserAction}
2294
+ * directly — two hooks, two crisp contracts, no mode confusion.
2295
+ *
2296
+ * This hook always uses `config.threadId`, regardless of whether the
2297
+ * surrounding chat config minted it internally or received one from
2298
+ * the caller. Auto-minted threads simply mean the action lands under
2299
+ * a thread the platform never saw — the writer agent still distills
2300
+ * user-action-only threads (it does not require the thread to exist
2301
+ * in `cpki.threads`), so the loop keeps learning.
2302
+ *
2303
+ * @example
2304
+ * ```tsx
2305
+ * import { useLearnFromUserActionInCurrentThread } from "@copilotkit/react-core";
2306
+ *
2307
+ * function SettingsPanel() {
2308
+ * const learnFromUserAction = useLearnFromUserActionInCurrentThread();
2309
+ *
2310
+ * const onRename = (oldName: string, newName: string) => {
2311
+ * void learnFromUserAction({
2312
+ * title: "Renamed project",
2313
+ * data: { previous: { name: oldName }, next: { name: newName } },
2314
+ * });
2315
+ * };
2316
+ *
2317
+ * // ...
2318
+ * }
2319
+ * ```
2320
+ */
2321
+ declare function useLearnFromUserActionInCurrentThread(): UseLearnFromUserActionInCurrentThreadRecorder;
2322
+ //#endregion
2089
2323
  //#region src/v2/hooks/use-attachments.d.ts
2090
2324
  interface UseAttachmentsProps {
2091
2325
  config?: AttachmentsConfig;
@@ -2129,6 +2363,95 @@ declare function useAttachments({
2129
2363
  config
2130
2364
  }: UseAttachmentsProps): UseAttachmentsReturn;
2131
2365
  //#endregion
2366
+ //#region src/v2/hooks/use-learning-containers.d.ts
2367
+ /**
2368
+ * Arguments for {@link useLearningContainers}.
2369
+ */
2370
+ interface UseLearningContainersArgs {
2371
+ /** Thread to apply the learning-container selection to. */
2372
+ threadId: string;
2373
+ /**
2374
+ * The ordered list of learning container identifiers to activate for this
2375
+ * thread. Defaults to `["project"]` on the backend when absent.
2376
+ */
2377
+ learningContainers: readonly string[];
2378
+ }
2379
+ /**
2380
+ * Declaratively keeps a thread's learning containers in sync by emitting
2381
+ * `set_learning_containers` annotations via the CopilotKit runtime annotate
2382
+ * endpoint (`POST ${runtimeUrl}/annotate`).
2383
+ *
2384
+ * **Emit rules:**
2385
+ * - On mount with `["project"]` (the backend default) → does NOT emit.
2386
+ * Absence of an annotation equals the default, so the round-trip is skipped.
2387
+ * - On mount with any other value → emits immediately.
2388
+ * - On any subsequent content change (including a switch back to
2389
+ * `["project"]`) → emits (a deliberate switch is always recorded).
2390
+ * - On unmount or threadId change → emits a reset to `["project"]`
2391
+ * so the backend is left in a clean state for the next consumer.
2392
+ * Changing `learningContainers` within the same thread does NOT reset the
2393
+ * thread; only the new value is emitted.
2394
+ *
2395
+ * Content-equality is evaluated via `JSON.stringify` so a fresh array literal
2396
+ * with the same items does NOT trigger a redundant emit.
2397
+ *
2398
+ * If `runtimeUrl` is absent, all emits are silently skipped.
2399
+ *
2400
+ * @example
2401
+ * ```tsx
2402
+ * function ThreadPane({ threadId, userScope }: Props) {
2403
+ * useLearningContainers({
2404
+ * threadId,
2405
+ * learningContainers: [userScope],
2406
+ * });
2407
+ * // ...
2408
+ * }
2409
+ * ```
2410
+ */
2411
+ declare function useLearningContainers({
2412
+ threadId,
2413
+ learningContainers
2414
+ }: UseLearningContainersArgs): void;
2415
+ //#endregion
2416
+ //#region src/v2/hooks/use-learning-containers-in-current-thread.d.ts
2417
+ /**
2418
+ * Arguments for {@link useLearningContainersInCurrentThread}.
2419
+ * Same as {@link UseLearningContainersArgs} minus `threadId`, which is
2420
+ * sourced from the surrounding `<CopilotChatConfigurationProvider>` at
2421
+ * render time.
2422
+ */
2423
+ type UseLearningContainersInCurrentThreadArgs = Omit<UseLearningContainersArgs, "threadId">;
2424
+ /**
2425
+ * Declaratively keeps the **current chat thread's** learning containers in
2426
+ * sync. The `threadId` is sourced from the surrounding
2427
+ * `<CopilotChatConfigurationProvider>` (the same provider `<CopilotChat>`,
2428
+ * `<CopilotSidebar>`, and friends set up), so callers in a chat-aware
2429
+ * subtree don't need to thread an id through manually.
2430
+ *
2431
+ * **Throws on render** when there is no chat-config provider in scope or
2432
+ * when the provider does not yet have an active `threadId`. Mount the hook
2433
+ * inside a subtree that is guaranteed to have a thread context.
2434
+ *
2435
+ * If you need to manage an explicit thread, use {@link useLearningContainers}
2436
+ * directly — two hooks, two crisp contracts, no mode confusion.
2437
+ *
2438
+ * @throws When no `CopilotChatConfigurationProvider` is in scope or when the
2439
+ * active `threadId` is absent/empty.
2440
+ *
2441
+ * @example
2442
+ * ```tsx
2443
+ * function ThreadPanel({ scope }: Props) {
2444
+ * useLearningContainersInCurrentThread({
2445
+ * learningContainers: [scope],
2446
+ * });
2447
+ * // ...
2448
+ * }
2449
+ * ```
2450
+ */
2451
+ declare function useLearningContainersInCurrentThread({
2452
+ learningContainers
2453
+ }: UseLearningContainersInCurrentThreadArgs): void;
2454
+ //#endregion
2132
2455
  //#region src/v2/lib/react-core.d.ts
2133
2456
  interface CopilotKitCoreReactConfig extends CopilotKitCoreConfig {
2134
2457
  renderToolCalls?: ReactToolCallRenderer<any>[];
@@ -2545,5 +2868,5 @@ declare function CopilotKit({
2545
2868
  }: CopilotKitProps): react_jsx_runtime0.JSX.Element;
2546
2869
  declare const defaultCopilotContextCategories: string[];
2547
2870
  //#endregion
2548
- export { IntelligenceIndicator as $, useCopilotChatConfiguration as $t, useAgentContext as A, ActionRenderPropsWait as An, CopilotChatViewProps as At, SandboxFunction as B, CopilotChatUserMessage as Bt, useThreads as C, SystemMessageFunction as Cn, CopilotChatToggleButton as Ct, useSuggestions as D, ActionRenderProps as Dn, CopilotChat as Dt, useConfigureSuggestions as E, TreeNode as En, DefaultOpenIcon as Et, useDefaultRenderTool as F, RenderFunctionStatus as Fn, CopilotChatSuggestionViewProps as Ft, ReactHumanInTheLoop as G, CopilotChatToolCallsViewProps as Gt, InterruptHandlerProps as H, CopilotChatAssistantMessage as Ht, useRenderTool as I, CopilotChatSuggestionPill as It, ReactToolCallRenderer as J, ToolsMenuItem as Jt, ReactFrontendTool as K, CopilotChatInput as Kt, useComponent as L, CopilotChatSuggestionPillProps as Lt, UseAgentUpdate as M, CatchAllFrontendAction as Mn, CopilotChatMessageView as Mt, useAgent as N, FrontendAction as Nn, CopilotChatMessageViewProps as Nt, AgentContextInput as O, ActionRenderPropsNoArgs as On, CopilotChatProps as Ot, useHumanInTheLoop as P, FrontendActionAvailability as Pn, CopilotChatSuggestionView as Pt, useRenderToolCall as Q, CopilotChatLabels as Qt, useFrontendTool as R, CopilotChatReasoningMessage as Rt, UseThreadsResult as S, CopilotChatSuggestionConfiguration as Sn, CopilotModalHeaderProps as St, useInterrupt as T, Tree as Tn, DefaultCloseIcon as Tt, InterruptRenderProps as U, CopilotChatAssistantMessageProps as Ut, InterruptEvent as V, CopilotChatUserMessageProps as Vt, defineToolCallRenderer as W, CopilotChatToolCallsView as Wt, ReactCustomMessageRenderer as X, CopilotChatConfigurationProviderProps as Xt, useRenderCustomMessages as Y, CopilotChatConfigurationProvider as Yt, ReactCustomMessageRendererPosition as Z, CopilotChatConfigurationValue as Zt, UseAttachmentsProps as _, CrewsResponse as _n, CopilotPopupView as _t, A2UIUserAction as a, CopilotContext as an, CopilotKitInspector as at, Thread as b, CrewsTaskStateItem as bn, CopilotSidebarViewProps as bt, SandboxFunctionsContext as c, CoAgentStateRender as cn, Attachment$1 as ct, CopilotKitProviderProps as d, LangGraphInterruptActionSetterArgs as dn, CopilotChatAttachmentRenderer as dt, AudioRecorderError as en, IntelligenceIndicatorProps as et, CopilotKitContextValue as f, LangGraphInterruptRender as fn, CopilotChatAttachmentQueue as ft, CopilotKitCoreReactSubscriber as g, CrewsAgentState as gn, CopilotSidebarProps as gt, CopilotKitCoreReactConfig as h, QueuedInterruptEvent as hn, CopilotSidebar as ht, A2UIMessageRendererOptions as i, CopilotApiConfig as in, MCPAppsActivityType as it, useCapabilities as j, CatchAllActionRenderProps as jn, AutoScrollMode as jt, JsonSerializable as k, ActionRenderPropsNoArgsWait as kn, CopilotChatView as kt, useSandboxFunctions as l, LangGraphInterruptAction as ln, AttachmentModality as lt, CopilotKitCoreReact as m, LangGraphInterruptRenderProps as mn, CopilotPopupProps as mt, defaultCopilotContextCategories as n, CopilotChatAudioRecorder as nn, MCPAppsActivityContentSchema as nt, createA2UIMessageRenderer as o, CopilotContextParams as on, CopilotKitInspectorProps as ot, useCopilotKit as p, LangGraphInterruptRenderHandlerProps as pn, CopilotPopup as pt, ReactActivityMessageRenderer as q, CopilotChatInputProps as qt, CopilotKitProps as r, CoagentInChatRenderFunction as rn, MCPAppsActivityRenderer as rt, InspectorAnchor as s, useCopilotContext as sn, WildcardToolCallRender as st, CopilotKit as t, AudioRecorderState as tn, MCPAppsActivityContent as tt, CopilotKitProvider as u, LangGraphInterruptActionSetter as un, AttachmentsConfig$1 as ut, UseAttachmentsReturn as v, CrewsResponseStatus as vn, CopilotPopupViewProps as vt, UseInterruptConfig as w, DocumentPointer as wn, CopilotChatToggleButtonProps as wt, UseThreadsInput as x, CrewsToolStateItem as xn, CopilotModalHeader as xt, useAttachments as y, CrewsStateItem as yn, CopilotSidebarView as yt, useRenderActivityMessage as z, CopilotChatReasoningMessageProps as zt };
2549
- //# sourceMappingURL=copilotkit-CEJz6krE.d.mts.map
2871
+ export { InterruptHandlerProps as $, CopilotChatSuggestionPillProps as $t, useLearnFromUserAction as A, LangGraphInterruptRenderProps as An, CopilotModalHeader as At, JsonSerializable as B, DocumentPointer as Bn, AutoScrollMode as Bt, useAttachments as C, useCopilotContext as Cn, CopilotPopupProps as Ct, LearnFromUserActionInput as D, LangGraphInterruptActionSetterArgs as Dn, CopilotPopupViewProps as Dt, useLearnFromUserActionInCurrentThread as E, LangGraphInterruptActionSetter as En, CopilotPopupView as Et, UseInterruptConfig as F, CrewsStateItem as Fn, DefaultOpenIcon as Ft, useHumanInTheLoop as G, ActionRenderPropsNoArgsWait as Gn, IntelligenceIndicatorProps as Gt, useCapabilities as H, TreeNode as Hn, CopilotChatMessageViewProps as Ht, useInterrupt as I, CrewsTaskStateItem as In, CopilotChat as It, useComponent as J, CatchAllFrontendAction as Jn, IntelligenceIndicatorView as Jt, useDefaultRenderTool as K, ActionRenderPropsWait as Kn, getIntelligenceTurnAnchors as Kt, useConfigureSuggestions as L, CrewsToolStateItem as Ln, CopilotChatProps as Lt, UseThreadsInput as M, CrewsAgentState as Mn, CopilotChatToggleButton as Mt, UseThreadsResult as N, CrewsResponse as Nn, CopilotChatToggleButtonProps as Nt, LearnFromUserActionResult as O, LangGraphInterruptRender as On, CopilotSidebarView as Ot, useThreads as P, CrewsResponseStatus as Pn, DefaultCloseIcon as Pt, InterruptEvent as Q, CopilotChatSuggestionPill as Qt, useSuggestions as R, CopilotChatSuggestionConfiguration as Rn, CopilotChatView as Rt, UseAttachmentsReturn as S, CopilotContextParams as Sn, CopilotPopup as St, UseLearnFromUserActionInCurrentThreadRecorder as T, LangGraphInterruptAction as Tn, CopilotSidebarProps as Tt, UseAgentUpdate as U, ActionRenderProps as Un, INTELLIGENCE_TURN_HEAD as Ut, useAgentContext as V, Tree as Vn, CopilotChatMessageView as Vt, useAgent as W, ActionRenderPropsNoArgs as Wn, IntelligenceIndicator as Wt, useRenderActivityMessage as X, FrontendActionAvailability as Xn, CopilotChatSuggestionView as Xt, useFrontendTool as Y, FrontendAction as Yn, IntelligenceIndicatorViewProps as Yt, SandboxFunction as Z, RenderFunctionStatus as Zn, CopilotChatSuggestionViewProps as Zt, UseLearningContainersInCurrentThreadArgs as _, AudioRecorderState as _n, Attachment$1 as _t, A2UIUserAction as a, CopilotChatAssistantMessageProps as an, ReactToolCallRenderer as at, useLearningContainers as b, CopilotApiConfig as bn, CopilotChatAttachmentRenderer as bt, SandboxFunctionsContext as c, CopilotChatInput as cn, ReactCustomMessageRendererPosition as ct, CopilotKitProviderProps as d, CopilotChatConfigurationProvider as dn, MCPAppsActivityContentSchema as dt, CopilotChatReasoningMessage as en, InterruptRenderProps as et, CopilotKitContextValue as f, CopilotChatConfigurationProviderProps as fn, MCPAppsActivityRenderer as ft, CopilotKitCoreReactSubscriber as g, AudioRecorderError as gn, WildcardToolCallRender as gt, CopilotKitCoreReactConfig as h, useCopilotChatConfiguration as hn, CopilotKitInspectorProps as ht, A2UIMessageRendererOptions as i, CopilotChatAssistantMessage as in, ReactActivityMessageRenderer as it, Thread as j, QueuedInterruptEvent as jn, CopilotModalHeaderProps as jt, UseLearnFromUserActionRecorder as k, LangGraphInterruptRenderHandlerProps as kn, CopilotSidebarViewProps as kt, useSandboxFunctions as l, CopilotChatInputProps as ln, useRenderToolCall as lt, CopilotKitCoreReact as m, CopilotChatLabels as mn, CopilotKitInspector as mt, defaultCopilotContextCategories as n, CopilotChatUserMessage as nn, ReactHumanInTheLoop as nt, createA2UIMessageRenderer as o, CopilotChatToolCallsView as on, useRenderCustomMessages as ot, useCopilotKit as p, CopilotChatConfigurationValue as pn, MCPAppsActivityType as pt, useRenderTool as q, CatchAllActionRenderProps as qn, IntelligenceIndicatorStatus as qt, CopilotKitProps as r, CopilotChatUserMessageProps as rn, ReactFrontendTool as rt, InspectorAnchor as s, CopilotChatToolCallsViewProps as sn, ReactCustomMessageRenderer as st, CopilotKit as t, CopilotChatReasoningMessageProps as tn, defineToolCallRenderer as tt, CopilotKitProvider as u, ToolsMenuItem as un, MCPAppsActivityContent as ut, useLearningContainersInCurrentThread as v, CopilotChatAudioRecorder as vn, AttachmentModality as vt, LearnFromUserActionInCurrentThreadInput as w, CoAgentStateRender as wn, CopilotSidebar as wt, UseAttachmentsProps as x, CopilotContext as xn, CopilotChatAttachmentQueue as xt, UseLearningContainersArgs as y, CoagentInChatRenderFunction as yn, AttachmentsConfig$1 as yt, AgentContextInput as z, SystemMessageFunction as zn, CopilotChatViewProps as zt };
2872
+ //# sourceMappingURL=copilotkit-D42EuTt0.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"copilotkit-D42EuTt0.d.mts","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/components/chat/CopilotChatAttachmentQueue.tsx","../src/v2/components/chat/CopilotChatAttachmentRenderer.tsx","../src/v2/components/WildcardToolCallRender.tsx","../src/v2/components/CopilotKitInspector.tsx","../src/v2/components/MCPAppsActivityRenderer.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-threads.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/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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"}