Skip to content
Merged
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
14 changes: 12 additions & 2 deletions crates/goose/src/providers/snowflake.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,18 @@ use crate::impl_provider_default;
use crate::model::ModelConfig;
use rmcp::model::Tool;

pub const SNOWFLAKE_DEFAULT_MODEL: &str = "claude-4-sonnet";
pub const SNOWFLAKE_KNOWN_MODELS: &[&str] = &["claude-4-sonnet", "claude-3-7-sonnet"];
pub const SNOWFLAKE_DEFAULT_MODEL: &str = "claude-sonnet-4-5";
pub const SNOWFLAKE_KNOWN_MODELS: &[&str] = &[
// Claude 4.5 series
"claude-sonnet-4-5",
"claude-haiku-4-5",
// Claude 4 series
"claude-4-sonnet",
"claude-4-opus",
// Claude 3 series
"claude-3-7-sonnet",
"claude-3-5-sonnet",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you don't need the comments I think if you have the names

];

pub const SNOWFLAKE_DOC_URL: &str =
"https://docs.snowflake.com/user-guide/snowflake-cortex/aisql#choosing-a-model";
Expand Down
Loading