A web-based graphical interface for AI chat interactions with support for multiple AI models and MCP (Model Context Protocol) servers. This project provides an interactive chat interface, secure authentication, and real-time updates, making it a versatile tool for AI-driven conversations.
The project consists of two main components:
1. Frontend: React application with TypeScript, Tailwind CSS, and SWR for data fetching.
2. Backend: Cloudflare Workers with KV and R2 storage.
flowchart TD
Client[React Client] --> Worker[Cloudflare Worker]
Worker --> KV[Cloudflare KV]
Worker --> R2[Cloudflare R2]
Worker --> AI[AI Providers]
subgraph "Frontend"
Client --> Components[React Components]
Components --> State[SWR State]
State --> API[API Layer]
end
subgraph "Backend"
Worker --> Auth[Auth Middleware]
Worker --> Storage[Storage Layer]
Worker --> Provider[Provider Layer]
end
shell
git clone https://github.com/luohy15/y-gui.git
cd y-gui
shell
npm install
backend/wrangler.toml
frontend/src/index.tsx
and backend/src/utils/auth.ts
shell
npm run build
shell
npm run deploy
y-gui/
├── frontend/ # React frontend application
│ ├── src/
│ │ ├── components/ # React components
│ │ ├── contexts/ # React contexts
│ │ ├── utils/ # Utility functions
│ │ └── index.tsx # Entry point
├── backend/ # Cloudflare Worker backend
│ ├── src/
│ │ ├── api/ # API endpoints
│ │ ├── middleware/ # Middleware
│ │ ├── repository/ # Data access
│ │ └── index.ts # Worker entry
├── shared/ # Shared code between frontend and backend
│ └── types/ # TypeScript type definitions
└── memory-bank/ # Project documentation
npm run dev
: Start both frontend and backend development servers npm run dev:frontend
: Start only the frontend development server npm run dev:backend
: Start only the backend development server npm run build
: Build both frontend and backend npm run deploy
: Deploy the backend to Cloudflare Workers npm run test
: Run tests y-gui uses Auth0 for authentication with the following features:
- Universal Login
- Google social login
- Token-based session management
- Secure API access
y-gui supports multiple bot configurations with the following properties:
- Name
- Model
- Base URL
- API Key
- Print Speed
- MCP Servers
- API Type
- Custom API Path
- Max Tokens
- Reasoning Effort
MCP servers can be configured with:
- Name
- Command
- Arguments
- Environment Variables
- URL
- Token
The backend provides RESTful API endpoints for:
- Chat operations
- Bot configuration management
- MCP server configuration management
- Authentication
For more detailed documentation, see the memory-bank directory.
Contributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the MIT License - see the LICENSE file for details.