# custom_agent **Repository Path**: lidll/custom_agent ## Basic Information - **Project Name**: custom_agent - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-05-06 - **Last Updated**: 2026-05-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Custom Agent 本地离线 AI Agent Web 服务 ## 前置要求 - JDK 1.8+ - Maven 3.6+ - Node.js 16+ - MySQL 5.7+ ## 数据库配置 1. 创建数据库 `custom_agent` 2. 执行 `src/main/resources/sql/init.sql` 初始化表结构 3. 默认数据库配置: - URL: `jdbc:mysql://localhost:3306/custom_agent` - 用户名: `root` - 密码: `123123` ## 快速开始 ### 后端启动 ```bash mvn spring-boot:run ``` 后端服务将在 `http://localhost:8080` 启动 ### 前端启动 ```bash cd frontend npm install npm run dev ``` 前端服务将在 `http://localhost:3000` 启动 ## 功能特性 - 模型配置管理 - Agent调试页面 - Mock模型支持 - MySQL数据持久化 - 统一API响应格式 ## 技术栈 - Spring Boot 2.7.x - MyBatis Plus 3.5.x - MySQL 8.0 - Vue 3 - Element Plus - Vite