能力标签
agenticSeek Agent工作流
🛠
AI工具

agenticSeek Agent工作流

基于 Python · 开源 AI 工具,GitHub 社区精选
英文名:agenticSeek
⭐ 26.4k Stars 🍴 3.0k Forks 💻 Python 📄 GPL-3.0 🏷 AI 8.5分
8.5AI 综合评分
AI智能体本地部署工作流自动化开源框架无API调用
✦ AI Skill Hub 推荐

AI Skill Hub 强烈推荐:agenticSeek Agent工作流 是一款优质的AI工具。在 GitHub 上收获超过 26.4k 颗 Star,AI 综合评分 8.5 分,在同类工具中表现稳健。如果你正在寻找可靠的AI工具解决方案,这是一个值得深入了解的选择。

📚 深度解析

agenticSeek Agent工作流 是一款基于 Python 的开源工具,在 GitHub 上收获 26k+ Star,是AI智能体、本地部署、工作流自动化、开源框架领域中的优质开源项目。开源工具的最大优势在于代码完全透明,你可以审计每一行代码的安全性,也可以根据自身需求进行二次开发和定制。

**为什么要使用开源工具而非商业 SaaS?**
对于个人开发者和有隐私需求的用户,本地部署的开源工具意味着数据不离本机,不受第三方服务商的数据政策约束。同时,开源工具通常没有使用次数限制和月度费用,一次安装即可长期使用,对于高频使用场景的总拥有成本(TCO)远低于订阅制商业工具。

**安装与环境准备**
agenticSeek Agent工作流 依赖 Python 运行环境。建议通过 pyenv(Python)或 nvm(Node.js)管理 Python 版本,避免全局环境污染。对于新手用户,推荐先创建虚拟环境(python -m venv venv && source venv/bin/activate),再安装依赖,这样即使出现问题也可以随时删除虚拟环境重新开始,不影响系统稳定性。

**社区与维护**
GitHub Issue 和 Discussion 是获取帮助的最快渠道。在提问前建议先检查 Closed Issues(已关闭的问题),大多数常见问题都已有解答。遇到 Bug 时,提供 pip list 的输出、完整错误堆栈和最小可复现示例,能显著提高开发者响应速度。AI Skill Hub 将持续追踪 agenticSeek Agent工作流 的版本更新,及时通知重要功能变化。

📋 工具概览

agenticSeek Agent工作流 是一款基于 Python 开发的开源工具,专注于 AI智能体、本地部署、工作流自动化 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。

GitHub Stars
⭐ 26.4k
开发语言
Python
支持平台
Windows / macOS / Linux
维护状态
活跃维护,更新频繁
开源协议
GPL-3.0
AI 综合评分
8.5 分
工具类型
AI工具
Forks
3.0k

📖 中文文档

以下内容由 AI Skill Hub 根据项目信息自动整理,如需查看完整原始文档请访问底部「原始来源」。

agenticSeek Agent工作流 是一款基于 Python 开发的开源工具,专注于 AI智能体、本地部署、工作流自动化 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。

📌 核心特色
  • 开源免费,支持本地部署,数据完全自主可控
  • 活跃的 GitHub 开源社区,持续迭代更新
  • 提供详细文档和使用示例,新手友好
  • 支持自定义配置,灵活适配不同使用环境
  • 可作为基础组件集成进现有技术栈或进行二次开发
🎯 主要使用场景
  • 本地部署运行,保护数据隐私,满足合规要求
  • 自定义集成到现有系统,扩展技术栈能力
  • 作为开源基础组件进行商业化二次开发
以下安装命令基于项目开发语言和类型自动生成,实际以官方 README 为准。
安装命令
# 方式一:pip 安装(推荐)
pip install agenticseek

# 方式二:虚拟环境安装(推荐生产环境)
python -m venv .venv
source .venv/bin/activate  # Windows: .venv\Scripts\activate
pip install agenticseek

# 方式三:从源码安装(获取最新功能)
git clone https://github.com/Fosowl/agenticSeek
cd agenticSeek
pip install -e .

# 验证安装
python -c "import agenticseek; print('安装成功')"
📋 安装步骤说明
  1. 访问 GitHub 仓库页面
  2. 按照 README 文档完成依赖安装
  3. 根据系统环境完成初始化配置
  4. 参考官方示例或文档开始使用
  5. 遇到问题可在 GitHub Issues 中查找解答
以下用法示例由 AI Skill Hub 整理,涵盖最常见的使用场景。
常用命令 / 代码示例
# 命令行使用
agenticseek --help

# 基本用法
agenticseek input_file -o output_file

# Python 代码中调用
import agenticseek

# 示例
result = agenticseek.process("input")
print(result)
以下配置示例基于典型使用场景生成,具体参数请参照官方文档调整。
配置示例
# agenticseek 配置文件示例(config.yml)
app:
  name: "agenticseek"
  debug: false
  log_level: "INFO"

# 运行时指定配置文件
agenticseek --config config.yml

# 或通过环境变量配置
export AGENTICSEEK_API_KEY="your-key"
export AGENTICSEEK_OUTPUT_DIR="./output"
📑 README 深度解析 真实文档 完整度 60/100 查看 GitHub 原文 →
以下内容由系统直接从 GitHub README 解析整理,保留代码块、表格与列表结构。

Prerequisites

Before you begin, ensure you have the following software installed:

  • Git: For cloning the repository. Download Git
  • Python 3.10.x: We strongly recommend using Python version 3.10.x. Using other versions might lead to dependency errors. Download Python 3.10 (pick a 3.10.x version).
  • Docker Engine & Docker Compose: For running bundled services like SearxNG.
  • Install Docker Desktop (which includes Docker Compose V2): Windows | Mac | Linux
  • Alternatively, install Docker Engine and Docker Compose separately on Linux: Docker Engine | Docker Compose (ensure you install Compose V2, e.g., sudo apt-get install docker-compose-plugin).

1. **Clone the repository and setup**

git clone https://github.com/Fosowl/agenticSeek.git
cd agenticSeek
mv .env.example .env

3. **Start Docker**

Make sure Docker is installed and running on your system. You can start Docker using the following commands:

- On Linux/macOS: Open a terminal and run:

    sudo systemctl start docker
    
Or launch Docker Desktop from your applications menu if installed.

- On Windows: Start Docker Desktop from the Start menu.

You can verify Docker is running by executing:

docker info
If you see information about your Docker installation, it is running correctly.

See the table of Local Providers below for a summary.

Next step: Run AgenticSeek locally

See the Troubleshooting section if you are having issues. If your hardware can't run LLMs locally, see Setup to run with an API. For detailed config.ini explanations, see Config Section.

---

Setup for running LLM locally on your machine

Hardware Requirements:

To run LLMs locally, you'll need sufficient hardware. At a minimum, a GPU capable of running Magistral, Qwen or Deepseek 14B is required. See the FAQ for detailed model/performance recommendations.

Setup your local provider

Start your local provider (for example with ollama):

Unless you wish to to run AgenticSeek on host (CLI mode), export or set the provider listen address:

export OLLAMA_HOST=0.0.0.0:11434

Then, start you provider:

ollama serve

See below for a list of local supported provider.

Update the config.ini

Change the config.ini file to set the provider_name to a supported provider and provider_model to a LLM supported by your provider. We recommend reasoning model such as Magistral or Deepseek.

See the FAQ at the end of the README for required hardware.

[MAIN]
is_local = True # Whenever you are running locally or with remote provider.
provider_name = ollama # or lm-studio, openai, etc..
provider_model = deepseek-r1:14b # choose a model that fit your hardware
provider_server_address = 127.0.0.1:11434
agent_name = Jarvis # name of your AI
recover_last_session = True # whenever to recover the previous session
save_session = True # whenever to remember the current session
speak = False # text to speech
listen = False # Speech to text, only for CLI, experimental
jarvis_personality = False # Whenever to use a more "Jarvis" like personality (experimental)
languages = en zh # The list of languages, Text to speech will default to the first language on the list
[BROWSER]
headless_browser = True # leave unchanged unless using CLI on host.
stealth_mode = True # Use undetected selenium to reduce browser detection

Warning:

- The config.ini file format does not support comments. Do not copy and paste the example configuration directly, as comments will cause errors. Instead, manually modify the config.ini file with your desired settings, excluding any comments.

  • Do NOT set provider_name to openai if using LM-studio for running LLMs. Set it to lm-studio.
  • Some provider (eg: lm-studio) require you to have http:// in front of the IP. For example http://127.0.0.1:1234

List of local providers

ProviderLocal?Description
ollamaYesRun LLMs locally with ease using ollama as a LLM provider
lm-studioYesRun LLM locally with LM studio (set provider_name to lm-studio)
openaiYesUse openai compatible API (eg: llama.cpp server)

Next step: Start services and run AgenticSeek

See the Troubleshooting section if you are having issues. If your hardware can't run LLMs locally, see Setup to run with an API. For detailed config.ini explanations, see Config Section.

Setup to run with an API

This setup uses external, cloud-based LLM providers. You'll need an API key from your chosen service.

1. Choose an API Provider and Get an API Key:

Refer to the List of API Providers below. Visit their websites to sign up and obtain an API key.

2. Set Your API Key as an Environment Variable:

Linux/macOS: Open your terminal and use the export command. It's best to add this to your shell's profile file (e.g., ~/.bashrc, ~/.zshrc) for persistence.

    export PROVIDER_API_KEY="your_api_key_here"
    # Replace PROVIDER_API_KEY with the specific variable name, e.g., OPENAI_API_KEY, GOOGLE_API_KEY
    
Example for TogetherAI:
    export TOGETHER_API_KEY="xxxxxxxxxxxxxxxxxxxxxx"
    
Windows: Command Prompt (Temporary for current session):
        set PROVIDER_API_KEY=your_api_key_here
        
PowerShell (Temporary for current session):
        $env:PROVIDER_API_KEY="your_api_key_here"
        
* Permanently: Search for "environment variables" in the Windows search bar, click "Edit the system environment variables," then click the "Environment Variables..." button. Add a new User variable with the appropriate name (e.g., OPENAI_API_KEY) and your key as the value.

(See FAQ: How do I set API keys? for more details).

3. Update config.ini: ```ini [MAIN] is_local = False provider_name = openai # Or google, deepseek, togetherAI, huggingface provider_model = gpt-3.5-turbo # Or gemini-1.5-flash, deepseek-chat, mistralai/Mixtral-8x7B-Instruct-v0.1 etc. provider_server_address = # Typically ignored or can be left blank when is_local = False for most APIs

**Setup to run the LLM on your own server**

If you have a powerful computer or a server that you can use, but you want to use it from your laptop you have the options to run the LLM on a remote server using our custom llm server.

On your "server" that will run the AI model, get the ip address

ip a | grep "inet " | grep -v 127.0.0.1 | awk '{print $2}' | cut -d/ -f1 # local ip
curl https://ipinfo.io/ip # public ip

Note: For Windows or macOS, use ipconfig or ifconfig respectively to find the IP address.

Clone the repository and enter the server/folder.

git clone --depth 1 https://github.com/Fosowl/agenticSeek.git
cd agenticSeek/llm_server/

Install server specific requirements:

pip3 install -r requirements.txt

Run the server script.

python3 app.py --provider ollama --port 3333

You have the choice between using ollama and llamacpp as a LLM service.

Now on your personal computer:

Change the config.ini file to set the provider_name to server and provider_model to deepseek-r1:xxb. Set the provider_server_address to the ip address of the machine that will run the model.

[MAIN]
is_local = False
provider_name = server
provider_model = deepseek-r1:70b
provider_server_address = http://x.x.x.x:3333

Next step: Start services and run AgenticSeek

---

Docker-Specific Notes

⚠️ Important for Docker Users: - The Docker volume mount approach may not work with stealth mode (undetected_chromedriver) - Solution: Place ChromeDriver in the project root directory as ./chromedriver - The application will automatically detect and use this binary - You should see: "Using ChromeDriver from project root: ./chromedriver" in the logs

Ollama connection failed from Docker backend

An error occurred: Provider ollama failed:
Ollama connection failed at http://host.docker.internal:11434. Check if the server is running.

The frontend shows Error: Unable to get a response. and the backend returns HTTP 500 on /query.

  • Cause: When AgenticSeek runs in Docker, the backend reaches your host's Ollama via host.docker.internal. Only the port of provider_server_address is used in Docker mode; the host part is replaced by DOCKER_INTERNAL_URL from .env. So the failure is not a config typo — it's that Ollama on the host is only bound to 127.0.0.1:11434 and refuses connections coming in over the Docker bridge.
  • Do NOT change provider_server_address = 127.0.0.1:11434 in config.ini — the host portion is ignored inside the container.
  • Solution: Bind Ollama to all interfaces by setting OLLAMA_HOST=0.0.0.0:11434 on the host:

Manual ollama serve:

    OLLAMA_HOST=0.0.0.0:11434 ollama serve
    

Definitive solution:

systemd (Linux):

    sudo systemctl edit ollama
    
Add:
    [Service]
    Environment="OLLAMA_HOST=0.0.0.0:11434"
    
Then:
    sudo systemctl daemon-reload
    sudo systemctl restart ollama
    

macOS (Ollama.app):

    launchctl setenv OLLAMA_HOST "0.0.0.0:11434"
    
Then quit and relaunch the Ollama app.

* Verify from inside the backend container:

    docker compose exec backend curl -sS http://host.docker.internal:11434/api/tags
    
You should get a JSON list of models.

* Linux-only caveat: host.docker.internal only resolves inside the container if docker-compose maps it. Make sure the backend service in docker-compose.yml includes:

    extra_hosts:
      - "host.docker.internal:host-gateway"
    
On Docker Desktop (macOS / Windows) this works out of the box.

* Firewall: if ufw / firewalld is active, allow the Docker bridge to reach 11434:

    sudo ufw allow from 172.16.0.0/12 to any port 11434
    

Usage

Make sure the services are up and running with ./start_services.sh full and go to localhost:3000 for web interface.

You can also use speech to text by setting listen = True in the config. Only for CLI mode.

To exit, simply say/type goodbye.

Here are some example usage:

Make a snake game in python!
Search the web for top cafes in Rennes, France, and save a list of three with their addresses in rennes_cafes.txt.
Write a Go program to calculate the factorial of a number, save it as factorial.go in your workspace
Search my summer_pictures folder for all JPG files, rename them with today’s date, and save a list of renamed files in photos_list.txt
Search online for popular sci-fi movies from 2024 and pick three to watch tonight. Save the list in movie_night.txt.
Search the web for the latest AI news articles from 2025, select three, and write a Python script to scrape their titles and summaries. Save the script as news_scraper.py and the summaries in ai_news.txt in /home/projects
Friday, search the web for a free stock price API, register with supersuper7434567@gmail.com then write a Python script to fetch using the API daily prices for Tesla, and save the results in stock_prices.csv

Note that form filling capabilities are still experimental and might fail.

After you type your query, AgenticSeek will allocate the best agent for the task.

Because this is an early prototype, the agent routing system might not always allocate the right agent based on your query.

Therefore, you should be very explicit in what you want and how the AI might proceed for example if you want it to conduct a web search, do not say:

Do you know some good countries for solo-travel?

Instead, ask:

Do a web search and find out which are the best country for solo-travel

---

**Demo**

Can you search for the agenticSeek project, learn what skills are required, then open the CV_candidates.zip and then tell me which match best the project

https://github.com/user-attachments/assets/b8ca60e9-7b3b-4533-840e-08f9ac426316

Disclaimer: This demo, including all the files that appear (e.g: CV_candidates.zip), are entirely fictional. We are not a corporation, we seek open-source contributors not candidates.

🙏 This project started as a side-project and has zero roadmap and zero funding. It's grown way beyond what I expected by ending in GitHub Trending. Contributions, feedback, and patience are deeply appreciated.

2. Change the .env file content

SEARXNG_BASE_URL="http://searxng:8080" # http://127.0.0.1:8080 if running on host
REDIS_BASE_URL="redis://redis:6379/0"
WORK_DIR="/Users/mlg/Documents/workspace_for_ai"
OLLAMA_PORT="11434"
LM_STUDIO_PORT="1234"
CUSTOM_ADDITIONAL_LLM_PORT="11435"
OPENAI_API_KEY='optional'
DEEPSEEK_API_KEY='optional'
OPENROUTER_API_KEY='optional'
TOGETHER_API_KEY='optional'
GOOGLE_API_KEY='optional'
ANTHROPIC_API_KEY='optional'

Update the .env file with your own values as needed:

- SEARXNG_BASE_URL: Leave unchanged unless running on host with CLI mode. > Note on SEARXNG_PORT vs SEARXNG_BASE_URL: SEARXNG_PORT only changes the host port that Docker binds to (e.g., 8001). The searxng container always listens on port 8080 internally. Therefore, when running fully in Docker, SEARXNG_BASE_URL should always remain http://searxng:8080 (the internal Docker network address). Only change SEARXNG_BASE_URL if you are running CLI mode on the host. - REDIS_BASE_URL: Leave unchanged - WORK_DIR: Path to your working directory on your local machine. AgenticSeek will be able to read and interact with these files. - OLLAMA_PORT: Port number for the Ollama service. - LM_STUDIO_PORT: Port number for the LM Studio service. - CUSTOM_ADDITIONAL_LLM_PORT: Port for any additional custom LLM service.

API Key are totally optional for user who choose to run LLM locally. Which is the primary purpose of this project. Leave empty if you have sufficient hardware

... other settings ...

``` Warning: Make sure there are no trailing spaces in the config.ini values.

List of API Providers

Providerprovider_nameLocal?DescriptionAPI Key Link (Examples)
OpenAIopenaiNoUse ChatGPT models via OpenAI's API.[platform.openai.com/signup](https://platform.openai.com/signup)
Google GeminigoogleNoUse Google Gemini models via Google AI Studio.[aistudio.google.com/keys](https://aistudio.google.com/keys)
DeepseekdeepseekNoUse Deepseek models via their API.[platform.deepseek.com](https://platform.deepseek.com)
Hugging FacehuggingfaceNoUse models from Hugging Face Inference API.[huggingface.co/settings/tokens](https://huggingface.co/settings/tokens)
TogetherAItogetherAINoUse various open-source models via TogetherAI API.[api.together.ai/settings/api-keys](https://api.together.ai/settings/api-keys)
OpenRouteropenrouterNoUse OpenRouter Models[https://openrouter.ai/](https://openrouter.ai/)
MiniMaxminimaxNoUse MiniMax models (e.g., MiniMax-M3, MiniMax-M2.7).[platform.minimax.io](https://platform.minimax.io/user-center/basic-information)

Note: We advise against using gpt-4o or other OpenAI models for complex web browsing and task planning as current prompt optimizations are geared towards models like Deepseek. Coding/bash tasks might encounter issues with Gemini, as it may not strictly follow formatting prompts optimized for Deepseek. * The provider_server_address in config.ini is generally not used when is_local = False as the API endpoint is usually hardcoded in the respective provider's library.

Next step: Start services and run AgenticSeek

See the Known issues section if you are having issues

See the Config section for detailed config file explanation.

---

Config

Example config:

[MAIN]
is_local = True
provider_name = ollama
provider_model = deepseek-r1:32b
provider_server_address = http://127.0.0.1:11434 # Example for Ollama; use http://127.0.0.1:1234 for LM-Studio
agent_name = Friday
recover_last_session = False
save_session = False
speak = False
listen = False

jarvis_personality = False
languages = en zh # List of languages for TTS and potentially routing.
[BROWSER]
headless_browser = False
stealth_mode = False

Explanation of config.ini Settings:

  • [MAIN] Section:
  • is_local: True if using a local LLM provider (Ollama, LM-Studio, local OpenAI-compatible server) or the self-hosted server option. False if using a cloud-based API (OpenAI, Google, etc.).
  • provider_name: Specifies the LLM provider.
  • Local options: ollama, lm-studio, openai (for local OpenAI-compatible servers), server (for the self-hosted server setup).
  • API options: openai, google, deepseek, huggingface, togetherAI.
  • provider_model: The specific model name or ID for the chosen provider (e.g., deepseekcoder:6.7b for Ollama, gpt-3.5-turbo for OpenAI API, mistralai/Mixtral-8x7B-Instruct-v0.1 for TogetherAI).
  • provider_server_address: The address of your LLM provider.
  • For local providers: e.g., http://127.0.0.1:11434 for Ollama, http://127.0.0.1:1234 for LM-Studio.
  • For the server provider type: The address of your self-hosted LLM server (e.g., http://your_server_ip:3333).
  • For cloud APIs (is_local = False): This is often ignored or can be left blank, as the API endpoint is usually handled by the client library.
  • agent_name: Name of the AI assistant (e.g., Friday). Used as a trigger word for speech-to-text if enabled.
  • recover_last_session: True to attempt to restore the previous session's state, False to start fresh.
  • save_session: True to save the current session's state for potential recovery, False otherwise.
  • speak: True to enable text-to-speech voice output, False to disable.
  • listen: True to enable speech-to-text voice input (CLI mode only), False to disable.
  • work_dir: Crucial: The directory where AgenticSeek will read/write files. Ensure this path is valid and accessible on your system.
  • jarvis_personality: True to use a more "Jarvis-like" system prompt (experimental), False for the standard prompt.
  • languages: A comma-separated list of languages (e.g., en, zh, fr). Used for TTS voice selection (defaults to the first) and can assist the LLM router. Avoid too many or very similar languages for router efficiency.
  • [BROWSER] Section:
  • headless_browser: True to run the automated browser without a visible window (recommended for web interface or non-interactive use). False to show the browser window (useful for CLI mode or debugging).
  • stealth_mode: True to enable measures to make browser automation harder to detect. May require manual installation of browser extensions like anticaptcha.

This section summarizes the supported LLM provider types. Configure them in config.ini.

Local Providers (Run on Your Own Hardware):

Provider Name in config.iniis_localDescriptionSetup Section
ollamaTrueUse Ollama to serve local LLMs.[Setup for running LLM locally](#setup-for-running-llm-locally-on-your-machine)
lm-studioTrueUse LM-Studio to serve local LLMs.[Setup for running LLM locally](#setup-for-running-llm-locally-on-your-machine)
openai (for local server)TrueConnect to a local server that exposes an OpenAI-compatible API (e.g., llama.cpp).[Setup for running LLM locally](#setup-for-running-llm-locally-on-your-machine)
serverFalseConnect to the AgenticSeek self-hosted LLM server running on another machine.[Setup to run the LLM on your own server](#setup-to-run-the-llm-on-your-own-server)

API Providers (Cloud-Based):

Provider Name in config.iniis_localDescriptionSetup Section
openaiFalseUse OpenAI's official API (e.g., GPT-3.5, GPT-4).[Setup to run with an API](#setup-to-run-with-an-api)
googleFalseUse Google's Gemini models via API.[Setup to run with an API](#setup-to-run-with-an-api)
deepseekFalseUse Deepseek's official API.[Setup to run with an API](#setup-to-run-with-an-api)
huggingfaceFalseUse Hugging Face Inference API.[Setup to run with an API](#setup-to-run-with-an-api)
togetherAIFalseUse TogetherAI's API for various open models.[Setup to run with an API](#setup-to-run-with-an-api)

---

AgenticSeek: Private, Local Manus Alternative.

<p align="center"> <img align="center" src="./media/agentic_seek_logo.png" width="300" height="300" alt="Agentic Seek Logo"> <p>

English | 中文 | 繁體中文 | Français | 日本語 | Português (Brasil) | Español | Türkçe

A 100% local alternative to Manus AI, this voice-enabled AI assistant autonomously browses the web, writes code, and plans tasks while keeping all data on your device. Tailored for local reasoning models, it runs entirely on your hardware, ensuring complete privacy and zero cloud dependency.

Visit AgenticSeek License Discord Twitter GitHub stars

Troubleshooting

If you encounter issues, this section provides guidance.

Troubleshooting Tips

1. Still getting version mismatch? - Verify the ChromeDriver is executable: ls -la ./chromedriver - Check the ChromeDriver version: ./chromedriver --version - Ensure it matches your Chrome browser version

2. Docker container issues? - Check backend logs: docker logs backend - Look for the message: "Using ChromeDriver from project root" - If not found, verify the file exists and is executable

3. Chrome for Testing versions - Use the exact version match when possible - For version 134.0.6998.88, use ChromeDriver 134.0.6998.165 (closest available) - Major version numbers must match (134 = 134)

FAQ

Q: What hardware do I need?

Model SizeGPUComment
7B8GB Vram⚠️ Not recommended. Performance is poor, frequent hallucinations, and planner agents will likely fail.
14B12 GB VRAM (e.g. RTX 3060)✅ Usable for simple tasks. May struggle with web browsing and planning tasks.
32B24+ GB VRAM (e.g. RTX 4090)🚀 Success with most tasks, might still struggle with task planning
70B+48+ GB Vram💪 Excellent. Recommended for advanced use cases.

Q: I get an error what do I do?

Ensure local is running (ollama serve), your config.ini matches your provider, and dependencies are installed. If none work feel free to raise an issue.

Q: Can it really run 100% locally?

Yes with Ollama, lm-studio or server providers, all speech to text, LLM and text to speech model run locally. Non-local options (OpenAI or others API) are optional.

Q: Why should I use AgenticSeek when I have Manus?

Unlike Manus, AgenticSeek prioritizes independence from external systems, giving you more control, privacy and avoid api cost.

Q: Who is behind the project ?

The project was created by me, along with two friends who serve as maintainers and contributors from the open-source community on GitHub. We’re just a group of passionate individuals, not a startup or affiliated with any organization.

Any AgenticSeek account on X other than my personal account (https://x.com/Martin993886460) is an impersonation.

🎯 aiskill88 AI 点评 A 级 2026-05-20

高价值开源项目,解决AI成本痛点,完整工作流支持成熟度高,社区活跃度强劲,企业级应用前景广阔。

📚 实用指南(长尾问题)
适合谁
  • 构建多智能体协作系统的 Agent 开发者
  • 做语音类 AI 产品的开发者
最佳实践
  • 生产部署优先使用 Docker Compose 隔离依赖,并挂载 volume 持久化数据
  • 本地部署优先选 GGUF 量化模型,节省显存并保持响应速度
  • Agent 任务先做 dry-run 验证工具调用链,再开启自主执行
常见错误
  • API key 直接提交到 git 仓库(请用 .env 并加入 .gitignore)
  • 容器内无法访问宿主机 localhost — 使用 host.docker.internal
  • 显存不足直接 OOM — 优先降低 context 或换更小的量化模型
  • Python 依赖冲突:建议用 venv / uv 隔离环境
部署方案
  • Docker:agenticSeek 提供官方镜像,docker compose up 一键启动
  • CLI:直接 npm install -g / pip install,命令行调用
  • 本地部署:CPU 8GB 起,GPU 推荐 16GB+ 显存
  • 云端托管:可放在 Vercel / Railway / Fly.io 等 PaaS 平台
相关搜索
agenticSeek 中文教程agenticSeek 安装报错怎么办agenticSeek Docker 部署agenticSeek Agent 工作流agenticSeek 与同类工具对比agenticSeek 最佳实践agenticSeek 适合谁用

⚡ 核心功能

👥 适合谁
  • 构建多智能体协作系统的 Agent 开发者
  • 做语音类 AI 产品的开发者
⭐ 最佳实践
  • 生产部署优先使用 Docker Compose 隔离依赖,并挂载 volume 持久化数据
  • 本地部署优先选 GGUF 量化模型,节省显存并保持响应速度
  • Agent 任务先做 dry-run 验证工具调用链,再开启自主执行
⚠️ 常见错误
  • API key 直接提交到 git 仓库(请用 .env 并加入 .gitignore)
  • 容器内无法访问宿主机 localhost — 使用 host.docker.internal
  • 显存不足直接 OOM — 优先降低 context 或换更小的量化模型
  • Python 依赖冲突:建议用 venv / uv 隔离环境

👥 适合人群

AI 技术爱好者研究人员和学生开发者和工程师技术创业者

🎯 使用场景

  • 本地部署运行,保护数据隐私,满足合规要求
  • 自定义集成到现有系统,扩展技术栈能力
  • 作为开源基础组件进行商业化二次开发

⚖️ 优点与不足

✅ 优点
  • +GitHub 26.4k Star,社区高度认可
  • +GPL-3.0 协议,可免费商用
  • +完全开源免费,无授权费用
  • +本地部署,数据完全自主可控
  • +开发者社区支持,遇问题可查可问
⚠️ 不足
  • 安装和初始配置可能需要一定技术基础
  • 功能完整性通常不如成熟商业产品
  • 技术支持主要依赖开源社区,响应速度不稳定
⚠️ 使用须知

AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。

建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。

📄 License 说明

⚠️ GPL 3.0 — 强 Copyleft,衍生作品须开源,含专利保护条款,不可闭源使用。

🔗 相关工具推荐

📰 相关 AI 新闻
🍿 AI 圈相关吃瓜
🗺️ 相关解决方案
🧩 你可能还需要
基于当前 Skill 的能力图谱,自动补全的工具组合

❓ 常见问题 FAQ

完全无需,所有功能本地运行,零月度成本
💡 AI Skill Hub 点评

总体来看,agenticSeek Agent工作流 是一款质量优秀的AI工具,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。

📚 深入学习 agenticSeek Agent工作流
查看分步骤安装教程和完整使用指南,快速上手这款工具
🌐 原始信息
原始名称 agenticSeek
原始描述 开源AI工作流:Fully Local Manus AI. No APIs, No $200 monthly bills. Enjoy an autonomous agent 。⭐26.4k · Python
Topics AI智能体本地部署工作流自动化开源框架无API调用
GitHub https://github.com/Fosowl/agenticSeek
License GPL-3.0
语言 Python
🔗 原始来源
🐙 GitHub 仓库  https://github.com/Fosowl/agenticSeek 🌐 官方网站  http://agenticseek.tech

收录时间:2026-05-17 · 更新时间:2026-05-19 · License:GPL-3.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。

📺 订阅 AI Skill Hub Daily Telegram 频道
每天 8 条精选 AI Skill、MCP、Agent 与自动化工具推送
加入频道 →