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
Parameters
Returns
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
{}