diff --git a/docs/docs/administration/global-env.mdx b/docs/docs/administration/global-env.mdx
index 28dbff22f..27cafa0c1 100644
--- a/docs/docs/administration/global-env.mdx
+++ b/docs/docs/administration/global-env.mdx
@@ -9,23 +9,27 @@ Langflow 1.0 alpha includes the option to add **Global Environment Variables** f
In this example, you'll add the `openai_api_key` credential as a global environment variable to the **Basic Prompting** starter project.
-For more information on the starter flow, see [Basic prompting ](../starter-projects/basic-prompting.mdx).
+For more information on the starter flow, see [Basic prompting](../starter-projects/basic-prompting.mdx).
1. From the Langflow dashboard, click **New Project**.
2. Select **Basic Prompting**.
-3. The **Basic Prompting** flow is created.
-4. To create an environment variable for the **OpenAI** component, in the **OpenAI API Key** field, click the **Globe** button, and then click **Add New Variable**.
+
+The **Basic Prompting** flow is created.
+
+3. To create an environment variable for the **OpenAI** component:
+ 1. In the **OpenAI API Key** field, click the **Globe** button, and then click **Add New Variable**.
+ 2. In the **Variable Name** field, enter `openai_api_key`.
+ 3. In the **Value** field, paste your OpenAI API Key (`sk-...`).
+ 4. For the variable **Type**, select **Credential**.
+ 5. In the **Apply to Fields** field, select **OpenAI API Key** to apply this variable to all fields named **OpenAI API Key**.
+ 6. Click **Save Variable**.
+
+You now have a `openai_api_key` global environment variable for your Langflow project.
You can also create global variables in **Settings** > **Variables and Secrets**.
- 1. In the **Variable Name** field, enter `openai_api_key`.
- 2. In the **Value** field, paste your OpenAI API Key (`sk-...`).
- 3. For the variable **Type**, select **Credential**.
- 4. In the **Apply to Fields** field, select **OpenAI API Key** to apply this variable to all fields named **OpenAI API Key**.
- 5. Click **Save Variable**.
-
-You now have a `openai_api_key` global environment variable for your Langflow project.
-
-5. To view and manage your project's global environment variables, visit **Settings** > **Variables and Secrets**.
+4. To view and manage your project's global environment variables, visit **Settings** > **Variables and Secrets**.
For more on variables in HuggingFace Spaces, see [Managing Secrets](https://huggingface.co/docs/hub/spaces-overview#managing-secrets).
diff --git a/docs/docs/administration/playground.mdx b/docs/docs/administration/playground.mdx
new file mode 100644
index 000000000..c2f7ff5b1
--- /dev/null
+++ b/docs/docs/administration/playground.mdx
@@ -0,0 +1,29 @@
+import ThemedImage from "@theme/ThemedImage";
+import useBaseUrl from "@docusaurus/useBaseUrl";
+import ZoomableImage from "/src/theme/ZoomableImage.js";
+import ReactPlayer from "react-player";
+import Admonition from "@theme/Admonition";
+
+# Playground
+
+In Langflow 1.0 alpha, the **Playground** replaces the **Interaction Panel**.
+
+The **Playground** provides an interface for interacting with flows without opening them in the flow editor.
+
+It even works for flows hosted on the Langflow store!
+
+As long as you have a flow's environment variables set, you can run it by clicking the **Playground** button.
+
+1. From your **Collections** page, click **Playground** in one of your flows.
+The **Playground** window opens.
+
+
+
+2. Chat with your bot as you normally would, all without having to open the editor.
diff --git a/docs/sidebars.js b/docs/sidebars.js
index cf66f270f..848eaaf8e 100644
--- a/docs/sidebars.js
+++ b/docs/sidebars.js
@@ -40,6 +40,7 @@ module.exports = {
"administration/login",
"administration/api",
"administration/cli",
+ "administration/playground",
"administration/global-env",
"administration/components",
"administration/collection",
diff --git a/docs/static/img/playground-chat.png b/docs/static/img/playground-chat.png
new file mode 100644
index 000000000..d2625c28f
Binary files /dev/null and b/docs/static/img/playground-chat.png differ