# agent-chat-ui
**Repository Path**: rexrex92/agent-chat-ui
## Basic Information
- **Project Name**: agent-chat-ui
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: main
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2025-11-19
- **Last Updated**: 2026-01-06
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
## Agent Chat UI
该项目基于 [langchain-ai/agent-chat-ui](https://github.com/langchain-ai/agent-chat-ui) 做了少量自定义的修改。
启动方式与详细介绍可参阅 [README_OLD.md](README_OLD.md)
## 改动处
1. 原来仅可接收pdf与图片文件改为了可接收所有文件。
2. 修改了logo与标题。
3. 英文都改成了中文。
## 自定义标题
若需自定义标题,则在 src/config.ts 文件中修改 APP_CONFIG.name的值。
## 自定义logo
logo采用的是svg格式,需将logo的svg内容黏贴于 src/components/icons/langgraph.tsx 文件的 return 处(覆盖原有内容。)
假设某个svg内容如下:
```xml
```
则 src/components/icons/langgraph.tsx 文件的内容覆盖后如下:
```xml
export function LangGraphLogoSVG({
className,
width,
height,
}: {
width?: number;
height?: number;
className?: string;
}) {
return (
);
}
```