mirror of
https://github.com/nomic-ai/gpt4all.git
synced 2025-06-21 21:19:08 +00:00
undo unintentional partial revert of #3173
Signed-off-by: Jared Van Bortel <jared@nomic.ai>
This commit is contained in:
parent
6bbeac2b9f
commit
cefca34445
@ -157,4 +157,4 @@ ColumnLayout {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -136,4 +136,4 @@ TextArea {
|
|||||||
Accessible.role: Accessible.Paragraph
|
Accessible.role: Accessible.Paragraph
|
||||||
Accessible.name: text
|
Accessible.name: text
|
||||||
Accessible.description: name === "Response: " ? "The response by the model" : "The prompt by the user"
|
Accessible.description: name === "Response: " ? "The response by the model" : "The prompt by the user"
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,11 @@
|
|||||||
#include "chatmodel.h"
|
#include "chatmodel.h"
|
||||||
|
|
||||||
|
#include <QDebug>
|
||||||
|
#include <QMap>
|
||||||
|
#include <QtGlobal>
|
||||||
|
#include <QtLogging>
|
||||||
|
|
||||||
|
|
||||||
QList<ResultInfo> ChatItem::consolidateSources(const QList<ResultInfo> &sources)
|
QList<ResultInfo> ChatItem::consolidateSources(const QList<ResultInfo> &sources)
|
||||||
{
|
{
|
||||||
QMap<QString, ResultInfo> groupedData;
|
QMap<QString, ResultInfo> groupedData;
|
||||||
|
@ -14,8 +14,8 @@ ToolModel *ToolModel::globalInstance()
|
|||||||
}
|
}
|
||||||
|
|
||||||
ToolModel::ToolModel()
|
ToolModel::ToolModel()
|
||||||
: QAbstractListModel(nullptr) {
|
: QAbstractListModel(nullptr)
|
||||||
|
{
|
||||||
QCoreApplication::instance()->installEventFilter(this);
|
QCoreApplication::instance()->installEventFilter(this);
|
||||||
|
|
||||||
Tool* codeInterpreter = new CodeInterpreter;
|
Tool* codeInterpreter = new CodeInterpreter;
|
||||||
|
Loading…
Reference in New Issue
Block a user