| 48 | namespace QodeAssist::Chat { |
| 49 | |
| 50 | ClientInterface::ClientInterface( |
| 51 | ChatModel *chatModel, PluginLLMCore::IPromptProvider *promptProvider, QObject *parent) |
| 52 | : QObject(parent) |
| 53 | , m_promptProvider(promptProvider) |
| 54 | , m_chatModel(chatModel) |
| 55 | , m_contextManager(new Context::ContextManager(this)) |
| 56 | {} |
| 57 | |
| 58 | void ClientInterface::setSkillsManager(Skills::SkillsManager *skillsManager) |
| 59 | { |
nothing calls this directly
no outgoing calls
no test coverage detected