mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2026-05-30 02:49:12 -04:00
46 lines
1.4 KiB
C++
46 lines
1.4 KiB
C++
// Copyright (C) 2024-2026 Petr Mironychev
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <QJsonArray>
|
|
#include <QJsonDocument>
|
|
#include <QJsonObject>
|
|
#include <QJsonValue>
|
|
|
|
#include "pluginllmcore/ContextData.hpp"
|
|
|
|
namespace QodeAssist::Templates {
|
|
|
|
inline bool appendOpenAIToolMessage(QJsonArray &messages, const PluginLLMCore::Message &msg)
|
|
{
|
|
if (!msg.toolCalls.isEmpty()) {
|
|
QJsonArray toolCalls;
|
|
for (const auto &call : msg.toolCalls) {
|
|
toolCalls.append(QJsonObject{
|
|
{"id", call.id},
|
|
{"type", "function"},
|
|
{"function",
|
|
QJsonObject{
|
|
{"name", call.name},
|
|
{"arguments",
|
|
QString::fromUtf8(
|
|
QJsonDocument(call.arguments).toJson(QJsonDocument::Compact))}}}});
|
|
}
|
|
QJsonObject toolMessage{{"role", "assistant"}, {"tool_calls", toolCalls}};
|
|
toolMessage["content"] = msg.content.isEmpty() ? QJsonValue() : QJsonValue(msg.content);
|
|
messages.append(toolMessage);
|
|
return true;
|
|
}
|
|
|
|
if (msg.role == QLatin1String("tool")) {
|
|
messages.append(QJsonObject{
|
|
{"role", "tool"}, {"tool_call_id", msg.toolCallId}, {"content", msg.content}});
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
} // namespace QodeAssist::Templates
|