import type { FunctionCallParams } from './function-call-params';
export interface FunctionCall {
    'id': string;
    'function': FunctionCallParams;
    'status': string | null;
    'progress'?: number | null;
    'enqueued': string | null;
    'started': string | null;
    'ended': string | null;
    'exc_info'?: string | null;
}
