@assistant-ui/react 0.5.72 → 0.5.74
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/{chunk-5KIEXJRK.js → chunk-KVXP3Q6K.js} +60 -21
- package/dist/chunk-KVXP3Q6K.js.map +1 -0
- package/dist/{chunk-DC342I2Q.mjs → chunk-SNNYBBO6.mjs} +57 -18
- package/dist/chunk-SNNYBBO6.mjs.map +1 -0
- package/dist/{edge-DRioHVD9.d.mts → edge-rTP-G718.d.mts} +17 -6
- package/dist/{edge-DRioHVD9.d.ts → edge-rTP-G718.d.ts} +17 -6
- package/dist/edge.d.mts +9 -2
- package/dist/edge.d.ts +9 -2
- package/dist/edge.js +56 -17
- package/dist/edge.js.map +1 -1
- package/dist/edge.mjs +56 -17
- package/dist/edge.mjs.map +1 -1
- package/dist/index.d.mts +81 -24
- package/dist/index.d.ts +81 -24
- package/dist/index.js +275 -202
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +461 -388
- package/dist/index.mjs.map +1 -1
- package/dist/styles/index.css +1 -1
- package/dist/styles/index.css.map +1 -1
- package/dist/styles/tailwindcss/thread.css +1 -1
- package/package.json +4 -4
- package/dist/chunk-5KIEXJRK.js.map +0 -1
- package/dist/chunk-DC342I2Q.mjs.map +0 -1
package/dist/index.d.mts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
import { A as Attachment, P as PendingAttachment, T as ThreadMessage, C as CoreMessage, a as AppendMessage, M as ModelConfig, b as ModelConfigProvider, c as ThreadAssistantContentPart, d as MessageStatus, e as
|
2
|
-
export { q as AttachmentStatus, v as CoreAssistantContentPart, y as CoreAssistantMessage, w as CoreSystemMessage, u as CoreUserContentPart, x as CoreUserMessage, E as EdgeRuntimeRequestOptions, s as ThreadAssistantMessage, r as ThreadSystemMessage, t as ThreadUserMessage } from './edge-
|
1
|
+
import { A as Attachment, P as PendingAttachment, T as ThreadMessage, C as CoreMessage, a as AppendMessage, M as ModelConfig, b as ModelConfigProvider, c as ThreadAssistantContentPart, d as MessageStatus, e as ThreadStep, f as PendingAttachmentStatus, g as CompleteAttachment, h as CompleteAttachmentStatus, i as Tool, j as TextContentPart, I as ImageContentPart, k as ToolCallContentPart, l as CoreToolCallContentPart, U as UIContentPart, m as CreateEdgeRuntimeAPIOptions, n as ThreadUserContentPart, o as ContentPartStatus, p as ToolCallContentPartStatus } from './edge-rTP-G718.mjs';
|
2
|
+
export { q as AttachmentStatus, v as CoreAssistantContentPart, y as CoreAssistantMessage, w as CoreSystemMessage, u as CoreUserContentPart, x as CoreUserMessage, E as EdgeRuntimeRequestOptions, s as ThreadAssistantMessage, r as ThreadSystemMessage, t as ThreadUserMessage } from './edge-rTP-G718.mjs';
|
3
3
|
import * as react from 'react';
|
4
4
|
import { ComponentType, PropsWithChildren, FC, ComponentPropsWithoutRef, ElementType, ReactNode } from 'react';
|
5
5
|
import { StoreApi, UseBoundStore } from 'zustand';
|
@@ -159,7 +159,11 @@ type ChatModelRunResult = {
|
|
159
159
|
content?: ThreadAssistantContentPart[];
|
160
160
|
status?: MessageStatus;
|
161
161
|
metadata?: {
|
162
|
-
|
162
|
+
/**
|
163
|
+
* @deprecated Use `steps` instead. This field will be removed in v0.6.
|
164
|
+
*/
|
165
|
+
roundtrips?: ThreadStep[];
|
166
|
+
steps?: ThreadStep[];
|
163
167
|
custom?: Record<string, unknown>;
|
164
168
|
};
|
165
169
|
};
|
@@ -280,6 +284,10 @@ type FeedbackAdapter = {
|
|
280
284
|
|
281
285
|
type LocalRuntimeOptions = {
|
282
286
|
initialMessages?: readonly CoreMessage[] | undefined;
|
287
|
+
maxSteps?: number | undefined;
|
288
|
+
/**
|
289
|
+
* @deprecated Use `maxSteps` (which is `maxToolRoundtrips` + 1; if you set `maxToolRoundtrips` to 2, set `maxSteps` to 3) instead. This field will be removed in v0.6.
|
290
|
+
*/
|
283
291
|
maxToolRoundtrips?: number | undefined;
|
284
292
|
adapters?: {
|
285
293
|
attachments?: AttachmentAdapter | undefined;
|
@@ -401,9 +409,9 @@ declare const useLocalRuntime: (adapter: ChatModelAdapter, options?: LocalRuntim
|
|
401
409
|
declare function toLanguageModelMessages(message: readonly CoreMessage[] | readonly ThreadMessage[]): LanguageModelV1Message[];
|
402
410
|
|
403
411
|
type fromLanguageModelMessagesOptions = {
|
404
|
-
|
412
|
+
mergeSteps: boolean;
|
405
413
|
};
|
406
|
-
declare const fromLanguageModelMessages: (lm: LanguageModelV1Message[], {
|
414
|
+
declare const fromLanguageModelMessages: (lm: LanguageModelV1Message[], { mergeSteps }: fromLanguageModelMessagesOptions) => CoreMessage[];
|
407
415
|
|
408
416
|
declare const fromCoreMessages: (message: readonly CoreMessage[]) => ThreadMessage[];
|
409
417
|
declare const fromCoreMessage: (message: CoreMessage, { id, status, attachments, }?: {
|
@@ -1836,8 +1844,8 @@ type UseActionBarFloatStatusProps = {
|
|
1836
1844
|
autohideFloat?: "always" | "single-branch" | "never" | undefined;
|
1837
1845
|
};
|
1838
1846
|
|
1839
|
-
type PrimitiveDivProps$
|
1840
|
-
type ActionBarPrimitiveRootProps = PrimitiveDivProps$
|
1847
|
+
type PrimitiveDivProps$6 = ComponentPropsWithoutRef<typeof Primitive.div>;
|
1848
|
+
type ActionBarPrimitiveRootProps = PrimitiveDivProps$6 & UseActionBarFloatStatusProps;
|
1841
1849
|
declare const ActionBarPrimitiveRoot: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
1842
1850
|
ref?: ((instance: HTMLDivElement | null) => void | react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | react.RefObject<HTMLDivElement> | null | undefined;
|
1843
1851
|
} & {
|
@@ -1896,7 +1904,7 @@ declare const ActionBarPrimitiveFeedbackNegative: react.ForwardRefExoticComponen
|
|
1896
1904
|
asChild?: boolean;
|
1897
1905
|
}, "ref">> & react.RefAttributes<HTMLButtonElement>>;
|
1898
1906
|
|
1899
|
-
declare namespace index$
|
1907
|
+
declare namespace index$7 {
|
1900
1908
|
export { ActionBarPrimitiveCopy as Copy, ActionBarPrimitiveEdit as Edit, ActionBarPrimitiveFeedbackNegative as FeedbackNegative, ActionBarPrimitiveFeedbackPositive as FeedbackPositive, ActionBarPrimitiveReload as Reload, ActionBarPrimitiveRoot as Root, ActionBarPrimitiveSpeak as Speak, ActionBarPrimitiveStopSpeaking as StopSpeaking };
|
1901
1909
|
}
|
1902
1910
|
|
@@ -1915,10 +1923,50 @@ declare const AssistantModalPrimitiveContent: react.ForwardRefExoticComponent<Om
|
|
1915
1923
|
|
1916
1924
|
declare const AssistantModalPrimitiveAnchor: react.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverAnchorProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
1917
1925
|
|
1918
|
-
declare namespace index$
|
1926
|
+
declare namespace index$6 {
|
1919
1927
|
export { AssistantModalPrimitiveAnchor as Anchor, AssistantModalPrimitiveContent as Content, AssistantModalPrimitiveRoot as Root, AssistantModalPrimitiveTrigger as Trigger };
|
1920
1928
|
}
|
1921
1929
|
|
1930
|
+
type PrimitiveDivProps$5 = ComponentPropsWithoutRef<typeof Primitive.div>;
|
1931
|
+
declare namespace AttachmentPrimitiveRoot {
|
1932
|
+
type Props = PrimitiveDivProps$5;
|
1933
|
+
}
|
1934
|
+
declare const AttachmentPrimitiveRoot: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
1935
|
+
ref?: ((instance: HTMLDivElement | null) => void | react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | react.RefObject<HTMLDivElement> | null | undefined;
|
1936
|
+
} & {
|
1937
|
+
asChild?: boolean;
|
1938
|
+
}, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
1939
|
+
|
1940
|
+
type PrimitiveDivProps$4 = ComponentPropsWithoutRef<typeof Primitive.div>;
|
1941
|
+
declare namespace AttachmentPrimitiveThumb {
|
1942
|
+
type Props = PrimitiveDivProps$4;
|
1943
|
+
}
|
1944
|
+
declare const AttachmentPrimitiveThumb: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
1945
|
+
ref?: ((instance: HTMLDivElement | null) => void | react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | react.RefObject<HTMLDivElement> | null | undefined;
|
1946
|
+
} & {
|
1947
|
+
asChild?: boolean;
|
1948
|
+
}, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
1949
|
+
|
1950
|
+
declare namespace AttachmentPrimitiveName {
|
1951
|
+
type Props = Record<string, never>;
|
1952
|
+
}
|
1953
|
+
declare const AttachmentPrimitiveName: FC<AttachmentPrimitiveName.Props>;
|
1954
|
+
|
1955
|
+
declare const useAttachmentRemove: () => () => void;
|
1956
|
+
|
1957
|
+
declare namespace AttachmentPrimitiveRemove {
|
1958
|
+
type Props = ActionButtonProps<typeof useAttachmentRemove>;
|
1959
|
+
}
|
1960
|
+
declare const AttachmentPrimitiveRemove: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
|
1961
|
+
ref?: ((instance: HTMLButtonElement | null) => void | react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | react.RefObject<HTMLButtonElement> | null | undefined;
|
1962
|
+
} & {
|
1963
|
+
asChild?: boolean;
|
1964
|
+
}, "ref"> & react.RefAttributes<HTMLButtonElement>>;
|
1965
|
+
|
1966
|
+
declare namespace index$5 {
|
1967
|
+
export { AttachmentPrimitiveName as Name, AttachmentPrimitiveRemove as Remove, AttachmentPrimitiveRoot as Root, AttachmentPrimitiveThumb as unstable_Thumb };
|
1968
|
+
}
|
1969
|
+
|
1922
1970
|
type BranchPickerPrimitiveNextProps = ActionButtonProps<typeof useBranchPickerNext>;
|
1923
1971
|
declare const BranchPickerPrimitiveNext: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
|
1924
1972
|
ref?: ((instance: HTMLButtonElement | null) => void | react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | react.RefObject<HTMLButtonElement> | null | undefined;
|
@@ -2165,7 +2213,7 @@ type AvatarProps = {
|
|
2165
2213
|
};
|
2166
2214
|
|
2167
2215
|
type SuggestionConfig = {
|
2168
|
-
text?: ReactNode;
|
2216
|
+
text?: ReactNode | undefined;
|
2169
2217
|
prompt: string;
|
2170
2218
|
};
|
2171
2219
|
type ThreadWelcomeConfig = {
|
@@ -2279,18 +2327,19 @@ type StringsConfig = {
|
|
2279
2327
|
};
|
2280
2328
|
};
|
2281
2329
|
type ThreadConfig = {
|
2282
|
-
runtime?: AssistantRuntime;
|
2283
|
-
assistantAvatar?: AvatarProps;
|
2284
|
-
welcome?: ThreadWelcomeConfig;
|
2285
|
-
assistantMessage?: AssistantMessageConfig;
|
2286
|
-
userMessage?: UserMessageConfig;
|
2287
|
-
branchPicker?: BranchPickerConfig;
|
2288
|
-
composer?: ComposerConfig;
|
2289
|
-
strings?: StringsConfig;
|
2290
|
-
tools?: AssistantToolUI[];
|
2330
|
+
runtime?: AssistantRuntime | undefined;
|
2331
|
+
assistantAvatar?: AvatarProps | undefined;
|
2332
|
+
welcome?: ThreadWelcomeConfig | undefined;
|
2333
|
+
assistantMessage?: AssistantMessageConfig | undefined;
|
2334
|
+
userMessage?: UserMessageConfig | undefined;
|
2335
|
+
branchPicker?: BranchPickerConfig | undefined;
|
2336
|
+
composer?: ComposerConfig | undefined;
|
2337
|
+
strings?: StringsConfig | undefined;
|
2338
|
+
tools?: AssistantToolUI[] | undefined;
|
2291
2339
|
components?: {
|
2292
|
-
Composer
|
2293
|
-
|
2340
|
+
Composer?: ComponentType | undefined;
|
2341
|
+
ThreadWelcome?: ComponentType | undefined;
|
2342
|
+
} | undefined;
|
2294
2343
|
};
|
2295
2344
|
declare const useThreadConfig: () => Omit<ThreadConfig, "runtime">;
|
2296
2345
|
type ThreadConfigProviderProps = PropsWithChildren<{
|
@@ -2411,7 +2460,11 @@ declare const _default$7: typeof Composer & typeof exports$8;
|
|
2411
2460
|
|
2412
2461
|
declare const ComposerAttachment: FC;
|
2413
2462
|
declare const exports$7: {
|
2414
|
-
Root: react.ForwardRefExoticComponent<Partial<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"
|
2463
|
+
Root: react.ForwardRefExoticComponent<Partial<Omit<Omit<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
2464
|
+
ref?: ((instance: HTMLDivElement | null) => void | react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | react.RefObject<HTMLDivElement> | null | undefined;
|
2465
|
+
} & {
|
2466
|
+
asChild?: boolean;
|
2467
|
+
}, "ref"> & react.RefAttributes<HTMLDivElement>, "ref">> & react.RefAttributes<HTMLDivElement>>;
|
2415
2468
|
Remove: react.ForwardRefExoticComponent<Partial<TooltipIconButtonProps> & react.RefAttributes<HTMLButtonElement>>;
|
2416
2469
|
};
|
2417
2470
|
declare const _default$6: typeof ComposerAttachment & typeof exports$7;
|
@@ -2492,7 +2545,11 @@ declare const _default$2: typeof UserActionBar & typeof exports$3;
|
|
2492
2545
|
|
2493
2546
|
declare const UserMessageAttachment: FC;
|
2494
2547
|
declare const exports$2: {
|
2495
|
-
Root: react.ForwardRefExoticComponent<Partial<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"
|
2548
|
+
Root: react.ForwardRefExoticComponent<Partial<Omit<Omit<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
2549
|
+
ref?: ((instance: HTMLDivElement | null) => void | react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | react.RefObject<HTMLDivElement> | null | undefined;
|
2550
|
+
} & {
|
2551
|
+
asChild?: boolean;
|
2552
|
+
}, "ref"> & react.RefAttributes<HTMLDivElement>, "ref">> & react.RefAttributes<HTMLDivElement>>;
|
2496
2553
|
};
|
2497
2554
|
declare const _default$1: typeof UserMessageAttachment & typeof exports$2;
|
2498
2555
|
|
@@ -2610,4 +2667,4 @@ declare namespace internal {
|
|
2610
2667
|
export { internal_AssistantRuntimeImpl as AssistantRuntimeImpl, internal_BaseAssistantRuntimeCore as BaseAssistantRuntimeCore, internal_DefaultThreadComposerRuntimeCore as DefaultThreadComposerRuntimeCore, internal_MessageRepository as MessageRepository, internal_ProxyConfigProvider as ProxyConfigProvider, type internal_ThreadRuntimeCore as ThreadRuntimeCore, type internal_ThreadRuntimeCoreBinding as ThreadRuntimeCoreBinding, internal_ThreadRuntimeImpl as ThreadRuntimeImpl, internal_TooltipIconButton as TooltipIconButton, internal_generateId as generateId, internal_useSmooth as useSmooth, internal_useSmoothStatus as useSmoothStatus, internal_withSmoothContextProvider as withSmoothContextProvider };
|
2611
2668
|
}
|
2612
2669
|
|
2613
|
-
export { index$
|
2670
|
+
export { index$7 as ActionBarPrimitive, type ActionBarPrimitiveCopyProps, type ActionBarPrimitiveEditProps, type ActionBarPrimitiveFeedbackNegativeProps, type ActionBarPrimitiveFeedbackPositiveProps, type ActionBarPrimitiveReloadProps, type ActionBarPrimitiveRootProps, type ActionBarPrimitiveSpeakProps, type ActionBarPrimitiveStopSpeakingProps, type AddToolResultOptions, AppendMessage, _default$b as AssistantActionBar, type AssistantContextValue, _default$a as AssistantMessage, type AssistantMessageConfig, type AssistantMessageContentProps, _default$9 as AssistantModal, index$6 as AssistantModalPrimitive, type AssistantModalPrimitiveContentProps, type AssistantModalPrimitiveRootProps, type AssistantModalPrimitiveTriggerProps, type AssistantRuntime, AssistantRuntimeProvider, type AssistantTool, type AssistantToolProps, type AssistantToolUI, type AssistantToolUIProps, type AssistantToolUIsState, Attachment, type AttachmentAdapter, index$5 as AttachmentPrimitive, _default$8 as BranchPicker, index$4 as BranchPickerPrimitive, type BranchPickerPrimitiveCountProps, type BranchPickerPrimitiveNextProps, type BranchPickerPrimitiveNumberProps, type BranchPickerPrimitivePreviousProps, type BranchPickerPrimitiveRootProps, type ChatModelAdapter, type ChatModelRunOptions, type ChatModelRunResult, type ChatModelRunUpdate, CompleteAttachment, _default$7 as Composer, _default$6 as ComposerAttachment, type ComposerContextValue, type ComposerInputProps, index$3 as ComposerPrimitive, type ComposerPrimitiveCancelProps, type ComposerPrimitiveIfProps, type ComposerPrimitiveInputProps, type ComposerPrimitiveRootProps, type ComposerPrimitiveSendProps, type ComposerRuntime, type ComposerState, CompositeAttachmentAdapter, exports as ContentPart, type ContentPartContextValue, index$2 as ContentPartPrimitive, type ContentPartPrimitiveDisplayProps, type ContentPartPrimitiveImageProps, type ContentPartPrimitiveInProgressProps, type ContentPartPrimitiveTextProps, type ContentPartRuntime, CoreMessage, type DangerousInBrowserRuntimeOptions, EdgeChatAdapter, type EdgeRuntimeOptions, _default$5 as EditComposer, type EditComposerRuntime, type EditComposerState, type EmptyContentPartComponent, type EmptyContentPartProps, type ExternalStoreAdapter, type ExternalStoreMessageConverter, internal as INTERNAL, ImageContentPart, type ImageContentPartComponent, type ImageContentPartProps, type LocalRuntimeOptions, type MessageContextValue, index$1 as MessagePrimitive, type MessagePrimitiveContentProps, type MessagePrimitiveIfProps, type MessagePrimitiveInProgressProps, type MessagePrimitiveRootProps, type MessageRuntime, type MessageState, MessageStatus, type MessageUtilsState, ModelConfig, ModelConfigProvider, PendingAttachment, SimpleImageAttachmentAdapter, SimpleTextAttachmentAdapter, SpeechSynthesisAdapter, StreamUtils, type StringsConfig, type SubmitFeedbackOptions, type SuggestionConfig, TextContentPart, type TextContentPartComponent, type TextContentPartProps, TextContentPartProvider, _default$4 as Thread, ThreadAssistantContentPart, type ThreadComposerRuntime, type ThreadComposerState, type ThreadConfig, ThreadConfigProvider, type ThreadConfigProviderProps, type ThreadContextValue, ThreadMessage, type ThreadMessageLike, index as ThreadPrimitive, type ThreadPrimitiveEmptyProps, type ThreadPrimitiveIfProps, type ThreadPrimitiveMessagesProps, type ThreadPrimitiveRootProps, type ThreadPrimitiveScrollToBottomProps, type ThreadPrimitiveSuggestionProps, type ThreadPrimitiveViewportProps, type ThreadRootProps, type ThreadRuntime, type ThreadState, type ThreadSuggestion, ThreadUserContentPart, type ThreadViewportState, _default as ThreadWelcome, type ThreadWelcomeConfig, type ThreadWelcomeMessageProps, type ThreadWelcomeSuggestionProps, Tool, ToolCallContentPart, type ToolCallContentPartComponent, type ToolCallContentPartProps, UIContentPart, type UIContentPartComponent, type UIContentPartProps, type Unsubscribe, type UseActionBarCopyProps, _default$2 as UserActionBar, _default$3 as UserMessage, _default$1 as UserMessageAttachment, type UserMessageConfig, type UserMessageContentProps, WebSpeechSynthesisAdapter, fromCoreMessage, fromCoreMessages, fromLanguageModelMessages, fromLanguageModelTools, getExternalStoreMessage, makeAssistantTool, makeAssistantToolUI, streamUtils, subscribeToMainThread, toCoreMessage, toCoreMessages, toLanguageModelMessages, toLanguageModelTools, useActionBarCopy, useActionBarEdit, useActionBarFeedbackNegative, useActionBarFeedbackPositive, useActionBarReload, useActionBarSpeak, useActionBarStopSpeaking, useAppendMessage, useAssistantActions, useAssistantActionsStore, useAssistantContext, useAssistantInstructions, useAssistantRuntime, useAssistantRuntimeStore, useAssistantTool, useAssistantToolUI, useBranchPickerCount, useBranchPickerNext, useBranchPickerNumber, useBranchPickerPrevious, useComposer, useComposerAddAttachment, useComposerCancel, useComposerContext, useComposerIf, useComposerRuntime, useComposerSend, useComposerStore, useContentPart, useContentPartContext, useContentPartDisplay, useContentPartImage, useContentPartRuntime, useContentPartStore, useContentPartText, useDangerousInBrowserRuntime, useEdgeRuntime, useEditComposer, useEditComposerStore, useExternalMessageConverter, useExternalStoreRuntime, useLocalRuntime, useMessage, useMessageContext, useMessageIf, useMessageRuntime, useMessageStore, useMessageUtils, useMessageUtilsStore, useSwitchToNewThread, useThread, useThreadActions, useThreadActionsStore, useThreadComposer, useThreadComposerStore, useThreadConfig, useThreadContext, useThreadEmpty, useThreadIf, useThreadMessages, useThreadMessagesStore, useThreadRuntime, useThreadRuntimeStore, useThreadScrollToBottom, useThreadStore, useThreadSuggestion, useThreadViewport, useThreadViewportStore, useToolUIs, useToolUIsStore };
|
package/dist/index.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
import { A as Attachment, P as PendingAttachment, T as ThreadMessage, C as CoreMessage, a as AppendMessage, M as ModelConfig, b as ModelConfigProvider, c as ThreadAssistantContentPart, d as MessageStatus, e as
|
2
|
-
export { q as AttachmentStatus, v as CoreAssistantContentPart, y as CoreAssistantMessage, w as CoreSystemMessage, u as CoreUserContentPart, x as CoreUserMessage, E as EdgeRuntimeRequestOptions, s as ThreadAssistantMessage, r as ThreadSystemMessage, t as ThreadUserMessage } from './edge-
|
1
|
+
import { A as Attachment, P as PendingAttachment, T as ThreadMessage, C as CoreMessage, a as AppendMessage, M as ModelConfig, b as ModelConfigProvider, c as ThreadAssistantContentPart, d as MessageStatus, e as ThreadStep, f as PendingAttachmentStatus, g as CompleteAttachment, h as CompleteAttachmentStatus, i as Tool, j as TextContentPart, I as ImageContentPart, k as ToolCallContentPart, l as CoreToolCallContentPart, U as UIContentPart, m as CreateEdgeRuntimeAPIOptions, n as ThreadUserContentPart, o as ContentPartStatus, p as ToolCallContentPartStatus } from './edge-rTP-G718.js';
|
2
|
+
export { q as AttachmentStatus, v as CoreAssistantContentPart, y as CoreAssistantMessage, w as CoreSystemMessage, u as CoreUserContentPart, x as CoreUserMessage, E as EdgeRuntimeRequestOptions, s as ThreadAssistantMessage, r as ThreadSystemMessage, t as ThreadUserMessage } from './edge-rTP-G718.js';
|
3
3
|
import * as react from 'react';
|
4
4
|
import { ComponentType, PropsWithChildren, FC, ComponentPropsWithoutRef, ElementType, ReactNode } from 'react';
|
5
5
|
import { StoreApi, UseBoundStore } from 'zustand';
|
@@ -159,7 +159,11 @@ type ChatModelRunResult = {
|
|
159
159
|
content?: ThreadAssistantContentPart[];
|
160
160
|
status?: MessageStatus;
|
161
161
|
metadata?: {
|
162
|
-
|
162
|
+
/**
|
163
|
+
* @deprecated Use `steps` instead. This field will be removed in v0.6.
|
164
|
+
*/
|
165
|
+
roundtrips?: ThreadStep[];
|
166
|
+
steps?: ThreadStep[];
|
163
167
|
custom?: Record<string, unknown>;
|
164
168
|
};
|
165
169
|
};
|
@@ -280,6 +284,10 @@ type FeedbackAdapter = {
|
|
280
284
|
|
281
285
|
type LocalRuntimeOptions = {
|
282
286
|
initialMessages?: readonly CoreMessage[] | undefined;
|
287
|
+
maxSteps?: number | undefined;
|
288
|
+
/**
|
289
|
+
* @deprecated Use `maxSteps` (which is `maxToolRoundtrips` + 1; if you set `maxToolRoundtrips` to 2, set `maxSteps` to 3) instead. This field will be removed in v0.6.
|
290
|
+
*/
|
283
291
|
maxToolRoundtrips?: number | undefined;
|
284
292
|
adapters?: {
|
285
293
|
attachments?: AttachmentAdapter | undefined;
|
@@ -401,9 +409,9 @@ declare const useLocalRuntime: (adapter: ChatModelAdapter, options?: LocalRuntim
|
|
401
409
|
declare function toLanguageModelMessages(message: readonly CoreMessage[] | readonly ThreadMessage[]): LanguageModelV1Message[];
|
402
410
|
|
403
411
|
type fromLanguageModelMessagesOptions = {
|
404
|
-
|
412
|
+
mergeSteps: boolean;
|
405
413
|
};
|
406
|
-
declare const fromLanguageModelMessages: (lm: LanguageModelV1Message[], {
|
414
|
+
declare const fromLanguageModelMessages: (lm: LanguageModelV1Message[], { mergeSteps }: fromLanguageModelMessagesOptions) => CoreMessage[];
|
407
415
|
|
408
416
|
declare const fromCoreMessages: (message: readonly CoreMessage[]) => ThreadMessage[];
|
409
417
|
declare const fromCoreMessage: (message: CoreMessage, { id, status, attachments, }?: {
|
@@ -1836,8 +1844,8 @@ type UseActionBarFloatStatusProps = {
|
|
1836
1844
|
autohideFloat?: "always" | "single-branch" | "never" | undefined;
|
1837
1845
|
};
|
1838
1846
|
|
1839
|
-
type PrimitiveDivProps$
|
1840
|
-
type ActionBarPrimitiveRootProps = PrimitiveDivProps$
|
1847
|
+
type PrimitiveDivProps$6 = ComponentPropsWithoutRef<typeof Primitive.div>;
|
1848
|
+
type ActionBarPrimitiveRootProps = PrimitiveDivProps$6 & UseActionBarFloatStatusProps;
|
1841
1849
|
declare const ActionBarPrimitiveRoot: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
1842
1850
|
ref?: ((instance: HTMLDivElement | null) => void | react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | react.RefObject<HTMLDivElement> | null | undefined;
|
1843
1851
|
} & {
|
@@ -1896,7 +1904,7 @@ declare const ActionBarPrimitiveFeedbackNegative: react.ForwardRefExoticComponen
|
|
1896
1904
|
asChild?: boolean;
|
1897
1905
|
}, "ref">> & react.RefAttributes<HTMLButtonElement>>;
|
1898
1906
|
|
1899
|
-
declare namespace index$
|
1907
|
+
declare namespace index$7 {
|
1900
1908
|
export { ActionBarPrimitiveCopy as Copy, ActionBarPrimitiveEdit as Edit, ActionBarPrimitiveFeedbackNegative as FeedbackNegative, ActionBarPrimitiveFeedbackPositive as FeedbackPositive, ActionBarPrimitiveReload as Reload, ActionBarPrimitiveRoot as Root, ActionBarPrimitiveSpeak as Speak, ActionBarPrimitiveStopSpeaking as StopSpeaking };
|
1901
1909
|
}
|
1902
1910
|
|
@@ -1915,10 +1923,50 @@ declare const AssistantModalPrimitiveContent: react.ForwardRefExoticComponent<Om
|
|
1915
1923
|
|
1916
1924
|
declare const AssistantModalPrimitiveAnchor: react.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverAnchorProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
1917
1925
|
|
1918
|
-
declare namespace index$
|
1926
|
+
declare namespace index$6 {
|
1919
1927
|
export { AssistantModalPrimitiveAnchor as Anchor, AssistantModalPrimitiveContent as Content, AssistantModalPrimitiveRoot as Root, AssistantModalPrimitiveTrigger as Trigger };
|
1920
1928
|
}
|
1921
1929
|
|
1930
|
+
type PrimitiveDivProps$5 = ComponentPropsWithoutRef<typeof Primitive.div>;
|
1931
|
+
declare namespace AttachmentPrimitiveRoot {
|
1932
|
+
type Props = PrimitiveDivProps$5;
|
1933
|
+
}
|
1934
|
+
declare const AttachmentPrimitiveRoot: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
1935
|
+
ref?: ((instance: HTMLDivElement | null) => void | react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | react.RefObject<HTMLDivElement> | null | undefined;
|
1936
|
+
} & {
|
1937
|
+
asChild?: boolean;
|
1938
|
+
}, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
1939
|
+
|
1940
|
+
type PrimitiveDivProps$4 = ComponentPropsWithoutRef<typeof Primitive.div>;
|
1941
|
+
declare namespace AttachmentPrimitiveThumb {
|
1942
|
+
type Props = PrimitiveDivProps$4;
|
1943
|
+
}
|
1944
|
+
declare const AttachmentPrimitiveThumb: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
1945
|
+
ref?: ((instance: HTMLDivElement | null) => void | react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | react.RefObject<HTMLDivElement> | null | undefined;
|
1946
|
+
} & {
|
1947
|
+
asChild?: boolean;
|
1948
|
+
}, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
1949
|
+
|
1950
|
+
declare namespace AttachmentPrimitiveName {
|
1951
|
+
type Props = Record<string, never>;
|
1952
|
+
}
|
1953
|
+
declare const AttachmentPrimitiveName: FC<AttachmentPrimitiveName.Props>;
|
1954
|
+
|
1955
|
+
declare const useAttachmentRemove: () => () => void;
|
1956
|
+
|
1957
|
+
declare namespace AttachmentPrimitiveRemove {
|
1958
|
+
type Props = ActionButtonProps<typeof useAttachmentRemove>;
|
1959
|
+
}
|
1960
|
+
declare const AttachmentPrimitiveRemove: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
|
1961
|
+
ref?: ((instance: HTMLButtonElement | null) => void | react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | react.RefObject<HTMLButtonElement> | null | undefined;
|
1962
|
+
} & {
|
1963
|
+
asChild?: boolean;
|
1964
|
+
}, "ref"> & react.RefAttributes<HTMLButtonElement>>;
|
1965
|
+
|
1966
|
+
declare namespace index$5 {
|
1967
|
+
export { AttachmentPrimitiveName as Name, AttachmentPrimitiveRemove as Remove, AttachmentPrimitiveRoot as Root, AttachmentPrimitiveThumb as unstable_Thumb };
|
1968
|
+
}
|
1969
|
+
|
1922
1970
|
type BranchPickerPrimitiveNextProps = ActionButtonProps<typeof useBranchPickerNext>;
|
1923
1971
|
declare const BranchPickerPrimitiveNext: react.ForwardRefExoticComponent<Omit<Omit<react.DetailedHTMLProps<react.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
|
1924
1972
|
ref?: ((instance: HTMLButtonElement | null) => void | react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | react.RefObject<HTMLButtonElement> | null | undefined;
|
@@ -2165,7 +2213,7 @@ type AvatarProps = {
|
|
2165
2213
|
};
|
2166
2214
|
|
2167
2215
|
type SuggestionConfig = {
|
2168
|
-
text?: ReactNode;
|
2216
|
+
text?: ReactNode | undefined;
|
2169
2217
|
prompt: string;
|
2170
2218
|
};
|
2171
2219
|
type ThreadWelcomeConfig = {
|
@@ -2279,18 +2327,19 @@ type StringsConfig = {
|
|
2279
2327
|
};
|
2280
2328
|
};
|
2281
2329
|
type ThreadConfig = {
|
2282
|
-
runtime?: AssistantRuntime;
|
2283
|
-
assistantAvatar?: AvatarProps;
|
2284
|
-
welcome?: ThreadWelcomeConfig;
|
2285
|
-
assistantMessage?: AssistantMessageConfig;
|
2286
|
-
userMessage?: UserMessageConfig;
|
2287
|
-
branchPicker?: BranchPickerConfig;
|
2288
|
-
composer?: ComposerConfig;
|
2289
|
-
strings?: StringsConfig;
|
2290
|
-
tools?: AssistantToolUI[];
|
2330
|
+
runtime?: AssistantRuntime | undefined;
|
2331
|
+
assistantAvatar?: AvatarProps | undefined;
|
2332
|
+
welcome?: ThreadWelcomeConfig | undefined;
|
2333
|
+
assistantMessage?: AssistantMessageConfig | undefined;
|
2334
|
+
userMessage?: UserMessageConfig | undefined;
|
2335
|
+
branchPicker?: BranchPickerConfig | undefined;
|
2336
|
+
composer?: ComposerConfig | undefined;
|
2337
|
+
strings?: StringsConfig | undefined;
|
2338
|
+
tools?: AssistantToolUI[] | undefined;
|
2291
2339
|
components?: {
|
2292
|
-
Composer
|
2293
|
-
|
2340
|
+
Composer?: ComponentType | undefined;
|
2341
|
+
ThreadWelcome?: ComponentType | undefined;
|
2342
|
+
} | undefined;
|
2294
2343
|
};
|
2295
2344
|
declare const useThreadConfig: () => Omit<ThreadConfig, "runtime">;
|
2296
2345
|
type ThreadConfigProviderProps = PropsWithChildren<{
|
@@ -2411,7 +2460,11 @@ declare const _default$7: typeof Composer & typeof exports$8;
|
|
2411
2460
|
|
2412
2461
|
declare const ComposerAttachment: FC;
|
2413
2462
|
declare const exports$7: {
|
2414
|
-
Root: react.ForwardRefExoticComponent<Partial<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"
|
2463
|
+
Root: react.ForwardRefExoticComponent<Partial<Omit<Omit<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
2464
|
+
ref?: ((instance: HTMLDivElement | null) => void | react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | react.RefObject<HTMLDivElement> | null | undefined;
|
2465
|
+
} & {
|
2466
|
+
asChild?: boolean;
|
2467
|
+
}, "ref"> & react.RefAttributes<HTMLDivElement>, "ref">> & react.RefAttributes<HTMLDivElement>>;
|
2415
2468
|
Remove: react.ForwardRefExoticComponent<Partial<TooltipIconButtonProps> & react.RefAttributes<HTMLButtonElement>>;
|
2416
2469
|
};
|
2417
2470
|
declare const _default$6: typeof ComposerAttachment & typeof exports$7;
|
@@ -2492,7 +2545,11 @@ declare const _default$2: typeof UserActionBar & typeof exports$3;
|
|
2492
2545
|
|
2493
2546
|
declare const UserMessageAttachment: FC;
|
2494
2547
|
declare const exports$2: {
|
2495
|
-
Root: react.ForwardRefExoticComponent<Partial<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"
|
2548
|
+
Root: react.ForwardRefExoticComponent<Partial<Omit<Omit<Omit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
2549
|
+
ref?: ((instance: HTMLDivElement | null) => void | react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | react.RefObject<HTMLDivElement> | null | undefined;
|
2550
|
+
} & {
|
2551
|
+
asChild?: boolean;
|
2552
|
+
}, "ref"> & react.RefAttributes<HTMLDivElement>, "ref">> & react.RefAttributes<HTMLDivElement>>;
|
2496
2553
|
};
|
2497
2554
|
declare const _default$1: typeof UserMessageAttachment & typeof exports$2;
|
2498
2555
|
|
@@ -2610,4 +2667,4 @@ declare namespace internal {
|
|
2610
2667
|
export { internal_AssistantRuntimeImpl as AssistantRuntimeImpl, internal_BaseAssistantRuntimeCore as BaseAssistantRuntimeCore, internal_DefaultThreadComposerRuntimeCore as DefaultThreadComposerRuntimeCore, internal_MessageRepository as MessageRepository, internal_ProxyConfigProvider as ProxyConfigProvider, type internal_ThreadRuntimeCore as ThreadRuntimeCore, type internal_ThreadRuntimeCoreBinding as ThreadRuntimeCoreBinding, internal_ThreadRuntimeImpl as ThreadRuntimeImpl, internal_TooltipIconButton as TooltipIconButton, internal_generateId as generateId, internal_useSmooth as useSmooth, internal_useSmoothStatus as useSmoothStatus, internal_withSmoothContextProvider as withSmoothContextProvider };
|
2611
2668
|
}
|
2612
2669
|
|
2613
|
-
export { index$
|
2670
|
+
export { index$7 as ActionBarPrimitive, type ActionBarPrimitiveCopyProps, type ActionBarPrimitiveEditProps, type ActionBarPrimitiveFeedbackNegativeProps, type ActionBarPrimitiveFeedbackPositiveProps, type ActionBarPrimitiveReloadProps, type ActionBarPrimitiveRootProps, type ActionBarPrimitiveSpeakProps, type ActionBarPrimitiveStopSpeakingProps, type AddToolResultOptions, AppendMessage, _default$b as AssistantActionBar, type AssistantContextValue, _default$a as AssistantMessage, type AssistantMessageConfig, type AssistantMessageContentProps, _default$9 as AssistantModal, index$6 as AssistantModalPrimitive, type AssistantModalPrimitiveContentProps, type AssistantModalPrimitiveRootProps, type AssistantModalPrimitiveTriggerProps, type AssistantRuntime, AssistantRuntimeProvider, type AssistantTool, type AssistantToolProps, type AssistantToolUI, type AssistantToolUIProps, type AssistantToolUIsState, Attachment, type AttachmentAdapter, index$5 as AttachmentPrimitive, _default$8 as BranchPicker, index$4 as BranchPickerPrimitive, type BranchPickerPrimitiveCountProps, type BranchPickerPrimitiveNextProps, type BranchPickerPrimitiveNumberProps, type BranchPickerPrimitivePreviousProps, type BranchPickerPrimitiveRootProps, type ChatModelAdapter, type ChatModelRunOptions, type ChatModelRunResult, type ChatModelRunUpdate, CompleteAttachment, _default$7 as Composer, _default$6 as ComposerAttachment, type ComposerContextValue, type ComposerInputProps, index$3 as ComposerPrimitive, type ComposerPrimitiveCancelProps, type ComposerPrimitiveIfProps, type ComposerPrimitiveInputProps, type ComposerPrimitiveRootProps, type ComposerPrimitiveSendProps, type ComposerRuntime, type ComposerState, CompositeAttachmentAdapter, exports as ContentPart, type ContentPartContextValue, index$2 as ContentPartPrimitive, type ContentPartPrimitiveDisplayProps, type ContentPartPrimitiveImageProps, type ContentPartPrimitiveInProgressProps, type ContentPartPrimitiveTextProps, type ContentPartRuntime, CoreMessage, type DangerousInBrowserRuntimeOptions, EdgeChatAdapter, type EdgeRuntimeOptions, _default$5 as EditComposer, type EditComposerRuntime, type EditComposerState, type EmptyContentPartComponent, type EmptyContentPartProps, type ExternalStoreAdapter, type ExternalStoreMessageConverter, internal as INTERNAL, ImageContentPart, type ImageContentPartComponent, type ImageContentPartProps, type LocalRuntimeOptions, type MessageContextValue, index$1 as MessagePrimitive, type MessagePrimitiveContentProps, type MessagePrimitiveIfProps, type MessagePrimitiveInProgressProps, type MessagePrimitiveRootProps, type MessageRuntime, type MessageState, MessageStatus, type MessageUtilsState, ModelConfig, ModelConfigProvider, PendingAttachment, SimpleImageAttachmentAdapter, SimpleTextAttachmentAdapter, SpeechSynthesisAdapter, StreamUtils, type StringsConfig, type SubmitFeedbackOptions, type SuggestionConfig, TextContentPart, type TextContentPartComponent, type TextContentPartProps, TextContentPartProvider, _default$4 as Thread, ThreadAssistantContentPart, type ThreadComposerRuntime, type ThreadComposerState, type ThreadConfig, ThreadConfigProvider, type ThreadConfigProviderProps, type ThreadContextValue, ThreadMessage, type ThreadMessageLike, index as ThreadPrimitive, type ThreadPrimitiveEmptyProps, type ThreadPrimitiveIfProps, type ThreadPrimitiveMessagesProps, type ThreadPrimitiveRootProps, type ThreadPrimitiveScrollToBottomProps, type ThreadPrimitiveSuggestionProps, type ThreadPrimitiveViewportProps, type ThreadRootProps, type ThreadRuntime, type ThreadState, type ThreadSuggestion, ThreadUserContentPart, type ThreadViewportState, _default as ThreadWelcome, type ThreadWelcomeConfig, type ThreadWelcomeMessageProps, type ThreadWelcomeSuggestionProps, Tool, ToolCallContentPart, type ToolCallContentPartComponent, type ToolCallContentPartProps, UIContentPart, type UIContentPartComponent, type UIContentPartProps, type Unsubscribe, type UseActionBarCopyProps, _default$2 as UserActionBar, _default$3 as UserMessage, _default$1 as UserMessageAttachment, type UserMessageConfig, type UserMessageContentProps, WebSpeechSynthesisAdapter, fromCoreMessage, fromCoreMessages, fromLanguageModelMessages, fromLanguageModelTools, getExternalStoreMessage, makeAssistantTool, makeAssistantToolUI, streamUtils, subscribeToMainThread, toCoreMessage, toCoreMessages, toLanguageModelMessages, toLanguageModelTools, useActionBarCopy, useActionBarEdit, useActionBarFeedbackNegative, useActionBarFeedbackPositive, useActionBarReload, useActionBarSpeak, useActionBarStopSpeaking, useAppendMessage, useAssistantActions, useAssistantActionsStore, useAssistantContext, useAssistantInstructions, useAssistantRuntime, useAssistantRuntimeStore, useAssistantTool, useAssistantToolUI, useBranchPickerCount, useBranchPickerNext, useBranchPickerNumber, useBranchPickerPrevious, useComposer, useComposerAddAttachment, useComposerCancel, useComposerContext, useComposerIf, useComposerRuntime, useComposerSend, useComposerStore, useContentPart, useContentPartContext, useContentPartDisplay, useContentPartImage, useContentPartRuntime, useContentPartStore, useContentPartText, useDangerousInBrowserRuntime, useEdgeRuntime, useEditComposer, useEditComposerStore, useExternalMessageConverter, useExternalStoreRuntime, useLocalRuntime, useMessage, useMessageContext, useMessageIf, useMessageRuntime, useMessageStore, useMessageUtils, useMessageUtilsStore, useSwitchToNewThread, useThread, useThreadActions, useThreadActionsStore, useThreadComposer, useThreadComposerStore, useThreadConfig, useThreadContext, useThreadEmpty, useThreadIf, useThreadMessages, useThreadMessagesStore, useThreadRuntime, useThreadRuntimeStore, useThreadScrollToBottom, useThreadStore, useThreadSuggestion, useThreadViewport, useThreadViewportStore, useToolUIs, useToolUIsStore };
|