File tree Expand file tree Collapse file tree
src/arduino/app_bricks/cloud_llm Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -96,8 +96,8 @@ You can select a model using the `CloudModel` enum or by passing the correspondi
9696
9797| Enum Constant | Raw String ID | Provider Documentation |
9898| :---------------------------- | :------------------------- | :-------------------------------------------------------------------------- |
99- | ` CloudModel.ANTHROPIC_CLAUDE ` | ` claude-3-7- sonnet-latest ` | [ Anthropic Models] ( https://docs.anthropic.com/en/docs/about-claude/models ) |
100- | ` CloudModel.OPENAI_GPT ` | ` gpt-4o -mini ` | [ OpenAI Models] ( https://platform.openai.com/docs/models ) |
99+ | ` CloudModel.ANTHROPIC_CLAUDE ` | ` claude-sonnet-4.6 ` | [ Anthropic Models] ( https://docs.anthropic.com/en/docs/about-claude/models ) |
100+ | ` CloudModel.OPENAI_GPT ` | ` gpt-5.4 -mini ` | [ OpenAI Models] ( https://platform.openai.com/docs/models ) |
101101| ` CloudModel.GOOGLE_GEMINI ` | ` gemini-2.5-flash ` | [ Google Gemini Models] ( https://ai.google.dev/gemini-api/docs/models/gemini ) |
102102
103103## Methods
Original file line number Diff line number Diff line change 66
77
88class CloudModel (StrEnum ):
9- ANTHROPIC_CLAUDE = "claude-sonnet-4-5 " # https://platform.claude.com/docs/en/about-claude/models/overview#latest-models-comparison
10- OPENAI_GPT = "gpt-5-mini" # https://platform.openai.com/docs/models
9+ ANTHROPIC_CLAUDE = "claude-sonnet-4-6 " # https://platform.claude.com/docs/en/about-claude/models/overview#latest-models-comparison
10+ OPENAI_GPT = "gpt-5.4 -mini" # https://platform.openai.com/docs/models
1111 GOOGLE_GEMINI = "gemini-2.5-flash" # https://ai.google.dev/gemini-api/docs/models
1212
1313
You can’t perform that action at this time.
0 commit comments