From 262637c3a410f51df362166c8488dc13741c1f67 Mon Sep 17 00:00:00 2001 From: Sean Date: Sat, 7 Sep 2024 00:31:09 -0700 Subject: [PATCH] Update LLM-Connections.md (#1181) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update LLM-Connections.md * Update LLM-Connections.md --------- Co-authored-by: João Moura --- docs/how-to/LLM-Connections.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/how-to/LLM-Connections.md b/docs/how-to/LLM-Connections.md index 222554535..c629d90ee 100644 --- a/docs/how-to/LLM-Connections.md +++ b/docs/how-to/LLM-Connections.md @@ -143,13 +143,12 @@ os.environ["OPENAI_MODEL_NAME"]='mistral-small' from langchain_community.chat_models.solar import SolarChat ``` ```sh -os.environ["SOLAR_API_BASE"]='https://api.upstage.ai/v1/solar' -os.environ["SOLAR_API_KEY"]='your-solar-api-key' -``` +os.environ[SOLAR_API_BASE]="https://api.upstage.ai/v1/solar" +os.environ[SOLAR_API_KEY]="your-solar-api-key" # Free developer API key available here: https://console.upstage.ai/services/solar # Langchain Example: https://github.com/langchain-ai/langchain/pull/18556 - +``` ### Cohere ```python