We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f7369b commit 273f202Copy full SHA for 273f202
operate/models/apis.py
@@ -52,7 +52,7 @@ async def get_next_action(model, messages, objective, session_id):
52
return "coming soon"
53
if model == "gemini-pro-vision":
54
return call_gemini_pro_vision(messages, objective), None
55
- if model == "llava" or model == "llava:13b" or "bakllava" or "llava-llama3":
+ if "llava" in model:
56
operation = call_ollama_llava(messages, model)
57
return operation, None
58
if model == "claude-3":
0 commit comments