Skip to content

Commit

Permalink
fix langsmith link (langchain-ai#12939)
Browse files Browse the repository at this point in the history
  • Loading branch information
baskaryan authored and xieqihui committed Nov 21, 2023
1 parent 150fc2a commit dcd84c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/docs/get_started/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ llm = OpenAI(openai_api_key="...")

Many of the applications you build with LangChain will contain multiple steps with multiple invocations of LLM calls.
As these applications get more and more complex, it becomes crucial to be able to inspect what exactly is going on inside your chain or agent.
The best way to do this is with [LangSmith](smith.langchain.com).
The best way to do this is with [LangSmith](https://smith.langchain.com).

Note that LangSmith is not needed, but it is helpful.
If you do want to use LangSmith, after you sign up at the link above, make sure to set your environment variables to start logging traces:
Expand All @@ -61,7 +61,7 @@ export LANGCHAIN_API_KEY=...
## Building an application

Now we can start building our language model application. LangChain provides many modules that can be used to build language model applications.
Modules can be used as stand-alones in simple applications and they can be combined for more complex use cases.
Modules can be used as standalones in simple applications and they can be combined for more complex use cases.

The most common and most important chain that LangChain helps create contains three things:
- LLM: The language model is the core reasoning engine here. In order to work with LangChain, you need to understand the different types of language models and how to work with them.
Expand Down

0 comments on commit dcd84c3

Please sign in to comment.