removed model choice that doesn't support tools

Signed-off-by: Eli Waltuch <eliwaltuch@gmail.com>
This commit is contained in:
Eli Waltuch
2025-10-30 21:59:57 +02:00
parent e1b7e2574d
commit aa4fcaf51d

View File

@@ -11,7 +11,6 @@ import yoda_students
MODEL_ENDPOINTS = { MODEL_ENDPOINTS = {
"gpt-4.1-mini": {"type": "openai", "base_url": "https://api.openai.com/v1", "api_key": ""}, "gpt-4.1-mini": {"type": "openai", "base_url": "https://api.openai.com/v1", "api_key": ""},
"claude-haiku-4-5": {"type": "anthropic", "base_url": "https://api.anthropic.com/v1/", "api_key": ""}, "claude-haiku-4-5": {"type": "anthropic", "base_url": "https://api.anthropic.com/v1/", "api_key": ""},
"gemma3n:e2b": {"type": "ollama", "base_url": "http://localhost:11434/v1", "api_key": ""}, # small ollama model that runs on-device
"qwen3-vl:235b-cloud": {"type": "ollama", "base_url": "http://localhost:11434/v1", "api_key": ""}, # large ollama model that runs in the cloud "qwen3-vl:235b-cloud": {"type": "ollama", "base_url": "http://localhost:11434/v1", "api_key": ""}, # large ollama model that runs in the cloud
} }
@@ -195,7 +194,6 @@ def main():
choices=[ choices=[
"gpt-4.1-mini", "gpt-4.1-mini",
"claude-haiku-4-5", "claude-haiku-4-5",
"gemma3n:e2b",
"qwen3-vl:235b-cloud" "qwen3-vl:235b-cloud"
], ],
value="gpt-4.1-mini", value="gpt-4.1-mini",