@axiom-lattice/react-sdk 2.1.116 → 2.1.118
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/index.d.mts +59 -6
- package/dist/index.d.ts +59 -6
- package/dist/index.js +3833 -3173
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3144 -2486
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -788,14 +788,14 @@ interface LatticeChatShellConfig {
|
|
|
788
788
|
* Whether to enable the model selector in the chat sender
|
|
789
789
|
* When enabled, shows a model selection dropdown in the sender footer
|
|
790
790
|
* Defaults to false
|
|
791
|
-
|
|
791
|
+
*/
|
|
792
792
|
enableModelSelector?: boolean;
|
|
793
793
|
/**
|
|
794
794
|
* Sidebar display mode
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
795
|
+
* - "icon": Show only icons (default)
|
|
796
|
+
* - "expanded": Show icons with labels and groups
|
|
797
|
+
* Defaults to "icon"
|
|
798
|
+
*/
|
|
799
799
|
sidebarMode?: "icon" | "expanded";
|
|
800
800
|
/**
|
|
801
801
|
* Whether sidebar is expanded by default (only applies when sidebarMode is "expanded")
|
|
@@ -2931,6 +2931,59 @@ interface SkillCategoryPromptsProps {
|
|
|
2931
2931
|
}
|
|
2932
2932
|
declare const SkillCategoryPrompts: React__default.FC<SkillCategoryPromptsProps>;
|
|
2933
2933
|
|
|
2934
|
+
type RecorderMode = "manual" | "auto";
|
|
2935
|
+
type RecorderStatus = "idle" | "requesting" | "recording" | "uploading";
|
|
2936
|
+
type RecorderError = "permission_denied" | "not_supported" | "recorder_error" | "upload_failed" | "timeout";
|
|
2937
|
+
interface VoiceRecorderState {
|
|
2938
|
+
status: RecorderStatus;
|
|
2939
|
+
duration: number;
|
|
2940
|
+
/** Real-time volume level 0-1, drives ring animation */
|
|
2941
|
+
voiceLevel: number;
|
|
2942
|
+
/** Frequency band levels for wave visualization */
|
|
2943
|
+
frequencyBands: number[];
|
|
2944
|
+
mode: RecorderMode;
|
|
2945
|
+
/** Accumulated partial transcription texts in auto mode */
|
|
2946
|
+
partialTexts: string[];
|
|
2947
|
+
error?: {
|
|
2948
|
+
type: RecorderError;
|
|
2949
|
+
message: string;
|
|
2950
|
+
};
|
|
2951
|
+
}
|
|
2952
|
+
interface UseVoiceRecorderOptions {
|
|
2953
|
+
/** Recording mode, defaults to "auto" */
|
|
2954
|
+
mode?: RecorderMode;
|
|
2955
|
+
/** Auto-mode parameters */
|
|
2956
|
+
autoMode?: {
|
|
2957
|
+
/** Volume threshold below which is considered silence, default 0.05 */
|
|
2958
|
+
silenceThreshold?: number;
|
|
2959
|
+
/** Continuous silence duration in ms before triggering upload, default 2000 */
|
|
2960
|
+
silenceDuration?: number;
|
|
2961
|
+
/** MediaRecorder timeslice interval in ms, default 1000 */
|
|
2962
|
+
timeslice?: number;
|
|
2963
|
+
};
|
|
2964
|
+
/** Callback invoked with transcribed text (incremental in auto mode) */
|
|
2965
|
+
onTranscription: (text: string) => void;
|
|
2966
|
+
/** Recording time limit in seconds, default 120 */
|
|
2967
|
+
maxDuration?: number;
|
|
2968
|
+
}
|
|
2969
|
+
declare function useVoiceRecorder(options: UseVoiceRecorderOptions): {
|
|
2970
|
+
startRecording: () => Promise<void>;
|
|
2971
|
+
stopRecording: () => void;
|
|
2972
|
+
cancelRecording: () => void;
|
|
2973
|
+
retryTranscription: () => Promise<void>;
|
|
2974
|
+
setMode: (newMode: RecorderMode) => void;
|
|
2975
|
+
state: VoiceRecorderState;
|
|
2976
|
+
};
|
|
2977
|
+
|
|
2978
|
+
interface VoiceInputButtonProps {
|
|
2979
|
+
mode?: RecorderMode;
|
|
2980
|
+
onTranscription: (text: string) => void;
|
|
2981
|
+
disabled?: boolean;
|
|
2982
|
+
maxDuration?: number;
|
|
2983
|
+
autoMode?: UseVoiceRecorderOptions["autoMode"];
|
|
2984
|
+
}
|
|
2985
|
+
declare const VoiceInputButton: React__default.FC<VoiceInputButtonProps>;
|
|
2986
|
+
|
|
2934
2987
|
interface ViewToggleOption {
|
|
2935
2988
|
mode: string;
|
|
2936
2989
|
icon: React__default.ComponentType<{
|
|
@@ -3635,4 +3688,4 @@ type IframeMessage = {
|
|
|
3635
3688
|
};
|
|
3636
3689
|
declare function generateIframeSrcdoc(): string;
|
|
3637
3690
|
|
|
3638
|
-
export { type AgentChatProps, AgentConversations, type AgentConversationsProps, type AgentState, AgentThreadProvider, type AgentThreadProviderProps, AssistantContext, AssistantContextProvider, type AssistantContextProviderProps, type AssistantContextValue, AssistantFlow, type AssistantFlowProps, AssistantNode, type AssistantNodeData, type AssistantState, type AttachFile, type AuthContextValue, AuthProvider, AxiomLatticeProvider, type AxiomLatticeProviderProps, type BalanceResult, ChangePasswordModal, type ChangePasswordModalProps, ChannelInstallationsDrawerContent, ChatErrorBoundary, type ChatErrorBoundaryProps, type ChatResponse, ChatSidebar, type ChatSidebarProps, type ChatState, type ChatStateWithAgent, ChatUIContext, ChatUIContextProvider, Chating, type ChatingProps, type ClientConfig, ColumnLayout, type ColumnLayoutProps, ConflictResolver, ConnectionConfigDrawerContent, ConnectionListField, ConnectionsHub, ConversationContext, ConversationContextProvider, type ConversationContextProviderProps, type ConversationContextValue, type ConversationThread, CreateAssistantModal, DEFAULT_MENU_ITEMS, DEFAULT_MIDDLEWARE_TYPES, DEFAULT_WORKSPACE_MENU_ITEMS, type ElementMeta, type ElementProps, type EntityAction, EntityCard, EntityCreateTrigger, EntityListShell, EntityListView, EntityRow, EvalPanel, EvalRunResults, EvalSuiteCardList, EvalSuiteDetail, type ExplorerFile, ExportStep, FileExplorer, type FileExplorerProps, FilePanelToggle, type IframeMessage, ImportStep, LatticeAgentWorkspace, LatticeChat, LatticeChatShell, type LatticeChatShellConfig, LatticeChatShellContext, LatticeChatShellContextProvider, type LatticeChatShellContextProviderProps, type LatticeChatShellContextValue, type LatticeChatShellProps, LoginForm, type LoginFormProps, LoginPage, MDResponse, MDViewFormItem, MetricsConfigDrawerContent, type MiddlewareConfigDefinition, type MiddlewareConfigSchema, type MiddlewareConfigSchemaProperty, type MiddlewareToolDefinition, type MiddlewareTypeDefinition, MigrationPage, MigrationPageWrapper, type ModelConfig, type ModelInfo, ModelSelector, type ModelSelectorProps, type PanelCard, type PendingMessage, PersonalAssistantChannelModal, PersonalAssistantPage, ProtectedRoute, type ProtectedRouteProps, type QuickPromptCategory, type QuickPromptItem, RegisterForm, type RegisterFormProps, type ResourceFolderConfig, type SanitizerConfig, ScheduleButton, type ScheduleButtonProps, SideAppBrowserContext, type SideAppBrowserContextValue, SideAppViewBrowser, type SideMenuItemConfig, type SideMenuItemType, SkillCategoryPrompts, type SkillCategoryPromptsProps, SkillFlow, type SkillFlowProps, SkillNode, type SkillNodeData, type StreamEventHandlerOptions, type StreamingError, StreamingHTMLRenderer, type StreamingHTMLRendererProps, TenantBranding, type TenantBrandingData, TenantLogo, TenantSelector, type TenantSelectorProps, TenantSettingsModal, type ThreadState, type ToolCallData, type UIMessage, type UseAgentStateOptions, type UseAgentStateReturn, type UseApiOptions, type UseApiReturn, type UseAxiomLatticeOptions, type UseChatOptions, type UseTenantsOptions, type UseTenantsReturn, type UseUsersOptions, type UseUsersReturn, UserProfile, type UserProfileProps, type UserTenantInfo, type ViewMode, type ViewModeExtension, ViewToggle, WorkflowAutomationView, WorkflowCanvas, type WorkflowCanvasProps, WorkflowNode, type WorkflowNodeData, WorkspaceResourceManager, type WorkspaceResourceManagerProps, WorkspaceResourceUIContext, animation, axiomAntdTheme, axiomAntdThemeDark, axiomTokens, colors, generateIframeSrcdoc, generateLabelFromMessage, getAxiomAntdTheme, getElement, radius, regsiterElement, shadows, spacing, typography, useAgentChat, useAgentGraph, useAgentState, useAgentThreadContext, useApi, useAssistantContext, useAuth, useAuthOptional, useAxiomLattice, useAxiomTheme, useChat, useChatUIContext, useClient, useConversationContext, useEvalCases, useEvalProjects, useEvalRunStream, useEvalRuns, useEvalSuites, useLatticeChatShellContext, useMiddlewareTypes, useSideAppBrowser, useSideAppOpener, useTenantBranding, useTenants, useUsers };
|
|
3691
|
+
export { type AgentChatProps, AgentConversations, type AgentConversationsProps, type AgentState, AgentThreadProvider, type AgentThreadProviderProps, AssistantContext, AssistantContextProvider, type AssistantContextProviderProps, type AssistantContextValue, AssistantFlow, type AssistantFlowProps, AssistantNode, type AssistantNodeData, type AssistantState, type AttachFile, type AuthContextValue, AuthProvider, AxiomLatticeProvider, type AxiomLatticeProviderProps, type BalanceResult, ChangePasswordModal, type ChangePasswordModalProps, ChannelInstallationsDrawerContent, ChatErrorBoundary, type ChatErrorBoundaryProps, type ChatResponse, ChatSidebar, type ChatSidebarProps, type ChatState, type ChatStateWithAgent, ChatUIContext, ChatUIContextProvider, Chating, type ChatingProps, type ClientConfig, ColumnLayout, type ColumnLayoutProps, ConflictResolver, ConnectionConfigDrawerContent, ConnectionListField, ConnectionsHub, ConversationContext, ConversationContextProvider, type ConversationContextProviderProps, type ConversationContextValue, type ConversationThread, CreateAssistantModal, DEFAULT_MENU_ITEMS, DEFAULT_MIDDLEWARE_TYPES, DEFAULT_WORKSPACE_MENU_ITEMS, type ElementMeta, type ElementProps, type EntityAction, EntityCard, EntityCreateTrigger, EntityListShell, EntityListView, EntityRow, EvalPanel, EvalRunResults, EvalSuiteCardList, EvalSuiteDetail, type ExplorerFile, ExportStep, FileExplorer, type FileExplorerProps, FilePanelToggle, type IframeMessage, ImportStep, LatticeAgentWorkspace, LatticeChat, LatticeChatShell, type LatticeChatShellConfig, LatticeChatShellContext, LatticeChatShellContextProvider, type LatticeChatShellContextProviderProps, type LatticeChatShellContextValue, type LatticeChatShellProps, LoginForm, type LoginFormProps, LoginPage, MDResponse, MDViewFormItem, MetricsConfigDrawerContent, type MiddlewareConfigDefinition, type MiddlewareConfigSchema, type MiddlewareConfigSchemaProperty, type MiddlewareToolDefinition, type MiddlewareTypeDefinition, MigrationPage, MigrationPageWrapper, type ModelConfig, type ModelInfo, ModelSelector, type ModelSelectorProps, type PanelCard, type PendingMessage, PersonalAssistantChannelModal, PersonalAssistantPage, ProtectedRoute, type ProtectedRouteProps, type QuickPromptCategory, type QuickPromptItem, type RecorderError, type RecorderMode, type RecorderStatus, RegisterForm, type RegisterFormProps, type ResourceFolderConfig, type SanitizerConfig, ScheduleButton, type ScheduleButtonProps, SideAppBrowserContext, type SideAppBrowserContextValue, SideAppViewBrowser, type SideMenuItemConfig, type SideMenuItemType, SkillCategoryPrompts, type SkillCategoryPromptsProps, SkillFlow, type SkillFlowProps, SkillNode, type SkillNodeData, type StreamEventHandlerOptions, type StreamingError, StreamingHTMLRenderer, type StreamingHTMLRendererProps, TenantBranding, type TenantBrandingData, TenantLogo, TenantSelector, type TenantSelectorProps, TenantSettingsModal, type ThreadState, type ToolCallData, type UIMessage, type UseAgentStateOptions, type UseAgentStateReturn, type UseApiOptions, type UseApiReturn, type UseAxiomLatticeOptions, type UseChatOptions, type UseTenantsOptions, type UseTenantsReturn, type UseUsersOptions, type UseUsersReturn, type UseVoiceRecorderOptions, UserProfile, type UserProfileProps, type UserTenantInfo, type ViewMode, type ViewModeExtension, ViewToggle, VoiceInputButton, type VoiceInputButtonProps, type VoiceRecorderState, WorkflowAutomationView, WorkflowCanvas, type WorkflowCanvasProps, WorkflowNode, type WorkflowNodeData, WorkspaceResourceManager, type WorkspaceResourceManagerProps, WorkspaceResourceUIContext, animation, axiomAntdTheme, axiomAntdThemeDark, axiomTokens, colors, generateIframeSrcdoc, generateLabelFromMessage, getAxiomAntdTheme, getElement, radius, regsiterElement, shadows, spacing, typography, useAgentChat, useAgentGraph, useAgentState, useAgentThreadContext, useApi, useAssistantContext, useAuth, useAuthOptional, useAxiomLattice, useAxiomTheme, useChat, useChatUIContext, useClient, useConversationContext, useEvalCases, useEvalProjects, useEvalRunStream, useEvalRuns, useEvalSuites, useLatticeChatShellContext, useMiddlewareTypes, useSideAppBrowser, useSideAppOpener, useTenantBranding, useTenants, useUsers, useVoiceRecorder };
|
package/dist/index.d.ts
CHANGED
|
@@ -788,14 +788,14 @@ interface LatticeChatShellConfig {
|
|
|
788
788
|
* Whether to enable the model selector in the chat sender
|
|
789
789
|
* When enabled, shows a model selection dropdown in the sender footer
|
|
790
790
|
* Defaults to false
|
|
791
|
-
|
|
791
|
+
*/
|
|
792
792
|
enableModelSelector?: boolean;
|
|
793
793
|
/**
|
|
794
794
|
* Sidebar display mode
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
795
|
+
* - "icon": Show only icons (default)
|
|
796
|
+
* - "expanded": Show icons with labels and groups
|
|
797
|
+
* Defaults to "icon"
|
|
798
|
+
*/
|
|
799
799
|
sidebarMode?: "icon" | "expanded";
|
|
800
800
|
/**
|
|
801
801
|
* Whether sidebar is expanded by default (only applies when sidebarMode is "expanded")
|
|
@@ -2931,6 +2931,59 @@ interface SkillCategoryPromptsProps {
|
|
|
2931
2931
|
}
|
|
2932
2932
|
declare const SkillCategoryPrompts: React__default.FC<SkillCategoryPromptsProps>;
|
|
2933
2933
|
|
|
2934
|
+
type RecorderMode = "manual" | "auto";
|
|
2935
|
+
type RecorderStatus = "idle" | "requesting" | "recording" | "uploading";
|
|
2936
|
+
type RecorderError = "permission_denied" | "not_supported" | "recorder_error" | "upload_failed" | "timeout";
|
|
2937
|
+
interface VoiceRecorderState {
|
|
2938
|
+
status: RecorderStatus;
|
|
2939
|
+
duration: number;
|
|
2940
|
+
/** Real-time volume level 0-1, drives ring animation */
|
|
2941
|
+
voiceLevel: number;
|
|
2942
|
+
/** Frequency band levels for wave visualization */
|
|
2943
|
+
frequencyBands: number[];
|
|
2944
|
+
mode: RecorderMode;
|
|
2945
|
+
/** Accumulated partial transcription texts in auto mode */
|
|
2946
|
+
partialTexts: string[];
|
|
2947
|
+
error?: {
|
|
2948
|
+
type: RecorderError;
|
|
2949
|
+
message: string;
|
|
2950
|
+
};
|
|
2951
|
+
}
|
|
2952
|
+
interface UseVoiceRecorderOptions {
|
|
2953
|
+
/** Recording mode, defaults to "auto" */
|
|
2954
|
+
mode?: RecorderMode;
|
|
2955
|
+
/** Auto-mode parameters */
|
|
2956
|
+
autoMode?: {
|
|
2957
|
+
/** Volume threshold below which is considered silence, default 0.05 */
|
|
2958
|
+
silenceThreshold?: number;
|
|
2959
|
+
/** Continuous silence duration in ms before triggering upload, default 2000 */
|
|
2960
|
+
silenceDuration?: number;
|
|
2961
|
+
/** MediaRecorder timeslice interval in ms, default 1000 */
|
|
2962
|
+
timeslice?: number;
|
|
2963
|
+
};
|
|
2964
|
+
/** Callback invoked with transcribed text (incremental in auto mode) */
|
|
2965
|
+
onTranscription: (text: string) => void;
|
|
2966
|
+
/** Recording time limit in seconds, default 120 */
|
|
2967
|
+
maxDuration?: number;
|
|
2968
|
+
}
|
|
2969
|
+
declare function useVoiceRecorder(options: UseVoiceRecorderOptions): {
|
|
2970
|
+
startRecording: () => Promise<void>;
|
|
2971
|
+
stopRecording: () => void;
|
|
2972
|
+
cancelRecording: () => void;
|
|
2973
|
+
retryTranscription: () => Promise<void>;
|
|
2974
|
+
setMode: (newMode: RecorderMode) => void;
|
|
2975
|
+
state: VoiceRecorderState;
|
|
2976
|
+
};
|
|
2977
|
+
|
|
2978
|
+
interface VoiceInputButtonProps {
|
|
2979
|
+
mode?: RecorderMode;
|
|
2980
|
+
onTranscription: (text: string) => void;
|
|
2981
|
+
disabled?: boolean;
|
|
2982
|
+
maxDuration?: number;
|
|
2983
|
+
autoMode?: UseVoiceRecorderOptions["autoMode"];
|
|
2984
|
+
}
|
|
2985
|
+
declare const VoiceInputButton: React__default.FC<VoiceInputButtonProps>;
|
|
2986
|
+
|
|
2934
2987
|
interface ViewToggleOption {
|
|
2935
2988
|
mode: string;
|
|
2936
2989
|
icon: React__default.ComponentType<{
|
|
@@ -3635,4 +3688,4 @@ type IframeMessage = {
|
|
|
3635
3688
|
};
|
|
3636
3689
|
declare function generateIframeSrcdoc(): string;
|
|
3637
3690
|
|
|
3638
|
-
export { type AgentChatProps, AgentConversations, type AgentConversationsProps, type AgentState, AgentThreadProvider, type AgentThreadProviderProps, AssistantContext, AssistantContextProvider, type AssistantContextProviderProps, type AssistantContextValue, AssistantFlow, type AssistantFlowProps, AssistantNode, type AssistantNodeData, type AssistantState, type AttachFile, type AuthContextValue, AuthProvider, AxiomLatticeProvider, type AxiomLatticeProviderProps, type BalanceResult, ChangePasswordModal, type ChangePasswordModalProps, ChannelInstallationsDrawerContent, ChatErrorBoundary, type ChatErrorBoundaryProps, type ChatResponse, ChatSidebar, type ChatSidebarProps, type ChatState, type ChatStateWithAgent, ChatUIContext, ChatUIContextProvider, Chating, type ChatingProps, type ClientConfig, ColumnLayout, type ColumnLayoutProps, ConflictResolver, ConnectionConfigDrawerContent, ConnectionListField, ConnectionsHub, ConversationContext, ConversationContextProvider, type ConversationContextProviderProps, type ConversationContextValue, type ConversationThread, CreateAssistantModal, DEFAULT_MENU_ITEMS, DEFAULT_MIDDLEWARE_TYPES, DEFAULT_WORKSPACE_MENU_ITEMS, type ElementMeta, type ElementProps, type EntityAction, EntityCard, EntityCreateTrigger, EntityListShell, EntityListView, EntityRow, EvalPanel, EvalRunResults, EvalSuiteCardList, EvalSuiteDetail, type ExplorerFile, ExportStep, FileExplorer, type FileExplorerProps, FilePanelToggle, type IframeMessage, ImportStep, LatticeAgentWorkspace, LatticeChat, LatticeChatShell, type LatticeChatShellConfig, LatticeChatShellContext, LatticeChatShellContextProvider, type LatticeChatShellContextProviderProps, type LatticeChatShellContextValue, type LatticeChatShellProps, LoginForm, type LoginFormProps, LoginPage, MDResponse, MDViewFormItem, MetricsConfigDrawerContent, type MiddlewareConfigDefinition, type MiddlewareConfigSchema, type MiddlewareConfigSchemaProperty, type MiddlewareToolDefinition, type MiddlewareTypeDefinition, MigrationPage, MigrationPageWrapper, type ModelConfig, type ModelInfo, ModelSelector, type ModelSelectorProps, type PanelCard, type PendingMessage, PersonalAssistantChannelModal, PersonalAssistantPage, ProtectedRoute, type ProtectedRouteProps, type QuickPromptCategory, type QuickPromptItem, RegisterForm, type RegisterFormProps, type ResourceFolderConfig, type SanitizerConfig, ScheduleButton, type ScheduleButtonProps, SideAppBrowserContext, type SideAppBrowserContextValue, SideAppViewBrowser, type SideMenuItemConfig, type SideMenuItemType, SkillCategoryPrompts, type SkillCategoryPromptsProps, SkillFlow, type SkillFlowProps, SkillNode, type SkillNodeData, type StreamEventHandlerOptions, type StreamingError, StreamingHTMLRenderer, type StreamingHTMLRendererProps, TenantBranding, type TenantBrandingData, TenantLogo, TenantSelector, type TenantSelectorProps, TenantSettingsModal, type ThreadState, type ToolCallData, type UIMessage, type UseAgentStateOptions, type UseAgentStateReturn, type UseApiOptions, type UseApiReturn, type UseAxiomLatticeOptions, type UseChatOptions, type UseTenantsOptions, type UseTenantsReturn, type UseUsersOptions, type UseUsersReturn, UserProfile, type UserProfileProps, type UserTenantInfo, type ViewMode, type ViewModeExtension, ViewToggle, WorkflowAutomationView, WorkflowCanvas, type WorkflowCanvasProps, WorkflowNode, type WorkflowNodeData, WorkspaceResourceManager, type WorkspaceResourceManagerProps, WorkspaceResourceUIContext, animation, axiomAntdTheme, axiomAntdThemeDark, axiomTokens, colors, generateIframeSrcdoc, generateLabelFromMessage, getAxiomAntdTheme, getElement, radius, regsiterElement, shadows, spacing, typography, useAgentChat, useAgentGraph, useAgentState, useAgentThreadContext, useApi, useAssistantContext, useAuth, useAuthOptional, useAxiomLattice, useAxiomTheme, useChat, useChatUIContext, useClient, useConversationContext, useEvalCases, useEvalProjects, useEvalRunStream, useEvalRuns, useEvalSuites, useLatticeChatShellContext, useMiddlewareTypes, useSideAppBrowser, useSideAppOpener, useTenantBranding, useTenants, useUsers };
|
|
3691
|
+
export { type AgentChatProps, AgentConversations, type AgentConversationsProps, type AgentState, AgentThreadProvider, type AgentThreadProviderProps, AssistantContext, AssistantContextProvider, type AssistantContextProviderProps, type AssistantContextValue, AssistantFlow, type AssistantFlowProps, AssistantNode, type AssistantNodeData, type AssistantState, type AttachFile, type AuthContextValue, AuthProvider, AxiomLatticeProvider, type AxiomLatticeProviderProps, type BalanceResult, ChangePasswordModal, type ChangePasswordModalProps, ChannelInstallationsDrawerContent, ChatErrorBoundary, type ChatErrorBoundaryProps, type ChatResponse, ChatSidebar, type ChatSidebarProps, type ChatState, type ChatStateWithAgent, ChatUIContext, ChatUIContextProvider, Chating, type ChatingProps, type ClientConfig, ColumnLayout, type ColumnLayoutProps, ConflictResolver, ConnectionConfigDrawerContent, ConnectionListField, ConnectionsHub, ConversationContext, ConversationContextProvider, type ConversationContextProviderProps, type ConversationContextValue, type ConversationThread, CreateAssistantModal, DEFAULT_MENU_ITEMS, DEFAULT_MIDDLEWARE_TYPES, DEFAULT_WORKSPACE_MENU_ITEMS, type ElementMeta, type ElementProps, type EntityAction, EntityCard, EntityCreateTrigger, EntityListShell, EntityListView, EntityRow, EvalPanel, EvalRunResults, EvalSuiteCardList, EvalSuiteDetail, type ExplorerFile, ExportStep, FileExplorer, type FileExplorerProps, FilePanelToggle, type IframeMessage, ImportStep, LatticeAgentWorkspace, LatticeChat, LatticeChatShell, type LatticeChatShellConfig, LatticeChatShellContext, LatticeChatShellContextProvider, type LatticeChatShellContextProviderProps, type LatticeChatShellContextValue, type LatticeChatShellProps, LoginForm, type LoginFormProps, LoginPage, MDResponse, MDViewFormItem, MetricsConfigDrawerContent, type MiddlewareConfigDefinition, type MiddlewareConfigSchema, type MiddlewareConfigSchemaProperty, type MiddlewareToolDefinition, type MiddlewareTypeDefinition, MigrationPage, MigrationPageWrapper, type ModelConfig, type ModelInfo, ModelSelector, type ModelSelectorProps, type PanelCard, type PendingMessage, PersonalAssistantChannelModal, PersonalAssistantPage, ProtectedRoute, type ProtectedRouteProps, type QuickPromptCategory, type QuickPromptItem, type RecorderError, type RecorderMode, type RecorderStatus, RegisterForm, type RegisterFormProps, type ResourceFolderConfig, type SanitizerConfig, ScheduleButton, type ScheduleButtonProps, SideAppBrowserContext, type SideAppBrowserContextValue, SideAppViewBrowser, type SideMenuItemConfig, type SideMenuItemType, SkillCategoryPrompts, type SkillCategoryPromptsProps, SkillFlow, type SkillFlowProps, SkillNode, type SkillNodeData, type StreamEventHandlerOptions, type StreamingError, StreamingHTMLRenderer, type StreamingHTMLRendererProps, TenantBranding, type TenantBrandingData, TenantLogo, TenantSelector, type TenantSelectorProps, TenantSettingsModal, type ThreadState, type ToolCallData, type UIMessage, type UseAgentStateOptions, type UseAgentStateReturn, type UseApiOptions, type UseApiReturn, type UseAxiomLatticeOptions, type UseChatOptions, type UseTenantsOptions, type UseTenantsReturn, type UseUsersOptions, type UseUsersReturn, type UseVoiceRecorderOptions, UserProfile, type UserProfileProps, type UserTenantInfo, type ViewMode, type ViewModeExtension, ViewToggle, VoiceInputButton, type VoiceInputButtonProps, type VoiceRecorderState, WorkflowAutomationView, WorkflowCanvas, type WorkflowCanvasProps, WorkflowNode, type WorkflowNodeData, WorkspaceResourceManager, type WorkspaceResourceManagerProps, WorkspaceResourceUIContext, animation, axiomAntdTheme, axiomAntdThemeDark, axiomTokens, colors, generateIframeSrcdoc, generateLabelFromMessage, getAxiomAntdTheme, getElement, radius, regsiterElement, shadows, spacing, typography, useAgentChat, useAgentGraph, useAgentState, useAgentThreadContext, useApi, useAssistantContext, useAuth, useAuthOptional, useAxiomLattice, useAxiomTheme, useChat, useChatUIContext, useClient, useConversationContext, useEvalCases, useEvalProjects, useEvalRunStream, useEvalRuns, useEvalSuites, useLatticeChatShellContext, useMiddlewareTypes, useSideAppBrowser, useSideAppOpener, useTenantBranding, useTenants, useUsers, useVoiceRecorder };
|