export interface CommitGenerateTelemetry { /** * 使用的模型 id */ modelId: string; /** * 请求 id */ requestId: string; } export interface CommitGenerateCancelTelemetry { /** * 使用的模型 id */ modelId: string; /** * 请求 id * */ requestId: string; /** * 取消原因 */ reason: 'abort' | 'timeout'; } //# sourceMappingURL=commit-message.d.ts.map