Skip to content

Commit 05e9fcc

Browse files
authored
fix: suport uv pip install openviking[bot] (#457)
1 parent 791fa3c commit 05e9fcc

File tree

5 files changed

+25
-2
lines changed

5 files changed

+25
-2
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,10 @@ Congratulations! You have successfully run OpenViking 🎉
442442
VikingBot is an AI agent framework built on top of OpenViking. Here's how to get started:
443443

444444
```bash
445-
# Install VikingBot from source (in OpenViking root directory)
445+
# Option 1: Install VikingBot from PyPI (recommended for most users)
446+
pip install openviking[bot]
447+
448+
# Option 2: Install VikingBot from source (for development)
446449
uv pip install -e bot/
447450

448451
# Start OpenViking server with Bot enabled

README_CN.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,10 @@ ov grep "openviking" --uri viking://resources/volcengine/OpenViking/docs/zh
441441
VikingBot 是构建在 OpenViking 之上的 AI 智能体框架。以下是快速开始指南:
442442

443443
```bash
444-
# 在 OpenViking 源码根目录下安装 VikingBot
444+
# 选项 1:从 PyPI 安装 VikingBot(推荐大多数用户使用)
445+
pip install openviking[bot]
446+
447+
# 选项 2:从源码安装 VikingBot(用于开发)
445448
uv pip install -e bot/
446449

447450
# 启动 OpenViking 服务器(同时启动 Bot)

bot/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,13 @@ Vikingbot is deeply integrated with OpenViking, providing powerful knowledge man
1414

1515
## 📦 Install
1616

17+
**Option 1: Install from PyPI (Simplest)**
18+
```bash
19+
pip install vikingbot
20+
```
21+
22+
**Option 2: Install from source (for development)**
23+
1724
**Prerequisites**
1825

1926
First, install [uv](https://github.com/astral-sh/uv) (an extremely fast Python package installer):

bot/README_CN.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,13 @@ Vikingbot 深度集成 OpenViking,提供强大的知识管理和记忆检索
1515

1616
## 📦 安装
1717

18+
**选项 1:从 PyPI 安装(最简单)**
19+
```bash
20+
pip install vikingbot
21+
```
22+
23+
**选项 2:从源码安装(用于开发)**
24+
1825
**前置要求**
1926

2027
首先安装 [uv](https://github.com/astral-sh/uv)(一个极速的 Python 包安装器):

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,9 @@ eval = [
9797
"datasets>=2.0.0",
9898
"pandas>=2.0.0",
9999
]
100+
bot = [
101+
"vikingbot>=0.1.2",
102+
]
100103

101104
[project.urls]
102105
Homepage = "https://github.com/volcengine/openviking"

0 commit comments

Comments
 (0)