Skip to content

Commit

Permalink
add missing $
Browse files Browse the repository at this point in the history
  • Loading branch information
ccurme committed Dec 2, 2024
1 parent 301860a commit efc1096
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/theme/ChatModelTabs.js
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ export default function ChatModelTabs(props) {
{
value: "Databricks",
label: "Databricks",
text: `from databricks_langchain import ChatDatabricks\n\n$os.environ["DATABRICKS_HOST"] = "https://example.staging.cloud.databricks.com/serving-endpoints"\n\n{llmVarName} = ChatDatabricks(${databricksParamsOrDefault})`,
text: `from databricks_langchain import ChatDatabricks\n\n$os.environ["DATABRICKS_HOST"] = "https://example.staging.cloud.databricks.com/serving-endpoints"\n\n${llmVarName} = ChatDatabricks(${databricksParamsOrDefault})`,
apiKeyName: "DATABRICKS_TOKEN",
packageName: "databricks-langchain",
default: false,
Expand Down

0 comments on commit efc1096

Please sign in to comment.