Skip to content

ShellCallResultItem

type ShellCallResultItem = object;
optional caller?:
| {
type: "direct";
}
| {
callerId: string;
type: "program";
};
callId: string;
optional id?: string;
optional maxOutputLength?: number;
output: object[];
[key: string]: unknown
optional providerData?: Record<string, any>;
optional status?: "completed" | "in_progress" | "incomplete";
type: "shell_call_output";