* 系统提示词聊天
(systemPrompt: string, userMessage: string)
| 219 | * 系统提示词聊天 |
| 220 | */ |
| 221 | public async chatWithSystem(systemPrompt: string, userMessage: string): Promise<string> { |
| 222 | return await this.llmManager.chatWithSystem(systemPrompt, userMessage); |
| 223 | } |
| 224 | |
| 225 | /** |
| 226 | * 代码生成 |
no outgoing calls
no test coverage detected