AI Skill Hub 强烈推荐:ragflow Agent工作流 是一款优质的Agent工作流。在 GitHub 上收获超过 80.4k 颗 Star,AI 综合评分 8.8 分,在同类工具中表现稳健。如果你正在寻找可靠的Agent工作流解决方案,这是一个值得深入了解的选择。
RAGFlow是领先的开源检索增强生成(RAG)引擎,提供完整的AI工作流和智能体框架。支持agentic检索和搜索,适合构建智能问答系统、知识库应用和AI代理的开发者和企业用户。
ragflow Agent工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
RAGFlow是领先的开源检索增强生成(RAG)引擎,提供完整的AI工作流和智能体框架。支持agentic检索和搜索,适合构建智能问答系统、知识库应用和AI代理的开发者和企业用户。
ragflow Agent工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 方式一:pip 安装(推荐)
pip install ragflow
# 方式二:虚拟环境安装(推荐生产环境)
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install ragflow
# 方式三:从源码安装(获取最新功能)
git clone https://github.com/infiniflow/ragflow
cd ragflow
pip install -e .
# 验证安装
python -c "import ragflow; print('安装成功')"
# 命令行使用
ragflow --help
# 基本用法
ragflow input_file -o output_file
# Python 代码中调用
import ragflow
# 示例
result = ragflow.process("input")
print(result)
# ragflow 配置文件示例(config.yml) app: name: "ragflow" debug: false log_level: "INFO" # 运行时指定配置文件 ragflow --config config.yml # 或通过环境变量配置 export RAGFLOW_API_KEY="your-key" export RAGFLOW_OUTPUT_DIR="./output"
<p align="center"> <a href="./README.md"><img alt="README in English" src="https://img.shields.io/badge/English-DBEDFA"></a> <a href="./README_zh.md"><img alt="简体中文版自述文件" src="https://img.shields.io/badge/简体中文-DFE0E5"></a> <a href="./README_tzh.md"><img alt="繁體版中文自述文件" src="https://img.shields.io/badge/繁體中文-DFE0E5"></a> <a href="./README_ja.md"><img alt="日本語のREADME" src="https://img.shields.io/badge/日本語-DFE0E5"></a> <a href="./README_ko.md"><img alt="한국어" src="https://img.shields.io/badge/한국어-DFE0E5"></a> <a href="./README_fr.md"><img alt="README en Français" src="https://img.shields.io/badge/Français-DFE0E5"></a> <a href="./README_id.md"><img alt="Bahasa Indonesia" src="https://img.shields.io/badge/Bahasa Indonesia-DFE0E5"></a> <a href="./README_pt_br.md"><img alt="Português(Brasil)" src="https://img.shields.io/badge/Português(Brasil)-DFE0E5"></a> <a href="./README_ar.md"><img alt="README in Arabic" src="https://img.shields.io/badge/Arabic-DFE0E5"></a> <a href="./README_tr.md"><img alt="Türkçe README" src="https://img.shields.io/badge/Türkçe-DFE0E5"></a> </p>
<p align="center"> <a href="https://x.com/intent/follow?screen_name=infiniflowai" target="_blank"> <img src="https://img.shields.io/twitter/follow/infiniflow?logo=X&color=%20%23f5f5f5" alt="follow on X(Twitter)"> </a> <a href="https://cloud.ragflow.io" target="_blank"> <img alt="Static Badge" src="https://img.shields.io/badge/Get-Started-4e6b99"> </a> <a href="https://hub.docker.com/r/infiniflow/ragflow" target="_blank"> <img src="https://img.shields.io/docker/pulls/infiniflow/ragflow?label=Docker%20Pulls&color=0db7ed&logo=docker&logoColor=white&style=flat-square" alt="docker pull infiniflow/ragflow:v0.25.5"> </a> <a href="https://github.com/infiniflow/ragflow/releases/latest"> <img src="https://img.shields.io/github/v/release/infiniflow/ragflow?color=blue&label=Latest%20Release" alt="Latest Release"> </a> <a href="https://github.com/infiniflow/ragflow/blob/main/LICENSE"> <img height="21" src="https://img.shields.io/badge/License-Apache--2.0-ffffff?labelColor=d4eaf7&color=2e6cc4" alt="license"> </a> <a href="https://deepwiki.com/infiniflow/ragflow"> <img alt="Ask DeepWiki" src="https://deepwiki.com/badge.svg"> </a> </p>
<details open> <summary><b>📕 Table of Contents</b></summary>
</details>
[!TIP] If you have not installed Docker on your local machine (Windows, Mac, or Linux), see Install Docker Engine.
This image is approximately 2 GB in size and relies on external LLM and embedding services.
git clone https://github.com/infiniflow/ragflow.git
cd ragflow/
docker build --platform linux/amd64 -f Dockerfile -t infiniflow/ragflow:nightly .
Or if you are behind a proxy, you can pass proxy arguments:
docker build --platform linux/amd64 \
--build-arg http_proxy=http://YOUR_PROXY:PORT \
--build-arg https_proxy=http://YOUR_PROXY:PORT \
-f Dockerfile -t infiniflow/ragflow:nightly .
When it comes to system configurations, you will need to manage the following files:
- .env: Keeps the fundamental setups for the system, such as SVR_HTTP_PORT, MYSQL_PASSWORD, and MINIO_PASSWORD. - service_conf.yaml.template: Configures the back-end services. The environment variables in this file will be automatically populated when the Docker container starts. Any environment variables set within the Docker container will be available for use, allowing you to customize service behavior based on the deployment environment. - docker-compose.yml: The system relies on docker-compose.yml to start up.
The ./docker/README file provides a detailed description of the environment settings and service configurations which can be used as ${ENV_VARS} in the service_conf.yaml.template file.
To update the default HTTP serving port (80), go to docker-compose.yml and change 80:80 to <YOUR_SERVING_PORT>:80.
Updates to the above configurations require a reboot of all containers to take effect:
> $ docker compose -f docker-compose.yml up -d >
RAGFlow是成熟的企业级RAG解决方案,星标超80k体现高人气。工程化程度高,文档完善,特别适合需要知识库集成的AI应用开发。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ Apache 2.0 — 宽松开源协议,可商用,需保留版权声明和 NOTICE 文件,含专利授权条款。
总体来看,ragflow Agent工作流 是一款质量优秀的Agent工作流,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | ragflow |
| 原始描述 | 开源AI工作流:RAGFlow is a leading open-source Retrieval-Augmented Generation (RAG) engine tha。⭐80.4k · Python |
| Topics | RAG引擎AI工作流智能体框架开源 |
| GitHub | https://github.com/infiniflow/ragflow |
| License | Apache-2.0 |
| 语言 | Python |
收录时间:2026-05-13 · 更新时间:2026-05-16 · License:Apache-2.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端