UNPKG

@assistant-ui/react

Version:

React components for AI chat.

8 lines 417 B
import type { ModelConfigProvider } from "../../types/ModelConfigTypes"; import type { Unsubscribe } from "../../types/Unsubscribe"; import { ThreadListRuntimeCore } from "./ThreadListRuntimeCore"; export type AssistantRuntimeCore = { readonly threadList: ThreadListRuntimeCore; registerModelConfigProvider: (provider: ModelConfigProvider) => Unsubscribe; }; //# sourceMappingURL=AssistantRuntimeCore.d.ts.map