Skip to content

Commit bd9b8af

Browse files
committed
exhaustive "llava" match
1 parent 6ae91e7 commit bd9b8af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: operate/models/apis.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ async def get_next_action(model, messages, objective, session_id):
5050
return "coming soon"
5151
if model == "gemini-pro-vision":
5252
return call_gemini_pro_vision(messages, objective), None
53-
if model == "llava" or model == "llava:13b" or "bakllava" or "llava-llama3":
53+
if "llava" in model:
5454
operation = call_ollama_llava(messages, model)
5555
return operation, None
5656
if model == "claude-3":

0 commit comments

Comments
 (0)