new Dockerfile, successfully integrated user interface browser, novnc
This commit is contained in:
parent
de15e349ca
commit
805f7a017e
12 changed files with 673 additions and 231 deletions
26
toolsets.py
26
toolsets.py
|
|
@ -29,6 +29,12 @@ from typing import List, Dict, Any, Set, Optional
|
|||
# Shared tool list for CLI and all messaging platform toolsets.
|
||||
# Edit this once to update all platforms simultaneously.
|
||||
_HERMES_CORE_TOOLS = [
|
||||
# Browser automation
|
||||
# "browser_navigate", "browser_snapshot", "browser_click",
|
||||
# "browser_type", "browser_scroll", "browser_back",
|
||||
# "browser_press", "browser_close", "browser_get_images",
|
||||
# "browser_vision", "browser_console",
|
||||
"internet_browser",
|
||||
# Web
|
||||
"web_search", "web_extract",
|
||||
# Terminal + process management
|
||||
|
|
@ -41,11 +47,6 @@ _HERMES_CORE_TOOLS = [
|
|||
"mixture_of_agents",
|
||||
# Skills
|
||||
"skills_list", "skill_view", "skill_manage",
|
||||
# Browser automation
|
||||
"browser_navigate", "browser_snapshot", "browser_click",
|
||||
"browser_type", "browser_scroll", "browser_back",
|
||||
"browser_press", "browser_close", "browser_get_images",
|
||||
"browser_vision", "browser_console",
|
||||
# Text-to-speech
|
||||
"text_to_speech",
|
||||
# Planning & memory
|
||||
|
|
@ -116,13 +117,20 @@ TOOLSETS = {
|
|||
"browser": {
|
||||
"description": "Browser automation for web interaction (navigate, click, type, scroll, iframes, hold-click) with web search for finding URLs",
|
||||
"tools": [
|
||||
"browser_navigate", "browser_snapshot", "browser_click",
|
||||
"browser_type", "browser_scroll", "browser_back",
|
||||
"browser_press", "browser_close", "browser_get_images",
|
||||
"browser_vision", "browser_console", "web_search"
|
||||
# "browser_navigate", "browser_snapshot", "browser_click",
|
||||
# "browser_type", "browser_scroll", "browser_back",
|
||||
# "browser_press", "browser_close", "browser_get_images",
|
||||
# "browser_vision", "browser_console", "web_search"
|
||||
# "internet_browser"
|
||||
],
|
||||
"includes": []
|
||||
},
|
||||
|
||||
"browse_cmd": {
|
||||
"description": "Advanced browser automation via browser-use",
|
||||
"tools": ["internet_browser"],
|
||||
"includes": []
|
||||
},
|
||||
|
||||
"cronjob": {
|
||||
"description": "Cronjob management tool - create, list, update, pause, resume, remove, and trigger scheduled tasks",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue