Integrate with Langsmith to debug and monitor your LLM app
Embedchain now supports integration with LangSmith.To use langsmith, you need to do the following steps
Have an account on langsmith and keep the environment variables in handy
Set the environments variables in your app so that embedchain has context about it.
Just use embedchain and everything will be logged to LangSmith, so that you can better test and monitor your application.
Lets cover each step in detail.
First make sure that you a LangSmith account created and have all the necessary variables handy. LangSmith has a good documentation on how to get started with their service.
Once you have the account setup, we will need the following environment variables
Copy
Ask AI
export LANGCHAIN_TRACING_V2=trueexport LANGCHAIN_ENDPOINT=https://api.smith.langchain.comexport LANGCHAIN_API_KEY=<your-api-key>export LANGCHAIN_PROJECT=<your-project> # if not specified, defaults to "default"
If you are using Python, you can use the following code to set environment variables