diff --git a/docs/docs/getting-started/workspace.mdx b/docs/docs/getting-started/workspace.mdx
index f937501cf..aefe38751 100644
--- a/docs/docs/getting-started/workspace.mdx
+++ b/docs/docs/getting-started/workspace.mdx
@@ -106,7 +106,7 @@ Components are the building blocks of flows. They consist of inputs, outputs, an
style={{ width: "100%", margin: "20px auto" }}
/>
-
+{/*
*/}
{/\* On the top right corner of the component, you'll find the component status icon ().
Build the flow by clicking the **Playground** at the bottom right of the workspace.
@@ -114,7 +114,7 @@ Build the flow by clicking the **Playgr
Once the validation is complete, the status of each validated component should turn green ().
To debug, hover over the component status to see the outputs. \*/}
-
+{/*
*/}
{/\* ### Multiple outputs
diff --git a/docs/docs/integrations/langsmith/intro.mdx b/docs/docs/integrations/langsmith/intro.mdx
new file mode 100644
index 000000000..68f28a891
--- /dev/null
+++ b/docs/docs/integrations/langsmith/intro.mdx
@@ -0,0 +1,46 @@
+import Admonition from "@theme/Admonition";
+import ThemedImage from "@theme/ThemedImage";
+import useBaseUrl from "@docusaurus/useBaseUrl";
+import ZoomableImage from "/src/theme/ZoomableImage.js";
+
+# LangSmith
+
+LangSmith is a full-lifecycle DevOps service from LangChain that provides monitoring and observability. To integrate with Langflow, just add your LangChain API key as a Langflow environment variable and you are good to go!
+
+## Step-by-step Configuration
+
+1. Obtain your LangChain API key from https://smith.langchain.com
+2. Add the following keys to Langflow .env file:
+
+```bash
+LANGCHAIN_API_KEY="your-api-key"
+LANGCHAIN_PROJECT="your-project-name"
+```
+
+or export the environment variables in your terminal:
+
+```bash
+export LANGCHAIN_API_KEY="your-api-key"
+export LANGCHAIN_PROJECT="your-project-name"
+```
+
+3. Restart Langflow using `langflow run --env-file .env`
+4. Run any project and check the LangSmith dashboard for monitoring and observability.
+
+
+
+
diff --git a/docs/sidebars.js b/docs/sidebars.js
index 37ef65f14..20f5dafb9 100644
--- a/docs/sidebars.js
+++ b/docs/sidebars.js
@@ -141,6 +141,7 @@ module.exports = {
label: "Integrations",
collapsed: false,
items: [
+ "integrations/langsmith/intro",
{
type: "category",
label: "Notion",
@@ -157,6 +158,13 @@ module.exports = {
"integrations/notion/page-content-viewer",
],
},
+ // {
+ // type: "category",
+ // label: "LangSmith",
+ // items: [
+ // ,
+ // ],
+ // },
],
},
],
diff --git a/docs/static/img/langsmith-flow.png b/docs/static/img/langsmith-flow.png
new file mode 100644
index 000000000..c7e44edd5
Binary files /dev/null and b/docs/static/img/langsmith-flow.png differ
diff --git a/docs/static/img/langsmith-trace.png b/docs/static/img/langsmith-trace.png
new file mode 100644
index 000000000..47e007a78
Binary files /dev/null and b/docs/static/img/langsmith-trace.png differ