|
| 1 | +/* |
| 2 | + * Copyright (C) 2024 Petr Mironychev |
| 3 | + * |
| 4 | + * This file is part of QodeAssist. |
| 5 | + * |
| 6 | + * QodeAssist is free software: you can redistribute it and/or modify |
| 7 | + * it under the terms of the GNU General Public License as published by |
| 8 | + * the Free Software Foundation, either version 3 of the License, or |
| 9 | + * (at your option) any later version. |
| 10 | + * |
| 11 | + * QodeAssist is distributed in the hope that it will be useful, |
| 12 | + * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | + * GNU General Public License for more details. |
| 15 | + * |
| 16 | + * You should have received a copy of the GNU General Public License |
| 17 | + * along with QodeAssist. If not, see <https://www.gnu.org/licenses/>. |
| 18 | + */ |
| 19 | + |
| 20 | +#include "LlamaCppProvider.hpp" |
| 21 | + |
| 22 | +#include <QEventLoop> |
| 23 | +#include <QJsonArray> |
| 24 | +#include <QJsonDocument> |
| 25 | +#include <QJsonObject> |
| 26 | +#include <QNetworkReply> |
| 27 | + |
| 28 | +#include "llmcore/OpenAIMessage.hpp" |
| 29 | +#include "llmcore/ValidationUtils.hpp" |
| 30 | +#include "logger/Logger.hpp" |
| 31 | +#include "settings/ChatAssistantSettings.hpp" |
| 32 | +#include "settings/CodeCompletionSettings.hpp" |
| 33 | + |
| 34 | +namespace QodeAssist::Providers { |
| 35 | + |
| 36 | +QString LlamaCppProvider::name() const |
| 37 | +{ |
| 38 | + return "llama.cpp"; |
| 39 | +} |
| 40 | + |
| 41 | +QString LlamaCppProvider::url() const |
| 42 | +{ |
| 43 | + return "http://localhost:8080"; |
| 44 | +} |
| 45 | + |
| 46 | +QString LlamaCppProvider::completionEndpoint() const |
| 47 | +{ |
| 48 | + return "/infill"; |
| 49 | +} |
| 50 | + |
| 51 | +QString LlamaCppProvider::chatEndpoint() const |
| 52 | +{ |
| 53 | + return "/v1/chat/completions"; |
| 54 | +} |
| 55 | + |
| 56 | +bool LlamaCppProvider::supportsModelListing() const |
| 57 | +{ |
| 58 | + return false; |
| 59 | +} |
| 60 | + |
| 61 | +void LlamaCppProvider::prepareRequest( |
| 62 | + QJsonObject &request, |
| 63 | + LLMCore::PromptTemplate *prompt, |
| 64 | + LLMCore::ContextData context, |
| 65 | + LLMCore::RequestType type) |
| 66 | +{ |
| 67 | + if (!prompt->isSupportProvider(providerID())) { |
| 68 | + LOG_MESSAGE(QString("Template %1 doesn't support %2 provider").arg(name(), prompt->name())); |
| 69 | + } |
| 70 | + |
| 71 | + prompt->prepareRequest(request, context); |
| 72 | + |
| 73 | + auto applyModelParams = [&request](const auto &settings) { |
| 74 | + request["max_tokens"] = settings.maxTokens(); |
| 75 | + request["temperature"] = settings.temperature(); |
| 76 | + |
| 77 | + if (settings.useTopP()) |
| 78 | + request["top_p"] = settings.topP(); |
| 79 | + if (settings.useTopK()) |
| 80 | + request["top_k"] = settings.topK(); |
| 81 | + if (settings.useFrequencyPenalty()) |
| 82 | + request["frequency_penalty"] = settings.frequencyPenalty(); |
| 83 | + if (settings.usePresencePenalty()) |
| 84 | + request["presence_penalty"] = settings.presencePenalty(); |
| 85 | + }; |
| 86 | + |
| 87 | + if (type == LLMCore::RequestType::CodeCompletion) { |
| 88 | + applyModelParams(Settings::codeCompletionSettings()); |
| 89 | + } else { |
| 90 | + applyModelParams(Settings::chatAssistantSettings()); |
| 91 | + } |
| 92 | +} |
| 93 | + |
| 94 | +bool LlamaCppProvider::handleResponse(QNetworkReply *reply, QString &accumulatedResponse) |
| 95 | +{ |
| 96 | + QByteArray data = reply->readAll(); |
| 97 | + if (data.isEmpty()) { |
| 98 | + return false; |
| 99 | + } |
| 100 | + |
| 101 | + bool isDone = data.contains("\"stop\":true") || data.contains("data: [DONE]"); |
| 102 | + |
| 103 | + QByteArrayList lines = data.split('\n'); |
| 104 | + for (const QByteArray &line : lines) { |
| 105 | + if (line.trimmed().isEmpty()) { |
| 106 | + continue; |
| 107 | + } |
| 108 | + |
| 109 | + if (line == "data: [DONE]") { |
| 110 | + isDone = true; |
| 111 | + continue; |
| 112 | + } |
| 113 | + |
| 114 | + QByteArray jsonData = line; |
| 115 | + if (line.startsWith("data: ")) { |
| 116 | + jsonData = line.mid(6); |
| 117 | + } |
| 118 | + |
| 119 | + QJsonParseError error; |
| 120 | + QJsonDocument doc = QJsonDocument::fromJson(jsonData, &error); |
| 121 | + if (doc.isNull()) { |
| 122 | + continue; |
| 123 | + } |
| 124 | + |
| 125 | + QJsonObject obj = doc.object(); |
| 126 | + |
| 127 | + if (obj.contains("content")) { |
| 128 | + QString content = obj["content"].toString(); |
| 129 | + if (!content.isEmpty()) { |
| 130 | + accumulatedResponse += content; |
| 131 | + } |
| 132 | + } else if (obj.contains("choices")) { |
| 133 | + auto message = LLMCore::OpenAIMessage::fromJson(obj); |
| 134 | + if (message.hasError()) { |
| 135 | + LOG_MESSAGE("Error in llama.cpp response: " + message.error); |
| 136 | + continue; |
| 137 | + } |
| 138 | + |
| 139 | + QString content = message.getContent(); |
| 140 | + if (!content.isEmpty()) { |
| 141 | + accumulatedResponse += content; |
| 142 | + } |
| 143 | + |
| 144 | + if (message.isDone()) { |
| 145 | + isDone = true; |
| 146 | + } |
| 147 | + } |
| 148 | + |
| 149 | + if (obj["stop"].toBool()) { |
| 150 | + isDone = true; |
| 151 | + } |
| 152 | + } |
| 153 | + |
| 154 | + return isDone; |
| 155 | +} |
| 156 | + |
| 157 | +QList<QString> LlamaCppProvider::getInstalledModels(const QString &url) |
| 158 | +{ |
| 159 | + return {}; |
| 160 | +} |
| 161 | + |
| 162 | +QList<QString> LlamaCppProvider::validateRequest( |
| 163 | + const QJsonObject &request, LLMCore::TemplateType type) |
| 164 | +{ |
| 165 | + if (type == LLMCore::TemplateType::FIM) { |
| 166 | + const auto infillReq = QJsonObject{ |
| 167 | + {"model", {}}, |
| 168 | + {"input_prefix", {}}, |
| 169 | + {"input_suffix", {}}, |
| 170 | + {"prompt", {}}, |
| 171 | + {"temperature", {}}, |
| 172 | + {"top_p", {}}, |
| 173 | + {"top_k", {}}, |
| 174 | + {"max_tokens", {}}, |
| 175 | + {"frequency_penalty", {}}, |
| 176 | + {"presence_penalty", {}}, |
| 177 | + {"stop", QJsonArray{}}, |
| 178 | + {"stream", {}}}; |
| 179 | + |
| 180 | + return LLMCore::ValidationUtils::validateRequestFields(request, infillReq); |
| 181 | + } else { |
| 182 | + const auto chatReq = QJsonObject{ |
| 183 | + {"model", {}}, |
| 184 | + {"messages", QJsonArray{{QJsonObject{{"role", {}}, {"content", {}}}}}}, |
| 185 | + {"temperature", {}}, |
| 186 | + {"max_tokens", {}}, |
| 187 | + {"top_p", {}}, |
| 188 | + {"top_k", {}}, |
| 189 | + {"frequency_penalty", {}}, |
| 190 | + {"presence_penalty", {}}, |
| 191 | + {"stop", QJsonArray{}}, |
| 192 | + {"stream", {}}}; |
| 193 | + |
| 194 | + return LLMCore::ValidationUtils::validateRequestFields(request, chatReq); |
| 195 | + } |
| 196 | +} |
| 197 | + |
| 198 | +QString LlamaCppProvider::apiKey() const |
| 199 | +{ |
| 200 | + return {}; |
| 201 | +} |
| 202 | + |
| 203 | +void LlamaCppProvider::prepareNetworkRequest(QNetworkRequest &networkRequest) const |
| 204 | +{ |
| 205 | + networkRequest.setHeader(QNetworkRequest::ContentTypeHeader, "application/json"); |
| 206 | +} |
| 207 | + |
| 208 | +LLMCore::ProviderID LlamaCppProvider::providerID() const |
| 209 | +{ |
| 210 | + return LLMCore::ProviderID::LlamaCpp; |
| 211 | +} |
| 212 | + |
| 213 | +} // namespace QodeAssist::Providers |
0 commit comments