mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-10-01 01:26:03 -04:00
API: minor fix
This commit is contained in:
parent
821dd65fb3
commit
aa575119e6
@ -154,7 +154,7 @@ def convert_history(history):
|
||||
system_message = ""
|
||||
|
||||
# Multimodal: convert OpenAI format to multimodal extension format
|
||||
if any(isinstance(entry['content'], list) for entry in history):
|
||||
if any('content' in entry and isinstance(entry['content'], list) for entry in history):
|
||||
new_history = []
|
||||
for entry in history:
|
||||
if isinstance(entry['content'], list):
|
||||
|
Loading…
Reference in New Issue
Block a user