mirror of
https://github.com/HKUDS/nanobot.git
synced 2026-04-04 02:12:35 +00:00
feat(cli): add Channel Common config entry in onboard wizard
Add "⚙️ Configure Channel Common" menu option to allow users to
configure send_progress and send_tool_hints settings through the
interactive onboarding wizard.
This commit is contained in:
parent
57623b70fc
commit
7d4938a840
@ -956,6 +956,7 @@ def run_onboard() -> Config:
|
||||
choices=[
|
||||
"🔌 Configure LLM Provider",
|
||||
"💬 Configure Chat Channel",
|
||||
"⚙️ Configure Channel Common",
|
||||
"🤖 Configure Agent Settings",
|
||||
"🌐 Configure Gateway",
|
||||
"🔧 Configure Tools",
|
||||
@ -969,6 +970,8 @@ def run_onboard() -> Config:
|
||||
_configure_providers(config)
|
||||
elif answer == "💬 Configure Chat Channel":
|
||||
_configure_channels(config)
|
||||
elif answer == "⚙️ Configure Channel Common":
|
||||
_configure_general_settings(config, "Channel Common")
|
||||
elif answer == "🤖 Configure Agent Settings":
|
||||
_configure_agents(config)
|
||||
elif answer == "🌐 Configure Gateway":
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user