@hef2024/llmasaservice-ui 0.16.8 → 0.16.9
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/DEPLOYMENT.md +193 -0
- package/dist/index.css +1951 -1886
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +326 -104
- package/dist/index.mjs +327 -105
- package/package.json +1 -1
- package/src/AIAgentPanel.css +79 -1
- package/src/AIAgentPanel.tsx +236 -23
- package/src/AIChatPanel.tsx +252 -108
- package/src/AgentPanel.tsx +1 -3
- package/src/ChatPanel.tsx +1 -7
- package/src/components/ui/Button.tsx +2 -0
- package/src/components/ui/Dialog.tsx +2 -0
- package/src/components/ui/Input.tsx +2 -0
- package/src/components/ui/Select.tsx +2 -0
- package/src/components/ui/Tooltip.tsx +2 -0
- package/src/components/ui/index.ts +2 -0
- package/src/hooks/useAgentRegistry.ts +1 -4
package/dist/index.d.mts
CHANGED
|
@@ -221,6 +221,7 @@ interface AIAgentPanelProps {
|
|
|
221
221
|
followOnQuestions?: string[];
|
|
222
222
|
followOnPrompt?: string;
|
|
223
223
|
historyListLimit?: number;
|
|
224
|
+
showConversationHistory?: boolean;
|
|
224
225
|
}
|
|
225
226
|
declare const AIAgentPanel: React__default.FC<AIAgentPanelProps>;
|
|
226
227
|
|
|
@@ -296,6 +297,7 @@ interface AIChatPanelProps {
|
|
|
296
297
|
totalContextTokens?: number;
|
|
297
298
|
maxContextTokens?: number;
|
|
298
299
|
enableContextDetailView?: boolean;
|
|
300
|
+
onConversationCreated?: (conversationId: string) => void;
|
|
299
301
|
}
|
|
300
302
|
/**
|
|
301
303
|
* Context section for the context viewer
|
package/dist/index.d.ts
CHANGED
|
@@ -221,6 +221,7 @@ interface AIAgentPanelProps {
|
|
|
221
221
|
followOnQuestions?: string[];
|
|
222
222
|
followOnPrompt?: string;
|
|
223
223
|
historyListLimit?: number;
|
|
224
|
+
showConversationHistory?: boolean;
|
|
224
225
|
}
|
|
225
226
|
declare const AIAgentPanel: React__default.FC<AIAgentPanelProps>;
|
|
226
227
|
|
|
@@ -296,6 +297,7 @@ interface AIChatPanelProps {
|
|
|
296
297
|
totalContextTokens?: number;
|
|
297
298
|
maxContextTokens?: number;
|
|
298
299
|
enableContextDetailView?: boolean;
|
|
300
|
+
onConversationCreated?: (conversationId: string) => void;
|
|
299
301
|
}
|
|
300
302
|
/**
|
|
301
303
|
* Context section for the context viewer
|