forked from Rockachopa/Timmy-time-dashboard
feat: dockerize OpenFang as vendored tool runtime sidecar (#96)
This commit is contained in:
committed by
GitHub
parent
d7d7a5a80a
commit
b7c89d1101
18
src/infrastructure/openfang/__init__.py
Normal file
18
src/infrastructure/openfang/__init__.py
Normal file
@@ -0,0 +1,18 @@
|
||||
"""OpenFang — vendored binary sidecar for agent tool execution.
|
||||
|
||||
OpenFang is a Rust-compiled Agent OS that provides real tool execution
|
||||
(browser automation, OSINT, forecasting, social management) in a
|
||||
WASM-sandboxed runtime. Timmy's coordinator dispatches to it as a
|
||||
tool vendor rather than a co-orchestrator.
|
||||
|
||||
Usage:
|
||||
from infrastructure.openfang import openfang_client
|
||||
|
||||
# Check if OpenFang is available
|
||||
if openfang_client.healthy:
|
||||
result = await openfang_client.execute_hand("browser", params)
|
||||
"""
|
||||
|
||||
from infrastructure.openfang.client import OpenFangClient, openfang_client
|
||||
|
||||
__all__ = ["OpenFangClient", "openfang_client"]
|
||||
Reference in New Issue
Block a user