@voxket-ai/voxket-live
Version:
A React widget for embedding Voxket-powered audio/video/chat experiences.
24 lines (23 loc) • 517 B
TypeScript
export interface ToolExecutionData {
type: string;
function_calls: Array<{
id: string;
type: string;
call_id: string;
arguments: string;
name: string;
created_at: number;
}>;
function_call_outputs: Array<{
id: string;
type: string;
name: string;
call_id: string;
output: string;
is_error: boolean;
created_at: number;
}>;
created_at: number;
parseError?: boolean;
rawData?: any;
}