| 388 | } |
| 389 | |
| 390 | ChatManager::ChatManager(QObject *parent) |
| 391 | : QObject(parent) |
| 392 | { |
| 393 | auto aiSrv = dpfGetService(AiService); |
| 394 | auto liteLLMInfo = aiSrv->getCodeGeeXLLMLite(); |
| 395 | liteLLM = aiSrv->getLLM(liteLLMInfo); |
| 396 | liteLLM->setStream(false); |
| 397 | |
| 398 | initConnections(); |
| 399 | } |
| 400 | |
| 401 | void ChatManager::initConnections() |
| 402 | { |