Merge pull request #44 from langchain-ai/brace/rename-agent-chat-ui
fix: Rename to Agent Chat UI
This commit is contained in:
10
README.md
10
README.md
@@ -1,18 +1,18 @@
|
|||||||
# Chat LangGraph
|
# Agent Chat UI
|
||||||
|
|
||||||
Chat LangGraph is a Vite + React application which enables chatting with any LangGraph server with a `messages` key through a chat interface.
|
Agent Chat UI is a Vite + React application which enables chatting with any LangGraph server with a `messages` key through a chat interface.
|
||||||
|
|
||||||
## Setup
|
## Setup
|
||||||
|
|
||||||
> [!TIP]
|
> [!TIP]
|
||||||
> Don't want to run the app locally? Use the deployed site here: [chat-langgraph.vercel.app](https://chat-langgraph.vercel.app)!
|
> Don't want to run the app locally? Use the deployed site here: [agent-chat-ui.vercel.app](https://agentchat.vercel.app)!
|
||||||
|
|
||||||
First, clone the repository:
|
First, clone the repository:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/langchain-ai/chat-langgraph.git
|
git clone https://github.com/langchain-ai/agent-chat-ui.git
|
||||||
|
|
||||||
cd chat-langgraph
|
cd agent-chat-ui
|
||||||
```
|
```
|
||||||
|
|
||||||
Install dependencies:
|
Install dependencies:
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
|
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title>Chat LangGraph</title>
|
<title>Agent Chat</title>
|
||||||
<link href="/src/styles.css" rel="stylesheet" />
|
<link href="/src/styles.css" rel="stylesheet" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|||||||
@@ -250,7 +250,7 @@ export function Thread() {
|
|||||||
>
|
>
|
||||||
<LangGraphLogoSVG width={32} height={32} />
|
<LangGraphLogoSVG width={32} height={32} />
|
||||||
<span className="text-xl font-semibold tracking-tight">
|
<span className="text-xl font-semibold tracking-tight">
|
||||||
Chat LangGraph
|
Agent Chat
|
||||||
</span>
|
</span>
|
||||||
</motion.button>
|
</motion.button>
|
||||||
</div>
|
</div>
|
||||||
@@ -308,7 +308,7 @@ export function Thread() {
|
|||||||
<div className="flex gap-3 items-center">
|
<div className="flex gap-3 items-center">
|
||||||
<LangGraphLogoSVG className="flex-shrink-0 h-8" />
|
<LangGraphLogoSVG className="flex-shrink-0 h-8" />
|
||||||
<h1 className="text-2xl font-semibold tracking-tight">
|
<h1 className="text-2xl font-semibold tracking-tight">
|
||||||
Chat LangGraph
|
Agent Chat
|
||||||
</h1>
|
</h1>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|||||||
@@ -101,12 +101,12 @@ export const StreamProvider: React.FC<{ children: ReactNode }> = ({
|
|||||||
<div className="flex items-start flex-col gap-2">
|
<div className="flex items-start flex-col gap-2">
|
||||||
<LangGraphLogoSVG className="h-7" />
|
<LangGraphLogoSVG className="h-7" />
|
||||||
<h1 className="text-xl font-semibold tracking-tight">
|
<h1 className="text-xl font-semibold tracking-tight">
|
||||||
Chat LangGraph
|
Agent Chat
|
||||||
</h1>
|
</h1>
|
||||||
</div>
|
</div>
|
||||||
<p className="text-muted-foreground">
|
<p className="text-muted-foreground">
|
||||||
Welcome to Chat LangGraph! Before you get started, you need to
|
Welcome to Agent Chat! Before you get started, you need to enter
|
||||||
enter the URL of the deployment and the assistant / graph ID.
|
the URL of the deployment and the assistant / graph ID.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<form
|
<form
|
||||||
|
|||||||
Reference in New Issue
Block a user