-
Notifications
You must be signed in to change notification settings - Fork 60
feat(venice): add additional models to Venice.ai provider #112
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -5,7 +5,7 @@ | |||||||||
| "api_key": "$VENICE_API_KEY", | ||||||||||
| "api_endpoint": "https://api.venice.ai/api/v1", | ||||||||||
| "default_large_model_id": "qwen3-235b:strip_thinking_response=true", | ||||||||||
| "default_small_model_id": "mistral-31-24b", | ||||||||||
| "default_small_model_id": "llama-3.2-3b", | ||||||||||
| "models": [ | ||||||||||
| { | ||||||||||
| "id": "qwen3-235b:strip_thinking_response=true", | ||||||||||
|
|
@@ -43,11 +43,47 @@ | |||||||||
| "can_reason": false, | ||||||||||
| "supports_attachments": true | ||||||||||
| }, | ||||||||||
| { | ||||||||||
| "id": "llama-3.1-405b", | ||||||||||
| "name": "Llama 3.1 405B", | ||||||||||
| "cost_per_1m_in": 0.5, | ||||||||||
| "cost_per_1m_out": 0.5, | ||||||||||
| "cost_per_1m_in_cached": 0, | ||||||||||
| "cost_per_1m_out_cached": 0, | ||||||||||
| "context_window": 128000, | ||||||||||
| "default_max_tokens": 4096, | ||||||||||
| "can_reason": true, | ||||||||||
| "supports_attachments": false | ||||||||||
| }, | ||||||||||
| { | ||||||||||
| "id": "llama-3.1-70b", | ||||||||||
| "name": "Llama 3.1 70B", | ||||||||||
| "cost_per_1m_in": 0.3, | ||||||||||
| "cost_per_1m_out": 0.3, | ||||||||||
| "cost_per_1m_in_cached": 0, | ||||||||||
| "cost_per_1m_out_cached": 0, | ||||||||||
| "context_window": 128000, | ||||||||||
| "default_max_tokens": 4096, | ||||||||||
| "can_reason": true, | ||||||||||
| "supports_attachments": false | ||||||||||
| }, | ||||||||||
| { | ||||||||||
| "id": "llama-3.1-8b", | ||||||||||
| "name": "Llama 3.1 8B", | ||||||||||
| "cost_per_1m_in": 0.1, | ||||||||||
| "cost_per_1m_out": 0.1, | ||||||||||
| "cost_per_1m_in_cached": 0, | ||||||||||
| "cost_per_1m_out_cached": 0, | ||||||||||
| "context_window": 128000, | ||||||||||
| "default_max_tokens": 4096, | ||||||||||
| "can_reason": true, | ||||||||||
| "supports_attachments": false | ||||||||||
| }, | ||||||||||
| { | ||||||||||
| "id": "llama-3.2-3b", | ||||||||||
| "name": "Llama 3.2 3B", | ||||||||||
| "cost_per_1m_in": 0.15, | ||||||||||
| "cost_per_1m_out": 0.6, | ||||||||||
| "cost_per_1m_in": 0.05, | ||||||||||
| "cost_per_1m_out": 0.05, | ||||||||||
|
Comment on lines
+85
to
+86
|
||||||||||
| "cost_per_1m_in": 0.05, | |
| "cost_per_1m_out": 0.05, | |
| "cost_per_1m_in": 0.15, | |
| "cost_per_1m_out": 0.6, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All newly added Llama 3.1 models (8B, 70B, 405B) have 'can_reason' set to true, but the existing Llama 3.2 3B and Llama 3.3 70B models have 'can_reason' set to false. This inconsistency is unclear - verify whether the reasoning capability designation is correct across all Llama model versions, as Llama 3.1 and 3.2 are similar model families.