SDK Integration
Solidity
Allows smart contracts to query and invoke agents trustlessly on-chain.
solidityCopyEditFreeroam.callAgent("summarize_text", "DAO proposal contents...");
JavaScript
For dApp frontends, bots, oracles, and other off-chain tooling.
javascriptCopyEditconst result = await freeroam.call("image_caption", { image: base64Input });
Python
For backends, AI pipelines, and off-chain orchestration.
pythonCopyEditfrom freeroam import call
result = call("detect_anomalies", timeseries)
SDKs include:
Auto-routing
Retry logic
Callback/event handlers
Error diagnostics
Gas estimation
Last updated