@voxket-ai/voxket-live 1.0.141 → 1.0.144
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/README.md +1977 -122
- package/dist/components/chat/attachment-message.d.ts +9 -0
- package/dist/components/chat/chat-input-panel.d.ts +11 -0
- package/dist/components/chat/chat-message.d.ts +10 -0
- package/dist/components/chat/default-views.d.ts +5 -0
- package/dist/components/chat/markdown-utils.d.ts +5 -0
- package/dist/components/chat/streaming-text.d.ts +8 -0
- package/dist/components/chat/thinking-indicator.d.ts +6 -0
- package/dist/components/chat/tool-execution-indicator.d.ts +8 -0
- package/dist/components/deep-analysis.d.ts +17 -0
- package/dist/components/widget.d.ts +1 -0
- package/dist/core/client.d.ts +17 -2
- package/dist/examples/test-visualization-event.d.ts +18 -0
- package/dist/examples/visualization-view.d.ts +8 -0
- package/dist/hooks/chat-hooks.d.ts +39 -0
- package/dist/index.cjs +70 -66
- package/dist/index.js +7921 -7713
- package/dist/types/core.d.ts +2 -0
- package/dist/types/tools.d.ts +23 -0
- package/package.json +2 -1
- package/dist/core/sdk.d.ts +0 -0
package/dist/types/core.d.ts
CHANGED
|
@@ -19,6 +19,8 @@ export interface SessionConfig {
|
|
|
19
19
|
participantName?: string;
|
|
20
20
|
/** Session-specific metadata */
|
|
21
21
|
metadata?: Record<string, any>;
|
|
22
|
+
/** Participant-specific metadata to be sent to the API */
|
|
23
|
+
participantMetadata?: Record<string, any>;
|
|
22
24
|
/** Session timeout in milliseconds */
|
|
23
25
|
timeout?: number;
|
|
24
26
|
/** Supported modalities for this session */
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export interface ToolExecutionData {
|
|
2
|
+
type: string;
|
|
3
|
+
function_calls: Array<{
|
|
4
|
+
id: string;
|
|
5
|
+
type: string;
|
|
6
|
+
call_id: string;
|
|
7
|
+
arguments: string;
|
|
8
|
+
name: string;
|
|
9
|
+
created_at: number;
|
|
10
|
+
}>;
|
|
11
|
+
function_call_outputs: Array<{
|
|
12
|
+
id: string;
|
|
13
|
+
type: string;
|
|
14
|
+
name: string;
|
|
15
|
+
call_id: string;
|
|
16
|
+
output: string;
|
|
17
|
+
is_error: boolean;
|
|
18
|
+
created_at: number;
|
|
19
|
+
}>;
|
|
20
|
+
created_at: number;
|
|
21
|
+
parseError?: boolean;
|
|
22
|
+
rawData?: any;
|
|
23
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voxket-ai/voxket-live",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.144",
|
|
4
4
|
"description": "A React widget for embedding Voxket-powered audio/video/chat experiences.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -94,6 +94,7 @@
|
|
|
94
94
|
"motion": "~12.18.1",
|
|
95
95
|
"path": "~0.12.7",
|
|
96
96
|
"react-markdown": "~10.1.0",
|
|
97
|
+
"recharts": "~3.2.1",
|
|
97
98
|
"rehype-highlight": "~7.0.2",
|
|
98
99
|
"remark-gfm": "~4.0.1",
|
|
99
100
|
"sonner": "~2.0.5",
|
package/dist/core/sdk.d.ts
DELETED
|
File without changes
|