经 AI Skill Hub 精选评估,OpenViking Agent工作流 获评「强烈推荐」。在 GitHub 上收获超过 24.0k 颗 Star,这款Agent工作流在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 8.2 分,适合有一定技术背景的用户使用。
专为AI Agent设计的开源上下文数据库,支持智能工作流编排和Agent协作。提供完整的RAG增强和上下文管理能力,适合开发者构建复杂AI应用系统和多Agent协作平台。
OpenViking Agent工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
专为AI Agent设计的开源上下文数据库,支持智能工作流编排和Agent协作。提供完整的RAG增强和上下文管理能力,适合开发者构建复杂AI应用系统和多Agent协作平台。
OpenViking Agent工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 方式一:pip 安装(推荐)
pip install openviking
# 方式二:虚拟环境安装(推荐生产环境)
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install openviking
# 方式三:从源码安装(获取最新功能)
git clone https://github.com/volcengine/OpenViking
cd OpenViking
pip install -e .
# 验证安装
python -c "import openviking; print('安装成功')"
# 命令行使用
openviking --help
# 基本用法
openviking input_file -o output_file
# Python 代码中调用
import openviking
# 示例
result = openviking.process("input")
print(result)
# openviking 配置文件示例(config.yml) app: name: "openviking" debug: false log_level: "INFO" # 运行时指定配置文件 openviking --config config.yml # 或通过环境变量配置 export OPENVIKING_API_KEY="your-key" export OPENVIKING_OUTPUT_DIR="./output"
<a href="https://openviking.ai/" target="_blank"> <picture> <img alt="OpenViking" src="docs/images/ov-logo.png" width="200px" height="auto"> </picture> </a>
OpenViking 0.3.22 has been evaluated across three scenarios: long-conversation user memory, agent experience memory, and knowledge-base QA.
Before starting with OpenViking, please ensure your environment meets the following requirements:
pip install openviking --upgrade --force-reinstall
npm i -g @openviking/cli
Or build from source:
cargo install --git https://github.com/volcengine/OpenViking ov_cli
OpenViking requires the following model capabilities:
OpenViking supports multiple VLM providers:
| Provider | Description | Setup |
|---|---|---|
volcengine | Volcengine Doubao Models | [Volcengine Console](https://console.volcengine.com/ark/region:ark+cn-beijing/overview?briefPage=0\&briefType=introduce\&type=new\&utm_content=OpenViking\&utm_medium=devrel\&utm_source=OWO\&utm_term=OpenViking) |
openai | OpenAI Official API | [OpenAI Platform](https://platform.openai.com) |
openai-codex | Codex VLM | Use openviking-server init |
kimi | Kimi Code Membership | Use openviking-server init |
glm | GLM Coding Plan | Use openviking-server init |
<details> <summary><b>Volcengine (Doubao)</b></summary>
Volcengine supports both model names and endpoint IDs. Using model names is recommended for simplicity:
{
"vlm": {
"provider": "volcengine",
"model": "doubao-seed-2-0-pro-260215",
"api_key": "your-api-key",
"api_base": "https://ark.cn-beijing.volces.com/api/v3"
}
}
You can also use endpoint IDs (found in Volcengine ARK Console:
{
"vlm": {
"provider": "volcengine",
"model": "ep-20241220174930-xxxxx",
"api_key": "your-api-key",
"api_base": "https://ark.cn-beijing.volces.com/api/v3"
}
}
</details>
<details> <summary><b>OpenAI</b></summary>
Use OpenAI's official API:
{
"vlm": {
"provider": "openai",
"model": "gpt-4o",
"api_key": "your-api-key",
"api_base": "https://api.openai.com/v1"
}
}
You can also use a custom OpenAI-compatible endpoint:
{
"vlm": {
"provider": "openai",
"model": "gpt-4o",
"api_key": "your-api-key",
"api_base": "https://your-custom-endpoint.com/v1"
}
}
</details>
<details> <summary><b>OpenAI Codex (OAuth)</b></summary>
Use this provider when you want OpenViking to call Codex VLM through your ChatGPT/Codex OAuth session instead of a standard OpenAI API key:
```bash openviking-server init
pip install "openviking[bot]"
uv pip install -e ".[bot]"
For production environments, we recommend running OpenViking as a standalone HTTP service to provide persistent, high-performance context support for your AI Agents.
🚀 Deploy OpenViking on Cloud: To ensure optimal storage performance and data security, we recommend deploying on Volcengine Elastic Compute Service (ECS) using the veLinux operating system. We have prepared a detailed step-by-step guide to get you started quickly.
👉 View: Server Deployment & ECS Setup Guide
---
💡 Want to see it in action first? Try OpenViking Studio — a live hosted instance with a context playground, semantic search, and a multi-agent hub. No installation required.
VikingBot is an AI agent framework built on top of OpenViking. Here's how to get started:
```bash
<a href="https://www.openviking.ai">Website</a> · <a href="https://openviking.ai/studio">Live Demo</a> · <a href="https://github.com/volcengine/OpenViking">GitHub</a> · <a href="https://github.com/volcengine/OpenViking/issues">Issues</a> · <a href="./docs">Docs</a>
👋 Join our Community
📱 <a href="./docs/en/about/01-about-us.md#lark-group">Lark Group</a> · <a href="./docs/en/about/01-about-us.md#wechat-group">WeChat</a> · <a href="https://discord.com/invite/eHvx8E9XF3">Discord</a> · <a href="https://x.com/openvikingai">X</a>
<a href="https://trendshift.io/repositories/19668" target="_blank"><img src="https://trendshift.io/api/badge/repositories/19668" alt="volcengine%2FOpenViking | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a>
</div>
***
✨ May 2026 Update: Updated OpenViking benchmark results across User Memory, Agent Memory, and Knowledge Base QA scenarios. → See Evaluation Highlights.
OpenViking is an open-source Context Database designed specifically for AI Agents.
We aim to define a minimalist context interaction paradigm for Agents, allowing developers to completely say goodbye to the hassle of context management. OpenViking abandons the fragmented vector storage model of traditional RAG and innovatively adopts a "file system paradigm" to unify the structured organization of memories, resources, and skills needed by Agents.
With OpenViking, developers can build an Agent's brain just like managing local files:
openviking-server --with-bot
On multi-hop RAG tasks from HotpotQA, increasing OpenViking retrieval from top-5 to top-20 delivers the highest accuracy in this comparison while keeping retrieval latency low:
| Method | Retrieval Pattern | Accuracy | Tokens / QA | Latency / QA |
|---|---|---|---|---|
| Naive RAG | Vector retrieval | 62.50% | 1,290 | **0.11s** |
| HippoRAG 2 | Vector + knowledge graph | 61.00% | 726 | 20s |
| LightRAG | Vector + knowledge graph | 89.00% | 28,443 | 75s |
| LangChain SQL (Agent) | SQL agent | 78.00% | 4,776 | 132s |
| OpenViking (top-5) | Vector retrieval | 72.75% | 3,154 | 0.22s |
| OpenViking (top-20) | Vector retrieval | **91.00%** | 12,533 | 0.23s |
| Nanobot + OpenViking (Agent) | Vector retrieval + Agent | 87.00% | 71,300 | 61.6s |
| Method | Retrieval Pattern | Average Accuracy | Indexing Tokens | Tokens / QA | Retrieval Latency |
|---|---|---|---|---|---|
| Naive RAG | Vector retrieval | 53.93% | 2,755,356 | 1,435 | **0.13s** |
| PageIndex | Vector + tree structure | 36.75% | 5,609,206 | 710,480 | 84.60s |
| HippoRAG 2 | Vector + knowledge graph | 44.50% | 124,963,618 | **637** | 18.83s |
| LightRAG | Vector + knowledge graph | **76.00%** | 62,705,469 | 27,035 | 9.19s |
| **OpenViking** | **Vector retrieval** | **66.87%** | **8,671,538** | **3,060** | **0.19s** |
Datasets: FinanceBench, NaturalQuestions, ClapNQ, Qasper, and SyllabusQA. OpenViking reaches 66.87% average accuracy with very low retrieval latency (0.19s), while indexing cost is only 13.8% of LightRAG.
---
创新的AI原生数据库设计,24k stars证明社区认可度高。工作流+Agent结合趋势前沿,文档和生态待完善。
该工具使用 AGPL-3.0 协议,商用场景请仔细阅读协议条款,必要时咨询法律意见。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
⚠️ AGPL 3.0 — 最严格的 Copyleft,网络服务端使用也需开源,SaaS 使用受限。
AI Skill Hub 点评:OpenViking Agent工作流 的核心功能完整,质量优秀。对于自动化工程师和运维人员来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | OpenViking |
| 原始描述 | 开源AI工作流:OpenViking is an open-source context database designed specifically for AI Agent。⭐24.0k · Python |
| Topics | 工作流编排AI Agent上下文管理RAG增强Python |
| GitHub | https://github.com/volcengine/OpenViking |
| License | AGPL-3.0 |
| 语言 | Python |
收录时间:2026-05-18 · 更新时间:2026-05-19 · License:AGPL-3.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端