mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-01 12:02:05 +00:00
fix(camofox): register CAMOFOX_API_KEY in OPTIONAL_ENV_VARS
The auth-header fix reads CAMOFOX_API_KEY but it was never registered, so it didn't surface in `hermes setup` / `hermes tools`. Add it as an advanced password-category tool env var alongside CAMOFOX_URL.
This commit is contained in:
parent
08d6195bc4
commit
41095fdb04
1 changed files with 9 additions and 0 deletions
|
|
@ -3549,6 +3549,15 @@ OPTIONAL_ENV_VARS = {
|
|||
"password": False,
|
||||
"category": "tool",
|
||||
},
|
||||
"CAMOFOX_API_KEY": {
|
||||
"description": "Optional bearer token sent as Authorization header to a remote/authenticated Camofox server",
|
||||
"prompt": "Camofox API key",
|
||||
"url": "https://github.com/jo-inc/camofox-browser",
|
||||
"tools": ["browser_navigate", "browser_click"],
|
||||
"password": True,
|
||||
"category": "tool",
|
||||
"advanced": True,
|
||||
},
|
||||
"FAL_KEY": {
|
||||
"description": "FAL API key for image and video generation",
|
||||
"prompt": "FAL API key",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue