Update hermes-discord toolset to enable full terminal access with safety checks
- Revised the description to reflect full access capabilities, including terminal usage with a dangerous command approval system. - Added terminal and file manipulation tools to the toolset, enhancing functionality for users. - Updated comments for clarity on tool purposes, ensuring better understanding of available features.
This commit is contained in:
parent
8fb44608bf
commit
abe925e212
1 changed files with 9 additions and 5 deletions
14
toolsets.py
14
toolsets.py
|
|
@ -178,15 +178,19 @@ TOOLSETS = {
|
||||||
},
|
},
|
||||||
|
|
||||||
"hermes-discord": {
|
"hermes-discord": {
|
||||||
"description": "Discord bot toolset - limited for public server safety (no terminal, no file access)",
|
"description": "Discord bot toolset - full access (terminal has safety checks via dangerous command approval)",
|
||||||
"tools": [
|
"tools": [
|
||||||
# Web tools - safe for messaging
|
# Terminal - enabled with dangerous command approval system
|
||||||
"web_search",
|
"terminal",
|
||||||
# Vision - analyze images
|
# File manipulation
|
||||||
|
"read_file", "write_file", "patch", "search",
|
||||||
|
# Web tools
|
||||||
|
"web_search", "web_extract",
|
||||||
|
# Vision - analyze images sent by users
|
||||||
"vision_analyze",
|
"vision_analyze",
|
||||||
# Skills - access knowledge base
|
# Skills - access knowledge base
|
||||||
"skills_list", "skill_view",
|
"skills_list", "skill_view",
|
||||||
# Cronjob - let users schedule reminders
|
# Cronjob management - let users schedule tasks
|
||||||
"schedule_cronjob", "list_cronjobs", "remove_cronjob"
|
"schedule_cronjob", "list_cronjobs", "remove_cronjob"
|
||||||
],
|
],
|
||||||
"includes": []
|
"includes": []
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue