# intelligent-agent **Repository Path**: tian-zhonghu/intelligent-agent ## Basic Information - **Project Name**: intelligent-agent - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: ragflow - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-04-21 - **Last Updated**: 2026-04-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Intelligent Agent ## Overview `intelligent-agent` is a Spring Boot based multi-module backend focused on pure agent interaction. The project keeps user authentication, corpus management, conversation memory, expert routing, RAG retrieval, and agent tool execution, while removing the old guide, billing, robot, and navigation-specific business layers. ## Modules - `intelligent-agent-common`: shared constants, exceptions, JWT helpers, common utilities, and configuration properties - `intelligent-agent-pojo`: entities, DTOs, and VOs - `intelligent-agent-server`: controllers, services, agent runtime, retrieval, memory, and model integration ## Core Capabilities - Multi-agent routing for `EXPERT_KNOWLEDGE`, `SMALLTALK`, and `GAME_INTERACTION` - Expert-specific prompt and retrieval orchestration - RAGFlow-backed retrieval with local corpus fallback - User corpus CRUD and conversation history - JWT-based user/admin authentication - Streaming chat with tool execution ## Runtime Main application class: - `intelligent-agent-server/src/main/java/com/hhqs/IntelligentAgentApplication.java` Key configuration files: - `intelligent-agent-server/src/main/resources/application.yml` - `intelligent-agent-server/src/main/resources/application-dev.yml` - `intelligent-agent-server/src/main/resources/application-serve.yml` ## Build ```bash mvn -pl intelligent-agent-server -am -DskipTests compile ``` ## Docker ```bash docker build -t intelligent-agent:1.0 . docker save -o intelligent-agent-1.0.tar intelligent-agent:1.0 ```