mirror of
https://github.com/nomic-ai/gpt4all.git
synced 2025-06-21 13:10:35 +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.name: text
|
||||
Accessible.description: name === "Response: " ? "The response by the model" : "The prompt by the user"
|
||||
}
|
||||
}
|
||||
|
@ -1,5 +1,11 @@
|
||||
#include "chatmodel.h"
|
||||
|
||||
#include <QDebug>
|
||||
#include <QMap>
|
||||
#include <QtGlobal>
|
||||
#include <QtLogging>
|
||||
|
||||
|
||||
QList<ResultInfo> ChatItem::consolidateSources(const QList<ResultInfo> &sources)
|
||||
{
|
||||
QMap<QString, ResultInfo> groupedData;
|
||||
|
@ -14,8 +14,8 @@ ToolModel *ToolModel::globalInstance()
|
||||
}
|
||||
|
||||
ToolModel::ToolModel()
|
||||
: QAbstractListModel(nullptr) {
|
||||
|
||||
: QAbstractListModel(nullptr)
|
||||
{
|
||||
QCoreApplication::instance()->installEventFilter(this);
|
||||
|
||||
Tool* codeInterpreter = new CodeInterpreter;
|
||||
|
Loading…
Reference in New Issue
Block a user