File indexing completed on 2024-06-23 04:57:42

0001 /*
0002    SPDX-FileCopyrightText: 2023-2024 Laurent Montel <montel.org>
0003 
0004    SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include "room/plugins/plugintext.h"
0010 class QObject;
0011 #include <QVariant>
0012 
0013 class OllamaTextPlugin : public PluginText
0014 {
0015     Q_OBJECT
0016 public:
0017     explicit OllamaTextPlugin(QObject *parent = nullptr, const QVariantList & = {});
0018     ~OllamaTextPlugin() override;
0019 
0020     [[nodiscard]] PluginTextInterface *createInterface(QObject *parent) override;
0021 };