docs: fix together model tab (#20032)

This commit is contained in:
Bagatur 2024-04-04 15:33:43 -07:00 committed by GitHub
parent b69af26717
commit 38fb1429fe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -120,9 +120,9 @@ export default function ChatModelTabs(props) {
{
value: "TogetherAI",
label: "TogetherAI",
text: `from langchain_together import Together\n\n${llmVarName} = Together(${togetherParamsOrDefault})`,
text: `from langchain_openai import ChatOpenAI\n\n${llmVarName} = Together(${togetherParamsOrDefault})`,
apiKeyName: "TOGETHER_API_KEY",
packageName: "langchain-together",
packageName: "langchain-openai",
default: false,
shouldHide: hideTogether,
},