You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Empower every employee to converse with business systems through natural language
🎯 What is EvolveHub?
🧬
EvolveHub = Enterprise AI Middleware Platform
EvolveHub is an enterprise AI middleware service system built on AgentScope-Java. Through a unified AI capability access layer, departments can quickly integrate intelligent conversation, knowledge base retrieval and other AI capabilities by connecting MCP services or A2A protocol + Skills packages, without redundant development.
🪄 Core Values
Unified Access
Knowledge Accumulation
Intelligent Conversation
Security & Control
Fast integration via MCP/A2A
Centralized knowledge base, intelligent retrieval
Natural language interaction, tool execution, task automation
Multi-level permissions, on-premise deployment
🏗️ Platform Architecture
graph TB
subgraph "👤 User Layer"
WEB[Web Console]
API[OpenAPI]
end
subgraph "🌐 Access Layer"
GW[API Gateway<br/>Load Balance / Routing / Rate Limit / Auth]
end
subgraph "⚙️ Service Layer"
AUTH["Auth Service :8081<br/>Authentication (Sa-Token)"]
AI["AI Platform :8082<br/>AI Middleware Core"]
ADMIN["Admin Service :8083<br/>Admin Management"]
end
subgraph "🤖 Agent Layer"
REACT[ReActAgent<br/>Reasoning Engine]
TOOL[Toolkit<br/>MCP Tools]
MEM[Memory<br/>Memory Management]
GUARD[ToolGuard<br/>Security Guardrail]
end
subgraph "🔌 Extension Services"
CRON[Cron Scheduler]
APRV[Approval Workflow]
SKILL[Skill Manager]
STATS[Token Stats]
end
subgraph "💾 Data Layer"
PG[("MySQL<br/>Business Data")]
RD[("Redis<br/>Cache / Short-term Memory")]
MV[("Milvus<br/>Vector Store")]
MI[("MinIO<br/>File Storage")]
end
WEB --> GW
API --> GW
GW --> AUTH
GW --> AI
GW --> ADMIN
AI --> REACT
REACT --> TOOL
REACT --> MEM
REACT --> GUARD
AI --> CRON
AI --> APRV
AI --> SKILL
AI --> STATS
AUTH --> PG
AUTH --> RD
AI --> PG
AI --> RD
AI --> MV
ADMIN --> MI
style GW fill:#FF6B6B,color:#fff
style AI fill:#4ECDC4,color:#fff
style REACT fill:#9B59B6,color:#fff
style TOOL fill:#6DB33F,color:#fff
style GUARD fill:#E74C3C,color:#fff