( llmConfig: LLMConfig, modelConfig: ModelConfig | undefined )
| 103 | |
| 104 | // 工厂函数 |
| 105 | export function createAIService( |
| 106 | llmConfig: LLMConfig, |
| 107 | modelConfig: ModelConfig | undefined |
| 108 | ): AIService { |
| 109 | return new AIService(llmConfig, modelConfig) |
| 110 | } |
no outgoing calls
no test coverage detected