Fix for remote model templates when messages contain xml. (#3318)

Signed-off-by: Adam Treat <treat.adam@gmail.com>
Signed-off-by: AT <manyoso@users.noreply.github.com>
Co-authored-by: Jared Van Bortel <jared@nomic.ai>
This commit is contained in:
AT 2024-12-18 13:39:51 -05:00 committed by GitHub
parent aa84e2da39
commit 5ab70da2ae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 10 additions and 5 deletions

View File

@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
## [Unreleased]
### Fixed
- Fix remote model template to allow for XML in messages ([#3318](https://github.com/nomic-ai/gpt4all/pull/3318))
## [3.5.3] - 2024-12-16 ## [3.5.3] - 2024-12-16
### Fixed ### Fixed

View File

@ -62,15 +62,15 @@ static const QString RMODEL_CHAT_TEMPLATE = uR"(<chat>
{%- if loop.first %} {%- if loop.first %}
{{- '### Context:\n' }} {{- '### Context:\n' }}
{%- endif %} {%- endif %}
{{- 'Collection: ' + source.collection + '\n' + {{- ('Collection: ' + source.collection + '\n' +
'Path: ' + source.path + '\n' + 'Path: ' + source.path + '\n' +
'Excerpt: ' + source.text + '\n\n' }} 'Excerpt: ' + source.text + '\n\n') | escape }}
{%- endfor %} {%- endfor %}
{%- endif %} {%- endif %}
{%- for attachment in message.prompt_attachments %} {%- for attachment in message.prompt_attachments %}
{{- attachment.processed_content + '\n\n' }} {{- (attachment.processed_content + '\n\n') | escape }}
{%- endfor %} {%- endfor %}
{{- message.content }} {{- message.content | escape }}
{{- '</' + message['role'] + '>' }} {{- '</' + message['role'] + '>' }}
{%- endfor %} {%- endfor %}
</chat>)"_s; </chat>)"_s;