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
8 changes: 5 additions & 3 deletions docs/cody/clients/model-configuration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -372,10 +372,12 @@ The following examples illustrate how to use all these settings in conjunction:
// Not "experimental" or "deprecated".
"statusFilter": ["beta", "stable"],

// Allow any models provided by Anthropic or OpenAI.
// Allow any models provided by Anthropic, OpenAI, Google and Fireworks.
"allow": [
"anthropic::*",
"openai::*"
"anthropic::*", // Anthropic models
"openai::*", // OpenAI models
"google::*", // Google Gemini models
"fireworks::*", // Autocomplete models like StarCoder and DeepSeek-V2-Coder hosted on Fireworks
],

// Do not include any models with the Model ID containing "turbo",
Expand Down
Loading