interface FakeLLMResponse {
    content?: string;
    duration?: number;
    input: string;
    toolCalls?: {
        args: Record<string, unknown>;
        name: string;
    }[];
    ttft?: number;
    type?: "llm";
}

Properties

content?: string
duration?: number
input: string
toolCalls?: {
    args: Record<string, unknown>;
    name: string;
}[]

Type declaration

  • args: Record<string, unknown>
  • name: string
ttft?: number
type?: "llm"