mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-11-21 23:57:58 +01:00
Allow passing your name to the chat API
This commit is contained in:
parent
fb6a00f4e5
commit
74aae34beb
@ -23,6 +23,7 @@ async def run(user_input, history):
|
||||
'mode': 'instruct', # Valid options: 'chat', 'chat-instruct', 'instruct'
|
||||
'character': 'Example',
|
||||
'instruction_template': 'Vicuna-v1.1',
|
||||
'your_name': 'You',
|
||||
|
||||
'regenerate': False,
|
||||
'_continue': False,
|
||||
|
@ -17,6 +17,7 @@ def run(user_input, history):
|
||||
'mode': 'instruct', # Valid options: 'chat', 'chat-instruct', 'instruct'
|
||||
'character': 'Example',
|
||||
'instruction_template': 'Vicuna-v1.1',
|
||||
'your_name': 'You',
|
||||
|
||||
'regenerate': False,
|
||||
'_continue': False,
|
||||
|
@ -41,7 +41,7 @@ def build_parameters(body, chat=False):
|
||||
if chat:
|
||||
character = body.get('character')
|
||||
instruction_template = body.get('instruction_template')
|
||||
name1, name2, _, greeting, context, _ = load_character_memoized(character, shared.settings['name1'], shared.settings['name2'], instruct=False)
|
||||
name1, name2, _, greeting, context, _ = load_character_memoized(character, str(body.get('your_name', shared.setttings['name1'])), shared.settings['name2'], instruct=False)
|
||||
name1_instruct, name2_instruct, _, _, context_instruct, turn_template = load_character_memoized(instruction_template, '', '', instruct=True)
|
||||
generate_params.update({
|
||||
'stop_at_newline': bool(body.get('stop_at_newline', shared.settings['stop_at_newline'])),
|
||||
|
Loading…
Reference in New Issue
Block a user