/*
* Copyright (C) 2025 Petr Mironychev
*
* This file is part of QodeAssist.
*
* QodeAssist is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* QodeAssist is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with QodeAssist. If not, see .
*/
#pragma once
#include
namespace QodeAssist::Providers {
class OpenAIMessage : public QObject
{
Q_OBJECT
public:
explicit OpenAIMessage(QObject *parent = nullptr);
void handleContentDelta(const QString &content);
void handleToolCallStart(int index, const QString &id, const QString &name);
void handleToolCallDelta(int index, const QString &argumentsDelta);
void handleToolCallComplete(int index);
void handleFinishReason(const QString &finishReason);
QJsonObject toProviderFormat() const;
QJsonArray createToolResultMessages(const QHash &toolResults) const;
LLMCore::MessageState state() const { return m_state; }
QList getCurrentToolUseContent() const;
void startNewContinuation();
private:
QString m_finishReason;
LLMCore::MessageState m_state = LLMCore::MessageState::Building;
QList m_currentBlocks;
QHash m_pendingToolArguments;
void updateStateFromFinishReason();
LLMCore::TextContent *getOrCreateTextContent();
template
T *addCurrentContent(Args &&...args)
{
T *content = new T(std::forward(args)...);
content->setParent(this);
m_currentBlocks.append(content);
return content;
}
};
} // namespace QodeAssist::Providers