mirror of
https://github.com/HKUDS/nanobot.git
synced 2026-04-27 05:15:51 +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=[
|
choices=[
|
||||||
"🔌 Configure LLM Provider",
|
"🔌 Configure LLM Provider",
|
||||||
"💬 Configure Chat Channel",
|
"💬 Configure Chat Channel",
|
||||||
|
"⚙️ Configure Channel Common",
|
||||||
"🤖 Configure Agent Settings",
|
"🤖 Configure Agent Settings",
|
||||||
"🌐 Configure Gateway",
|
"🌐 Configure Gateway",
|
||||||
"🔧 Configure Tools",
|
"🔧 Configure Tools",
|
||||||
@ -969,6 +970,8 @@ def run_onboard() -> Config:
|
|||||||
_configure_providers(config)
|
_configure_providers(config)
|
||||||
elif answer == "💬 Configure Chat Channel":
|
elif answer == "💬 Configure Chat Channel":
|
||||||
_configure_channels(config)
|
_configure_channels(config)
|
||||||
|
elif answer == "⚙️ Configure Channel Common":
|
||||||
|
_configure_general_settings(config, "Channel Common")
|
||||||
elif answer == "🤖 Configure Agent Settings":
|
elif answer == "🤖 Configure Agent Settings":
|
||||||
_configure_agents(config)
|
_configure_agents(config)
|
||||||
elif answer == "🌐 Configure Gateway":
|
elif answer == "🌐 Configure Gateway":
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user