mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-05-09 03:11:58 +00:00
Reverts PR #16919 (commitsdad10a78d,413ee1a28,b4a8031b2,afb958829) which was merged prematurely. Restoring the pre-merge state so #14817 and #15328 can be revisited as standing PRs. Reverted commits: -afb958829fix(computer-use): harden image-rejection fallback + AUTHOR_MAP -b4a8031b2fix(computer-use): unwrap _multimodal tool results -413ee1a28feat(computer-use): background focus-safe backend -dad10a78dfeat(computer-use): cua-driver backend, universal any-model schema Co-authored-by: teknium1 <teknium@users.noreply.github.com>
This commit is contained in:
parent
cf0852f92e
commit
e63364b8df
27 changed files with 35 additions and 3536 deletions
|
|
@ -1,39 +0,0 @@
|
|||
"""Shim for tool discovery. Registers `computer_use` with tools.registry.
|
||||
|
||||
The real implementation lives in the `tools/computer_use/` package to keep
|
||||
the file structure clean. This shim exists because tools.registry auto-imports
|
||||
`tools/*.py` — we need a top-level module to trigger the registration.
|
||||
"""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from tools.computer_use.schema import COMPUTER_USE_SCHEMA
|
||||
from tools.computer_use.tool import (
|
||||
check_computer_use_requirements,
|
||||
handle_computer_use,
|
||||
set_approval_callback,
|
||||
)
|
||||
from tools.registry import registry
|
||||
|
||||
|
||||
registry.register(
|
||||
name="computer_use",
|
||||
toolset="computer_use",
|
||||
schema=COMPUTER_USE_SCHEMA,
|
||||
handler=lambda args, **kw: handle_computer_use(args, **kw),
|
||||
check_fn=check_computer_use_requirements,
|
||||
requires_env=[],
|
||||
description=(
|
||||
"Universal macOS desktop control via cua-driver. Works with any "
|
||||
"tool-capable model (Anthropic, OpenAI, OpenRouter, local vLLM, "
|
||||
"etc.). Background computer-use: does NOT steal the user's cursor "
|
||||
"or keyboard focus."
|
||||
),
|
||||
)
|
||||
|
||||
|
||||
__all__ = [
|
||||
"handle_computer_use",
|
||||
"set_approval_callback",
|
||||
"check_computer_use_requirements",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue