### Install Dependencies and Run Deep Agents UI Source: https://github.com/langchain-ai/deep-agents-ui/blob/main/README.md Installs project dependencies using npm and starts the development server for the Deep Agents UI. Assumes environment variables are already configured. ```bash npm install npm run dev ``` -------------------------------- ### Configure Local LangGraph Server Connection Source: https://github.com/langchain-ai/deep-agents-ui/blob/main/README.md Sets environment variables in a .env.local file to connect the Deep Agents UI to a local LangGraph server. Requires the deployment URL and agent ID. ```env NEXT_PUBLIC_DEPLOYMENT_URL="http://127.0.0.1:2024" # Or your server URL NEXT_PUBLIC_AGENT_ID= ``` -------------------------------- ### Configure Production LangGraph Deployment Connection Source: https://github.com/langchain-ai/deep-agents-ui/blob/main/README.md Sets environment variables in a .env.local file to connect the Deep Agents UI to a production LangGraph deployment. Requires deployment URL, agent ID, and LangSmith API key. ```env NEXT_PUBLIC_DEPLOYMENT_URL="your agent server URL" NEXT_PUBLIC_AGENT_ID= NEXT_PUBLIC_LANGSMITH_API_KEY= ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.