docs: fix together model tab (#20032)

This commit is contained in:
Bagatur
2024-04-04 15:33:43 -07:00
committed by William Fu-Hinthorn
parent ec9cc05ce0
commit 0b351fb10d

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,
},