Skip to main content
B
Blue
January 17, 2026
Download from GitHub

Introduction to Eigent

Eigent is a multi-agent desktop application based on CAMEL-AI, with 3.7k+ Stars on GitHub.

Core Features

  • Multi-Agent Collaboration: Specialized Agents like Developer, Search, Document work in parallel
  • Custom Agents: Support for creating custom Agents based on your needs
  • Clear Task Monitoring: Clean and elegant interface for clearly monitoring the multi-Agent collaboration process

Quick Start

Step 1: Get MiniMax API Key

How to get:

Step 2: Download and Install Eigent

1

Install Node.js

Make sure Node.js (version 18 ~ 22) and npm are installed
2

Clone Repository

git clone https://github.com/eigent-ai/eigent.git
cd eigent
3

Install Dependencies

npm install

Step 3: Launch Eigent Application

Run the following command in the terminal to start the Eigent application:
npm run dev
This article runs Eigent in self-hosted (community edition) mode. First-time users need to register on the Eigent website, then log in with your account in the local Eigent application. First-time startup requires installing environment dependencies, which may take some time. Please be patient.

Step 4: Configure MiniMax M2.1 Model

Click: Logo in upper left → Settings → Models tab to enter the model configuration interface. Eigent configuration interface Scroll down to the MiniMax model configuration area and configure as follows:
Configuration ItemValue
API Key SettingYour MiniMax API Key
API Host Settinghttps://api.minimax.io/v1
Model Type SettingMiniMax-M2.1
Click the Save button to save the configuration. A success prompt will appear when configuration is complete. M2.1 model settings

Step 5: Create Project and Start Task

Enter the Project interface, click the ”+” button in the upper right corner to create a new Project, and enter the new Project interface. Input your task requirements and send them to the Agent for execution. Project interface

Demo

Task Requirements

We will test a complex travel planning task:
Based on personal travel preferences, desired attractions, travel dates, and total budget, provide a detailed itinerary including attractions, hotels, transportation, dining, etc., ultimately creating an HTML travel handbook.
Task description

Task Execution Process

1

Phase 1: Task Planning

The MiniMax M2.1 model has built-in thinking capability. After sending the task requirements in Eigent, it first goes through deep thinking to clarify task requirements and goals, dividing them into 7 steps:
  1. Search for attractions
  2. Search for panda attractions
  3. Search for dining and restaurants
  4. Search for transportation
  5. Search for practical tips
  6. Create 7-day itinerary
  7. Create HTML handbook
Task planning
2

Phase 2: Conducting Search

Based on task planning, the MiniMax M2.1 model acts as a Search Agent calling search tools to conduct search tasks. In the Eigent framework, 5 search tasks execute in parallel.Executing search
3

Phase 3: Compiling into Handbook

After the Search Agent completes information gathering, the overall task progress updates. MiniMax M2.1 takes on the role of Document Agent, receiving the gathered materials and arranging the itinerary and writing the HTML travel handbook according to task requirements.Travel handbook displayTravel handbook display

Summary

Through this tutorial, we demonstrated how to integrate the MiniMax M2.1 model into the Eigent multi-agent framework and complete complex tasks:
  • MiniMax M2.1’s thinking capability enables it to autonomously plan execution steps for complex tasks
  • Multi-Agent collaboration allows search, document generation, and other tasks to execute in parallel, significantly improving efficiency
  • The final output is a complete HTML travel handbook, demonstrating MiniMax M2.1’s excellent performance in long-horizon planning tasks