File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
12
12
### Fixed
13
13
- Fix remote model template to allow for XML in messages ([ #3318 ] ( https://github.com/nomic-ai/gpt4all/pull/3318 ) )
14
14
- Fix Jinja2Cpp bug that broke system message detection in chat templates ([ #3325 ] ( https://github.com/nomic-ai/gpt4all/pull/3325 ) )
15
+ - Fix LocalDocs sources displaying in unconsolidated form after v3.5.0 ([ #3328 ] ( https://github.com/nomic-ai/gpt4all/pull/3328 ) )
15
16
16
17
## [ 3.5.3] - 2024-12-16
17
18
Original file line number Diff line number Diff line change @@ -275,7 +275,7 @@ class ChatModel : public QAbstractListModel
275
275
QList<ResultInfo> data;
276
276
if (item->type () == ChatItem::Type::Response) {
277
277
if (auto prompt = getPeerUnlocked (item))
278
- data = (*prompt)->consolidatedSources ;
278
+ data = (*prompt)->sources ;
279
279
}
280
280
return QVariant::fromValue (data);
281
281
}
@@ -284,7 +284,7 @@ class ChatModel : public QAbstractListModel
284
284
QList<ResultInfo> data;
285
285
if (item->type () == ChatItem::Type::Response) {
286
286
if (auto prompt = getPeerUnlocked (item))
287
- data = (*prompt)->sources ;
287
+ data = (*prompt)->consolidatedSources ;
288
288
}
289
289
return QVariant::fromValue (data);
290
290
}
You can’t perform that action at this time.
0 commit comments