mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-04-28 01:21:43 +00:00
fix: update setup/config UI for local browser mode
- tools_config.py: Add 'Local Browser' as first provider option (no API keys needed, same npm install for agent-browser) - setup.py: Show 'Browser Automation (local)' when agent-browser CLI is found but no Browserbase key is set - config.py: Mark BROWSERBASE_* descriptions as optional - status.py: Note that local browser works without Browserbase
This commit is contained in:
parent
55c70f3508
commit
caab1cf453
4 changed files with 17 additions and 7 deletions
|
|
@ -177,9 +177,15 @@ TOOL_CATEGORIES = {
|
|||
"name": "Browser Automation",
|
||||
"icon": "🌐",
|
||||
"providers": [
|
||||
{
|
||||
"name": "Local Browser",
|
||||
"tag": "Free headless Chromium (no API key needed)",
|
||||
"env_vars": [],
|
||||
"post_setup": "browserbase", # Same npm install for agent-browser
|
||||
},
|
||||
{
|
||||
"name": "Browserbase",
|
||||
"tag": "Cloud browser with stealth mode",
|
||||
"tag": "Cloud browser with stealth & proxies",
|
||||
"env_vars": [
|
||||
{"key": "BROWSERBASE_API_KEY", "prompt": "Browserbase API key", "url": "https://browserbase.com"},
|
||||
{"key": "BROWSERBASE_PROJECT_ID", "prompt": "Browserbase project ID"},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue