* 获取 LLM 提供商名称
()
| 120 | * 获取 LLM 提供商名称 |
| 121 | */ |
| 122 | public getProvider(): string | null { |
| 123 | if (!this.llm) return null; |
| 124 | return this.llm instanceof QwenLLM ? 'qwen' : 'volcengine'; |
| 125 | } |
| 126 | |
| 127 | /** |
| 128 | * 获取 LLM 实例 |
no outgoing calls
no test coverage detected