# deep-agents-ui **Repository Path**: mirrors_trending/deep-agents-ui ## Basic Information - **Project Name**: deep-agents-ui - **Description**: Custom UI for Deep Agents - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-08-29 - **Last Updated**: 2025-10-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Deep Agents UI Deep Agents are generic AI agents that are capable of handling tasks of varying complexity. This is a UI intended to be used alongside the [`deep-agents`](https://github.com/hwchase17/deepagents?ref=blog.langchain.com) package from LangChain. If the term "Deep Agents" is new to you, check out these videos! [What are Deep Agents?](https://www.youtube.com/watch?v=433SmtTc0TA) [Implementing Deep Agents](https://www.youtube.com/watch?v=TTMYJAw5tiA&t=701s) And check out this [video](https://youtu.be/0CE_BhdnZZI) for a walkthrough of this UI. ### Connecting to a Local LangGraph Server Create a `.env.local` file and set two variables ```env NEXT_PUBLIC_DEPLOYMENT_URL="http://127.0.0.1:2024" # Or your server URL NEXT_PUBLIC_AGENT_ID= ``` ### Connecting to a Production LangGraph Deployment on LGP Create a `.env.local` file and set three variables ```env NEXT_PUBLIC_DEPLOYMENT_URL="your agent server URL" NEXT_PUBLIC_AGENT_ID= NEXT_PUBLIC_LANGSMITH_API_KEY= ``` Once you have your environment variables set, install all dependencies and run your app. ```bash npm install npm run dev ``` Open [http://localhost:3000](http://localhost:3000) to test out your deep agent!