mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2025-05-28 03:10:28 -04:00
Optimize string
This commit is contained in:
parent
99136d7b76
commit
44add994b9
@ -244,14 +244,14 @@ void LLMClientInterface::handleLLMResponse(QNetworkReply *reply, const QJsonObje
|
|||||||
}
|
}
|
||||||
|
|
||||||
void LLMClientInterface::handleCompletion(const QJsonObject &request,
|
void LLMClientInterface::handleCompletion(const QJsonObject &request,
|
||||||
const QString &accumulatedCompletion)
|
const QStringView &accumulatedCompletion)
|
||||||
{
|
{
|
||||||
auto updatedContext = prepareContext(request, accumulatedCompletion);
|
auto updatedContext = prepareContext(request, accumulatedCompletion);
|
||||||
sendLLMRequest(request, updatedContext);
|
sendLLMRequest(request, updatedContext);
|
||||||
}
|
}
|
||||||
|
|
||||||
ContextData LLMClientInterface::prepareContext(const QJsonObject &request,
|
ContextData LLMClientInterface::prepareContext(const QJsonObject &request,
|
||||||
const QString &accumulatedCompletion)
|
const QStringView &accumulatedCompletion)
|
||||||
{
|
{
|
||||||
QJsonObject params = request["params"].toObject();
|
QJsonObject params = request["params"].toObject();
|
||||||
QJsonObject doc = params["doc"].toObject();
|
QJsonObject doc = params["doc"].toObject();
|
||||||
@ -264,7 +264,7 @@ ContextData LLMClientInterface::prepareContext(const QJsonObject &request,
|
|||||||
|
|
||||||
if (!textDocument) {
|
if (!textDocument) {
|
||||||
logMessage("Error: Document is not available for" + filePath.toString());
|
logMessage("Error: Document is not available for" + filePath.toString());
|
||||||
return {"", ""};
|
return ContextData{};
|
||||||
}
|
}
|
||||||
|
|
||||||
int cursorPosition = position["character"].toInt();
|
int cursorPosition = position["character"].toInt();
|
||||||
@ -284,9 +284,7 @@ ContextData LLMClientInterface::prepareContext(const QJsonObject &request,
|
|||||||
? reader.getLanguageAndFileInfo()
|
? reader.getLanguageAndFileInfo()
|
||||||
: QString());
|
: QString());
|
||||||
|
|
||||||
QString updatedContextBefore = contextBefore + accumulatedCompletion;
|
return {QString("%1%2").arg(contextBefore, accumulatedCompletion), contextAfter, instructions};
|
||||||
|
|
||||||
return {updatedContextBefore, contextAfter, instructions};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void LLMClientInterface::updateProvider()
|
void LLMClientInterface::updateProvider()
|
||||||
@ -378,9 +376,9 @@ void LLMClientInterface::sendLLMRequest(const QJsonObject &request, const Contex
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
QString LLMClientInterface::removeStopWords(const QString &completion)
|
QString LLMClientInterface::removeStopWords(const QStringView &completion)
|
||||||
{
|
{
|
||||||
QString filteredCompletion = completion;
|
QString filteredCompletion = completion.toString();
|
||||||
|
|
||||||
auto currentTemplate = PromptTemplateManager::instance().getCurrentTemplate();
|
auto currentTemplate = PromptTemplateManager::instance().getCurrentTemplate();
|
||||||
QStringList stopWords = currentTemplate->stopWords();
|
QStringList stopWords = currentTemplate->stopWords();
|
||||||
|
@ -45,12 +45,12 @@ public:
|
|||||||
bool isComplete);
|
bool isComplete);
|
||||||
|
|
||||||
void handleCompletion(const QJsonObject &request,
|
void handleCompletion(const QJsonObject &request,
|
||||||
const QString &accumulatedCompletion = QString());
|
const QStringView &accumulatedCompletion = QString());
|
||||||
void sendLLMRequest(const QJsonObject &request, const ContextData &prompt);
|
void sendLLMRequest(const QJsonObject &request, const ContextData &prompt);
|
||||||
void handleLLMResponse(QNetworkReply *reply, const QJsonObject &request);
|
void handleLLMResponse(QNetworkReply *reply, const QJsonObject &request);
|
||||||
|
|
||||||
ContextData prepareContext(const QJsonObject &request,
|
ContextData prepareContext(const QJsonObject &request,
|
||||||
const QString &accumulatedCompletion = QString{});
|
const QStringView &accumulatedCompletion = QString{});
|
||||||
void updateProvider();
|
void updateProvider();
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
@ -71,7 +71,7 @@ private:
|
|||||||
|
|
||||||
QString сontextBefore(TextEditor::TextEditorWidget *widget, int lineNumber, int cursorPosition);
|
QString сontextBefore(TextEditor::TextEditorWidget *widget, int lineNumber, int cursorPosition);
|
||||||
QString сontextAfter(TextEditor::TextEditorWidget *widget, int lineNumber, int cursorPosition);
|
QString сontextAfter(TextEditor::TextEditorWidget *widget, int lineNumber, int cursorPosition);
|
||||||
QString removeStopWords(const QString &completion);
|
QString removeStopWords(const QStringView &completion);
|
||||||
|
|
||||||
QUrl m_serverUrl;
|
QUrl m_serverUrl;
|
||||||
QNetworkAccessManager *m_manager;
|
QNetworkAccessManager *m_manager;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"Name" : "QodeAssist",
|
"Name" : "QodeAssist",
|
||||||
"Version" : "0.0.8",
|
"Version" : "0.1.0",
|
||||||
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
"Vendor" : "Petr Mironychev",
|
"Vendor" : "Petr Mironychev",
|
||||||
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} Petr Mironychev, (C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} Petr Mironychev, (C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
|
Loading…
Reference in New Issue
Block a user