Skip to content
Get started

Run Proxy

v1.proxy.run_proxy(strclient_path, ProxyRunProxyParams**kwargs) -> object
POST/api/v1/proxy/run/{client_path}

Invoke an agent with the given payload

ParametersExpand Collapse
client_path: str
body: Dict[str, object]
use_cache: Optional[bool]
ReturnsExpand Collapse
object
Run Proxy
from overmind_lab import OvermindLab

client = OvermindLab()
response = client.v1.proxy.run_proxy(
    client_path="client_path",
    body={
        "foo": "bar"
    },
)
print(response)
{}
Returns Examples
{}