docs(channel): document ov_tools_enable config introduced in #1352#1571
Merged
qin-ctx merged 2 commits intovolcengine:mainfrom Apr 19, 2026
Merged
Conversation
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨No code suggestions found for the PR. |
qin-ctx
approved these changes
Apr 19, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
PR #1352 (merged 2026-04-17, shipped in v0.3.9) added a new
ov_tools_enable: bool = Truefield toBaseChannelConfigso operators can disable OpenViking tools and memory/user-profile context injection per channel. The implementation landed in:bot/vikingbot/config/schema.py: newov_tools_enablefield onBaseChannelConfigbot/vikingbot/agent/loop.py:_get_channel_config+_get_ov_tools_enablewiringbot/vikingbot/agent/context.py: gatesopenviking_searchmemory lookup andCurrent user's informationprofile injection onov_tools_enablebot/vikingbot/agent/tools/registry.py: filtersopenviking_*tool definitions when the flag is offHowever, neither
bot/README.mdnorbot/README_CN.mdreferenced the new option. Users reading the channel config example would see onlytype/enabled/appId/allowFrom/… and would have to readconfig/schema.pyto discover that they can turn off OV for a given channel.Changes
bot/README.md(+3 lines):"ov_tools_enable": trueto the feishu channel example in theov.confJSONchannels.*.ov_tools_enablerow to the Security options table describing the default (true), the effect whenfalse(noopenviking_*tools, no OV memory/profile context), and a link to feat(bot): Add disable OpenViking config for channels. #1352bot/README_CN.md(+3 lines): same content, translated to Chinese.Both changes slot into sections that already document
channels.*.allowFrom, so they follow the same documentation pattern as prior channel-level options.Test plan
bot/vikingbot/config/schema.pyline 62,ov_tools_enable: bool = True)Co-Authored-Bytrailer