by johnjcsmith on 2/6/25, 9:32 PM with 0 comments
We've been trying to make agents "programmatically useful" and built an open-source AI-native workflow orchestrator called Inferable.
We integrate Tools, Agents, and Durable Workflows in a code-first way to create "Durable Agentic Workflows".
Basically:
1. We provide SDKs to wrap your existing code as tools.
2. Our agent abstraction dynamically searches through all the tools, and calls them in a multi-step reasoning process.
3. Durable workflows help you string together agent interactions using "workflow as code".
The control plane handles the orchestration of the workflow and the agents, and we've done some things to failover on machine stalls, tool failures, and other disasters.
We also use long-polling, so workflows and tools don't need any network ingress.
There's a lot more to it, but we're seeking any early feedback you have.