mirror of
https://github.com/m5stack/ESP-Claw.git
synced 2026-05-20 11:51:49 -07:00
23 lines
595 B
Plaintext
23 lines
595 B
Plaintext
menu "ESP-Claw Core"
|
|
|
|
choice CLAW_CORE_STAGE_VERBOSITY
|
|
prompt "Agent stage notification verbosity"
|
|
default CLAW_CORE_STAGE_VERBOSITY_SIMPLE
|
|
help
|
|
Controls how much detail is forwarded to IM channels during agent execution.
|
|
|
|
config CLAW_CORE_STAGE_VERBOSITY_SIMPLE
|
|
bool "Simple"
|
|
help
|
|
Send only essential updates: tool names being invoked.
|
|
|
|
config CLAW_CORE_STAGE_VERBOSITY_VERBOSE
|
|
bool "Verbose"
|
|
help
|
|
Include tool arguments preview and iteration round in addition to tool
|
|
names. Useful for debugging and power users.
|
|
|
|
endchoice
|
|
|
|
endmenu
|