Skip to content

Commit

Permalink
docs: Update ChatModelTabs defaults (#6187)
Browse files Browse the repository at this point in the history
  • Loading branch information
baskaryan authored Jul 23, 2024
1 parent 4d2b5b7 commit a8e74c1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/core_docs/src/theme/ChatModelTabs.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ function InstallationInfo({ children }) {
}

const DEFAULTS = {
openaiParams: `{\n model: "gpt-3.5-turbo",\n temperature: 0\n}`,
openaiParams: `{\n model: "gpt-4o-mini",\n temperature: 0\n}`,
anthropicParams: `{\n model: "claude-3-5-sonnet-20240620",\n temperature: 0\n}`,
fireworksParams: `{\n model: "accounts/fireworks/models/firefunction-v1",\n temperature: 0\n}`,
fireworksParams: `{\n model: "accounts/fireworks/models/llama-v3p1-70b-instruct",\n temperature: 0\n}`,
mistralParams: `{\n model: "mistral-large-latest",\n temperature: 0\n}`,
groqParams: `{\n model: "mixtral-8x7b-32768",\n temperature: 0\n}`,
vertexParams: `{\n model: "gemini-1.5-pro",\n temperature: 0\n}`,
vertexParams: `{\n model: "gemini-1.5-flash",\n temperature: 0\n}`,
};

const MODELS_WSO = ["openai", "anthropic", "mistral", "groq", "vertex"];
Expand Down

0 comments on commit a8e74c1

Please sign in to comment.