feat: Add file list for ignoring in request for llm (#163)

This commit is contained in:
Petr Mironychev
2025-04-17 09:12:47 +02:00
committed by GitHub
parent 7515599acb
commit 615175bea8
9 changed files with 277 additions and 0 deletions

View File

@ -289,6 +289,11 @@ LLMCore::ContextData LLMClientInterface::prepareContext(
return reader.prepareContext(lineNumber, cursorPosition, m_completeSettings);
}
Context::ContextManager *LLMClientInterface::contextManager() const
{
return m_contextManager;
}
void LLMClientInterface::sendCompletionToClient(
const QString &completion, const QJsonObject &request, bool isComplete)
{