Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ vtk-prompt "Create a red sphere"
# Advanced options
vtk-prompt "Create a textured cone with 32 resolution" \
--provider anthropic \
--model claude-opus-4-1-20250805 \
--model claude-opus-4-1 \
--max-tokens 4000 \
--rag \
--verbose
Expand Down Expand Up @@ -151,7 +151,7 @@ print(code)

| Provider | Default Model | Base URL |
| ------------- | ------------------------ | ----------------------------------- |
| **anthropic** | claude-opus-4-1-20250805 | https://api.anthropic.com/v1 |
| **anthropic** | claude-opus-4-1 | https://api.anthropic.com/v1 |
| **openai** | gpt-5 | https://api.openai.com/v1 |
| **nim** | meta/llama3-70b-instruct | https://integrate.api.nvidia.com/v1 |
| **custom** | User-defined | User-defined (for local models) |
Expand Down
2 changes: 1 addition & 1 deletion src/vtk_prompt/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def main(
# Set default models based on provider
if model == "gpt-5":
default_models = {
"anthropic": "claude-opus-4-1-20250805",
"anthropic": "claude-opus-4-1",
"gemini": "gemini-2.5-pro",
"nim": "meta/llama3-70b-instruct",
}
Expand Down
2 changes: 1 addition & 1 deletion src/vtk_prompt/generate_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def main(
# Set default models based on provider
if model == "gpt-5":
default_models = {
"anthropic": "claude-opus-4-1-20250805",
"anthropic": "claude-opus-4-1",
"gemini": "gemini-2.5-pro",
"nim": "meta/llama3-70b-instruct",
}
Expand Down
8 changes: 4 additions & 4 deletions src/vtk_prompt/provider_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
OPENAI_MODELS = ["gpt-5", "gpt-4.1", "o4-mini", "o3"]

ANTHROPIC_MODELS = [
"claude-opus-4-1-20250805",
"claude-sonnet-4-20250514",
"claude-3-7-sonnet-20250219",
"claude-opus-4-1",
"claude-sonnet-4",
"claude-3-7-sonnet",
]

GEMINI_MODELS = ["gemini-2.5-pro", "gemini-2.5-flash", "gemini-2.5-flash-lite"]
Expand Down Expand Up @@ -71,7 +71,7 @@ def get_default_model(provider: str) -> str:
"""Get the default/recommended model for a provider."""
defaults = {
"openai": "gpt-5",
"anthropic": "claude-opus-4-1-20250805",
"anthropic": "claude-opus-4-1",
"gemini": "gemini-2.5-pro",
"nim": "meta/llama3-70b-instruct",
}
Expand Down