@axiom-lattice/react-sdk 2.1.110 → 2.1.112
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 +54 -7
- package/dist/index.d.ts +54 -7
- package/dist/index.js +2611 -1766
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2455 -1600
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _axiom_lattice_protocols from '@axiom-lattice/protocols';
|
|
2
|
-
import { Message, InterruptMessage, Thread, User, Tenant, Skill } from '@axiom-lattice/protocols';
|
|
2
|
+
import { Message, InterruptMessage, Thread, MessageChunk, User, Tenant, Skill } from '@axiom-lattice/protocols';
|
|
3
3
|
export * from '@axiom-lattice/protocols';
|
|
4
4
|
import * as React$1 from 'react';
|
|
5
5
|
import React__default, { ReactNode, Component } from 'react';
|
|
@@ -99,7 +99,7 @@ interface ChatState {
|
|
|
99
99
|
*/
|
|
100
100
|
messages: Message[];
|
|
101
101
|
/**
|
|
102
|
-
* Whether
|
|
102
|
+
* Whether messages are currently being loaded or the agent is generating
|
|
103
103
|
*/
|
|
104
104
|
isLoading: boolean;
|
|
105
105
|
/**
|
|
@@ -451,7 +451,7 @@ declare function useAgentChat<T extends UseChatOptions>(options?: T): ChatStateW
|
|
|
451
451
|
mode?: 'collect' | 'followup' | 'steer';
|
|
452
452
|
}) => Promise<void>;
|
|
453
453
|
stopStreaming: () => void;
|
|
454
|
-
resumeStream: (messageId?: string) => () => void;
|
|
454
|
+
resumeStream: (messageId?: string, onMessageChunk?: (chunk: MessageChunk) => void) => () => void;
|
|
455
455
|
loadMessages: (limit?: number) => Promise<void>;
|
|
456
456
|
clearMessages: () => void;
|
|
457
457
|
clearError: () => void;
|
|
@@ -1093,7 +1093,11 @@ interface AgentThreadContextValue<T extends UseChatOptions> {
|
|
|
1093
1093
|
mode?: 'collect' | 'followup' | 'steer';
|
|
1094
1094
|
}) => Promise<void>;
|
|
1095
1095
|
stopStreaming: () => void;
|
|
1096
|
-
|
|
1096
|
+
/**
|
|
1097
|
+
* @deprecated ThreadStream auto-manages connection. Pass onMessageChunk
|
|
1098
|
+
* for custom handlers (unregistered when cleanup is called).
|
|
1099
|
+
*/
|
|
1100
|
+
resumeStream: (messageId?: string, onMessageChunk?: (chunk: MessageChunk) => void) => () => void;
|
|
1097
1101
|
loadMessages: (limit?: number) => Promise<void>;
|
|
1098
1102
|
clearMessages: () => void;
|
|
1099
1103
|
clearError: () => void;
|
|
@@ -1115,6 +1119,12 @@ interface AgentThreadProviderProps<T extends UseChatOptions> {
|
|
|
1115
1119
|
}
|
|
1116
1120
|
/**
|
|
1117
1121
|
* Provider component for AgentThreadContext.
|
|
1122
|
+
*
|
|
1123
|
+
* ADR-026: Dual-granularity SSE architecture.
|
|
1124
|
+
* - sendMessage uses background mode (enqueue only, no SSE).
|
|
1125
|
+
* - ThreadStream manages a thread-level SSE via resume_stream.
|
|
1126
|
+
* - Chunk delivery is handled by the shared thread-level connection.
|
|
1127
|
+
*
|
|
1118
1128
|
* Manages all agent thread state and operations including message streaming, interrupts,
|
|
1119
1129
|
* queue management, and agent state polling.
|
|
1120
1130
|
*
|
|
@@ -2777,7 +2787,7 @@ interface EvalSuiteDetailProps {
|
|
|
2777
2787
|
/**
|
|
2778
2788
|
* Detail view for a single evaluation suite.
|
|
2779
2789
|
*
|
|
2780
|
-
* Displays a breadcrumb header, a
|
|
2790
|
+
* Displays a breadcrumb header, a grid/list of test cases with input messages,
|
|
2781
2791
|
* agent references, rubric counts, and delete actions. Includes a modal form
|
|
2782
2792
|
* for adding new test cases with agent selection, output type, and expected
|
|
2783
2793
|
* content assertion.
|
|
@@ -2807,7 +2817,7 @@ interface EvalRunResultsProps {
|
|
|
2807
2817
|
* Displays detailed results for a single evaluation run.
|
|
2808
2818
|
*
|
|
2809
2819
|
* Shows a summary card with total/passed/failed counts, average score,
|
|
2810
|
-
* and pass rate. Renders
|
|
2820
|
+
* and pass rate. Renders a grid/list of per-case results including
|
|
2811
2821
|
* pass/fail status, suite name, input message, judge summary, dimension
|
|
2812
2822
|
* scores with progress bars, and overall score.
|
|
2813
2823
|
*
|
|
@@ -3002,6 +3012,43 @@ interface EntityListViewProps<T> {
|
|
|
3002
3012
|
}
|
|
3003
3013
|
declare const EntityListView: <T>({ items, loading, keyExtractor, title, itemName, titleBefore, titleAfter, renderIcon, renderPrimary, renderSecondary, renderFooter, renderHeaderActions, renderDetails, onItemClick, itemActions, actionsPosition, actionsStyle, createLabel, onCreateClick, headerLeft, headerRight, defaultViewMode, showViewToggle, emptyIcon, emptyTitle, emptyDescription, renderEmpty, renderGridItem, renderListItem, className, tabs, activeTab, onTabChange, }: EntityListViewProps<T>) => React__default.ReactElement;
|
|
3004
3014
|
|
|
3015
|
+
interface ConflictResolverProps {
|
|
3016
|
+
conflicts: Array<{
|
|
3017
|
+
_exportId: string;
|
|
3018
|
+
entityType: string;
|
|
3019
|
+
conflictType: string;
|
|
3020
|
+
existingName?: string;
|
|
3021
|
+
existingId?: string;
|
|
3022
|
+
field?: string;
|
|
3023
|
+
}>;
|
|
3024
|
+
insertions: Array<{
|
|
3025
|
+
_exportId: string;
|
|
3026
|
+
entityType: string;
|
|
3027
|
+
name: string;
|
|
3028
|
+
}>;
|
|
3029
|
+
onChange: (resolutions: Record<string, {
|
|
3030
|
+
action: string;
|
|
3031
|
+
newId?: string;
|
|
3032
|
+
}>) => void;
|
|
3033
|
+
}
|
|
3034
|
+
declare const ConflictResolver: React__default.FC<ConflictResolverProps>;
|
|
3035
|
+
|
|
3036
|
+
interface ExportStepProps {
|
|
3037
|
+
onExported: (result: any) => void;
|
|
3038
|
+
onDownload: () => void;
|
|
3039
|
+
exportJobId: string | null;
|
|
3040
|
+
}
|
|
3041
|
+
declare const ExportStep: React__default.FC<ExportStepProps>;
|
|
3042
|
+
|
|
3043
|
+
interface ImportStepProps {
|
|
3044
|
+
onComplete: () => void;
|
|
3045
|
+
}
|
|
3046
|
+
declare const ImportStep: React__default.FC<ImportStepProps>;
|
|
3047
|
+
|
|
3048
|
+
/** Context-aware wrapper for use as a GenUI route element in the workspace menu. */
|
|
3049
|
+
declare const MigrationPageWrapper: React__default.FC;
|
|
3050
|
+
declare const MigrationPage: React__default.FC;
|
|
3051
|
+
|
|
3005
3052
|
/**
|
|
3006
3053
|
* Axiom Theme Design Tokens
|
|
3007
3054
|
*
|
|
@@ -3506,4 +3553,4 @@ type IframeMessage = {
|
|
|
3506
3553
|
};
|
|
3507
3554
|
declare function generateIframeSrcdoc(): string;
|
|
3508
3555
|
|
|
3509
|
-
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, 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, FileExplorer, type FileExplorerProps, FilePanelToggle, type IframeMessage, 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, 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, TenantSelector, type TenantSelectorProps, 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, 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, useTenants, useUsers };
|
|
3556
|
+
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, TenantSelector, type TenantSelectorProps, 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, 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, useTenants, useUsers };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _axiom_lattice_protocols from '@axiom-lattice/protocols';
|
|
2
|
-
import { Message, InterruptMessage, Thread, User, Tenant, Skill } from '@axiom-lattice/protocols';
|
|
2
|
+
import { Message, InterruptMessage, Thread, MessageChunk, User, Tenant, Skill } from '@axiom-lattice/protocols';
|
|
3
3
|
export * from '@axiom-lattice/protocols';
|
|
4
4
|
import * as React$1 from 'react';
|
|
5
5
|
import React__default, { ReactNode, Component } from 'react';
|
|
@@ -99,7 +99,7 @@ interface ChatState {
|
|
|
99
99
|
*/
|
|
100
100
|
messages: Message[];
|
|
101
101
|
/**
|
|
102
|
-
* Whether
|
|
102
|
+
* Whether messages are currently being loaded or the agent is generating
|
|
103
103
|
*/
|
|
104
104
|
isLoading: boolean;
|
|
105
105
|
/**
|
|
@@ -451,7 +451,7 @@ declare function useAgentChat<T extends UseChatOptions>(options?: T): ChatStateW
|
|
|
451
451
|
mode?: 'collect' | 'followup' | 'steer';
|
|
452
452
|
}) => Promise<void>;
|
|
453
453
|
stopStreaming: () => void;
|
|
454
|
-
resumeStream: (messageId?: string) => () => void;
|
|
454
|
+
resumeStream: (messageId?: string, onMessageChunk?: (chunk: MessageChunk) => void) => () => void;
|
|
455
455
|
loadMessages: (limit?: number) => Promise<void>;
|
|
456
456
|
clearMessages: () => void;
|
|
457
457
|
clearError: () => void;
|
|
@@ -1093,7 +1093,11 @@ interface AgentThreadContextValue<T extends UseChatOptions> {
|
|
|
1093
1093
|
mode?: 'collect' | 'followup' | 'steer';
|
|
1094
1094
|
}) => Promise<void>;
|
|
1095
1095
|
stopStreaming: () => void;
|
|
1096
|
-
|
|
1096
|
+
/**
|
|
1097
|
+
* @deprecated ThreadStream auto-manages connection. Pass onMessageChunk
|
|
1098
|
+
* for custom handlers (unregistered when cleanup is called).
|
|
1099
|
+
*/
|
|
1100
|
+
resumeStream: (messageId?: string, onMessageChunk?: (chunk: MessageChunk) => void) => () => void;
|
|
1097
1101
|
loadMessages: (limit?: number) => Promise<void>;
|
|
1098
1102
|
clearMessages: () => void;
|
|
1099
1103
|
clearError: () => void;
|
|
@@ -1115,6 +1119,12 @@ interface AgentThreadProviderProps<T extends UseChatOptions> {
|
|
|
1115
1119
|
}
|
|
1116
1120
|
/**
|
|
1117
1121
|
* Provider component for AgentThreadContext.
|
|
1122
|
+
*
|
|
1123
|
+
* ADR-026: Dual-granularity SSE architecture.
|
|
1124
|
+
* - sendMessage uses background mode (enqueue only, no SSE).
|
|
1125
|
+
* - ThreadStream manages a thread-level SSE via resume_stream.
|
|
1126
|
+
* - Chunk delivery is handled by the shared thread-level connection.
|
|
1127
|
+
*
|
|
1118
1128
|
* Manages all agent thread state and operations including message streaming, interrupts,
|
|
1119
1129
|
* queue management, and agent state polling.
|
|
1120
1130
|
*
|
|
@@ -2777,7 +2787,7 @@ interface EvalSuiteDetailProps {
|
|
|
2777
2787
|
/**
|
|
2778
2788
|
* Detail view for a single evaluation suite.
|
|
2779
2789
|
*
|
|
2780
|
-
* Displays a breadcrumb header, a
|
|
2790
|
+
* Displays a breadcrumb header, a grid/list of test cases with input messages,
|
|
2781
2791
|
* agent references, rubric counts, and delete actions. Includes a modal form
|
|
2782
2792
|
* for adding new test cases with agent selection, output type, and expected
|
|
2783
2793
|
* content assertion.
|
|
@@ -2807,7 +2817,7 @@ interface EvalRunResultsProps {
|
|
|
2807
2817
|
* Displays detailed results for a single evaluation run.
|
|
2808
2818
|
*
|
|
2809
2819
|
* Shows a summary card with total/passed/failed counts, average score,
|
|
2810
|
-
* and pass rate. Renders
|
|
2820
|
+
* and pass rate. Renders a grid/list of per-case results including
|
|
2811
2821
|
* pass/fail status, suite name, input message, judge summary, dimension
|
|
2812
2822
|
* scores with progress bars, and overall score.
|
|
2813
2823
|
*
|
|
@@ -3002,6 +3012,43 @@ interface EntityListViewProps<T> {
|
|
|
3002
3012
|
}
|
|
3003
3013
|
declare const EntityListView: <T>({ items, loading, keyExtractor, title, itemName, titleBefore, titleAfter, renderIcon, renderPrimary, renderSecondary, renderFooter, renderHeaderActions, renderDetails, onItemClick, itemActions, actionsPosition, actionsStyle, createLabel, onCreateClick, headerLeft, headerRight, defaultViewMode, showViewToggle, emptyIcon, emptyTitle, emptyDescription, renderEmpty, renderGridItem, renderListItem, className, tabs, activeTab, onTabChange, }: EntityListViewProps<T>) => React__default.ReactElement;
|
|
3004
3014
|
|
|
3015
|
+
interface ConflictResolverProps {
|
|
3016
|
+
conflicts: Array<{
|
|
3017
|
+
_exportId: string;
|
|
3018
|
+
entityType: string;
|
|
3019
|
+
conflictType: string;
|
|
3020
|
+
existingName?: string;
|
|
3021
|
+
existingId?: string;
|
|
3022
|
+
field?: string;
|
|
3023
|
+
}>;
|
|
3024
|
+
insertions: Array<{
|
|
3025
|
+
_exportId: string;
|
|
3026
|
+
entityType: string;
|
|
3027
|
+
name: string;
|
|
3028
|
+
}>;
|
|
3029
|
+
onChange: (resolutions: Record<string, {
|
|
3030
|
+
action: string;
|
|
3031
|
+
newId?: string;
|
|
3032
|
+
}>) => void;
|
|
3033
|
+
}
|
|
3034
|
+
declare const ConflictResolver: React__default.FC<ConflictResolverProps>;
|
|
3035
|
+
|
|
3036
|
+
interface ExportStepProps {
|
|
3037
|
+
onExported: (result: any) => void;
|
|
3038
|
+
onDownload: () => void;
|
|
3039
|
+
exportJobId: string | null;
|
|
3040
|
+
}
|
|
3041
|
+
declare const ExportStep: React__default.FC<ExportStepProps>;
|
|
3042
|
+
|
|
3043
|
+
interface ImportStepProps {
|
|
3044
|
+
onComplete: () => void;
|
|
3045
|
+
}
|
|
3046
|
+
declare const ImportStep: React__default.FC<ImportStepProps>;
|
|
3047
|
+
|
|
3048
|
+
/** Context-aware wrapper for use as a GenUI route element in the workspace menu. */
|
|
3049
|
+
declare const MigrationPageWrapper: React__default.FC;
|
|
3050
|
+
declare const MigrationPage: React__default.FC;
|
|
3051
|
+
|
|
3005
3052
|
/**
|
|
3006
3053
|
* Axiom Theme Design Tokens
|
|
3007
3054
|
*
|
|
@@ -3506,4 +3553,4 @@ type IframeMessage = {
|
|
|
3506
3553
|
};
|
|
3507
3554
|
declare function generateIframeSrcdoc(): string;
|
|
3508
3555
|
|
|
3509
|
-
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, 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, FileExplorer, type FileExplorerProps, FilePanelToggle, type IframeMessage, 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, 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, TenantSelector, type TenantSelectorProps, 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, 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, useTenants, useUsers };
|
|
3556
|
+
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, TenantSelector, type TenantSelectorProps, 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, 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, useTenants, useUsers };
|