Skip to content

Commit bbe8dca

Browse files
Revert "Update textgen_webui.py"
This reverts commit 904d526.
1 parent 904d526 commit bbe8dca

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

modules/commands/textgen_webui.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ def handle_custom_chat(logline: LogLine, shared_dict: dict):
4848

4949
message = add_prompts_by_flags(logline.prompt)
5050
message = message.replace("!chat", "")
51-
conversation_history.append({"role": "assistant", "content": config.GREETING}, {"role": "user", "content": message})
51+
conversation_history.append({"role": "assistant", "content": config.GREETING})
52+
conversation_history.append({"role": "user", "content": message})
5253
response = get_custom_model_response(conversation_history)
5354

5455
if response:

0 commit comments

Comments
 (0)