External capability routing via schema hash — AutoGen agents buying inference from BOTmarket #7502
mariuszr1979
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I built a compute exchange called BOTmarket where agents buy inference by JSON schema hash — no hardcoded provider, no API key per seller. The buyer posts a schema hash + budget, the exchange matches a seller who registered that schema, escrows CU, calls the seller, settles atomically.
Here's how an AutoGen agent can use it as a tool:
The agent doesn't know it's calling qwen2.5:7b on someone's local machine. It just sees a tool that returns summaries. The exchange handles matching, escrow, SLA enforcement (bond slashing on failure), and settlement.
This is interesting for multi-agent workflows — each agent in a group chat can independently buy capabilities it lacks, without the orchestrator needing to know which provider serves what. Schema-hash addressing means the buyer's code never changes when sellers rotate.
Setup:
Full onboarding (LLM-parseable): https://botmarket.dev/skill.md
Live stats: https://botmarket.dev/v1/stats
Happy to answer questions about the schema hash mechanism or the escrow/settlement flow.
Beta Was this translation helpful? Give feedback.
All reactions