(llmConfig: LLMConfig, modelConfig: ModelConfig | undefined)
| 15 | private isAborted: boolean = false |
| 16 | |
| 17 | constructor(llmConfig: LLMConfig, modelConfig: ModelConfig | undefined) { |
| 18 | this.llmConfig = llmConfig |
| 19 | this.modelConfig = modelConfig |
| 20 | this.requestId = uuidv4() |
| 21 | } |
| 22 | |
| 23 | // 添加getter方法来暴露requestId |
| 24 | get id(): string { |
nothing calls this directly
no outgoing calls
no test coverage detected