经 AI Skill Hub 精选评估,Avalan AI工作流框架 获评「推荐使用」。这款Agent工作流在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 6.8 分,适合有一定技术背景的用户使用。
Avalan AI工作流框架 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
Avalan AI工作流框架 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 方式一:pip 安装(推荐)
pip install avalan
# 方式二:虚拟环境安装(推荐生产环境)
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install avalan
# 方式三:从源码安装(获取最新功能)
git clone https://github.com/avalan-ai/avalan
cd avalan
pip install -e .
# 验证安装
python -c "import avalan; print('安装成功')"
# 命令行使用
avalan --help
# 基本用法
avalan input_file -o output_file
# Python 代码中调用
import avalan
# 示例
result = avalan.process("input")
print(result)
# avalan 配置文件示例(config.yml) app: name: "avalan" debug: false log_level: "INFO" # 运行时指定配置文件 avalan --config config.yml # 或通过环境变量配置 export AVALAN_API_KEY="your-key" export AVALAN_OUTPUT_DIR="./output"
<p align="center"> <a href="https://pypi.org/project/avalan/"><img src="https://img.shields.io/pypi/pyversions/avalan.svg" alt="Python versions" /></a> <a href="https://github.com/avalan-ai/avalan/actions/workflows/test.yml"><img src="https://github.com/avalan-ai/avalan/actions/workflows/test.yml/badge.svg" alt="Tests" /></a> <a href="https://coveralls.io/github/avalan-ai/avalan"><img src="https://coveralls.io/repos/github/avalan-ai/avalan/badge.svg" alt="Code test coverage" /></a> <img src="https://img.shields.io/github/last-commit/avalan-ai/avalan.svg" alt="Last commit" /> <a href="https://pypi.org/project/avalan/"><img src="https://img.shields.io/github/v/release/avalan-ai/avalan?label=Release" alt="Release" /></a> <a href="https://github.com/avalan-ai/avalan/blob/main/LICENSE"><img src="https://img.shields.io/pypi/l/avalan.svg" alt="License" /></a> <a href="https://discord.gg/8Eh9TNvk"><img src="https://img.shields.io/badge/discord-community-blue" alt="Discord Community" /></a> <a href="https://deepwiki.com/avalan-ai/avalan"><img src="https://deepwiki.com/badge.svg" alt="Ask DeepWiki"></a> </p>
Avalan is a Python SDK and CLI for building and running AI workflows and agents across local and hosted models.
- 🔀 One runtime for local and hosted models across Hugging Face model ids and vendor ai:// URIs. - 🎞️ Multi-modal support for text, vision, and audio workloads. - 🔌 Multiple backends including transformers, vLLM, and mlx-lm, plus native support for DS4-supported DeepSeek V4 Flash GGUFs. - 🧰 Built-in tools and memory for browser automation, code execution, databases, MCP, search, YouTube, and vector-backed retrieval. - 🧠 Composable orchestration with flows, branching, reasoning strategies, and observability. - 🌐 Open serving surfaces for OpenAI-compatible APIs, MCP, and A2A.
Avalan supports Python 3.11 through 3.14. Install the smallest profile that fits your workflow.
[!NOTE] Thevllmextra, the vLLM runtime in thenvidiaextra, andmarkitdowndocument conversion in thememoryextra are currently limited to Python 3.11 through 3.13 by upstream dependencies. The pinnedtorchvisionrelease used by thevisionextra also excludes Python 3.14.1, and thememoryextra omitspsycopg-binaryon Python 3.14 until compatible wheels are published.
import asyncio
from avalan.model.nlp.generation import TextGenerationModel
async def main() -> None:
with TextGenerationModel("ai://env:OPENAI_API_KEY@openai/gpt-4o") as model:
response = await model("Give me two facts about Leo Messi.")
print(response)
async for token in await model(
"Give me two more facts about Leo Messi.",
stream=True,
):
print(token, end="", flush=True)
asyncio.run(main())
轻量级AI工作流框架,多后���和多模态设计方向先进。但生态成熟度有限,文档和社区支持待加强。早期项目,适合创新探索。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
AI Skill Hub 点评:Avalan AI工作流框架 的核心功能完整,质量良好。对于自动化工程师和运维人员来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | avalan |
| 原始描述 | 开源AI工作流:The multi-backend, multi-modal micro-framework for AI agent development, orchest。⭐29 · Python |
| Topics | AI工作流多后端多模态智能体开源框架 |
| GitHub | https://github.com/avalan-ai/avalan |
| License | MIT |
| 语言 | Python |
收录时间:2026-05-23 · 更新时间:2026-05-30 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端