Disable stop_at_newline by default

This commit is contained in:
oobabooga 2023-03-18 10:55:57 -03:00
parent 7c945cfe8e
commit c753261338
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ settings = {
'name1': 'Person 1',
'name2': 'Person 2',
'context': 'This is a conversation between two people.',
'stop_at_newline': True,
'stop_at_newline': False,
'chat_prompt_size': 2048,
'chat_prompt_size_min': 0,
'chat_prompt_size_max': 2048,

View File

@ -5,7 +5,7 @@
"name1": "Person 1",
"name2": "Person 2",
"context": "This is a conversation between two people.",
"stop_at_newline": true,
"stop_at_newline": false,
"chat_prompt_size": 2048,
"chat_prompt_size_min": 0,
"chat_prompt_size_max": 2048,