Inferable is an open-source platform that empowers developers to create scalable and reliable AI-driven automations. With support for multiple languages and a managed agent runtime, Inferable ensures seamless integration and execution of complex tasks, all backed by robust open-source support.
Inferable is an innovative, open-source platform designed to streamline the creation of large language model (LLM) driven automations. It empowers developers by offering a seamless way to build robust, agentic workflows that scale. The platform features a developer-first architecture with a focus on production-readiness, facilitating efficient and reliable AI-driven tasks.
Inferable allows automations to be powered directly by user code, enabling high levels of customization and integration. Here’s a quick guide to using Inferable:
Define Functions: Write functions that will be utilized within your automation.
async function readWebPage({ url }: { url: string }) {
const browser = await chromium.launch();
const page = await browser.newPage();
await page.goto(url);
return await page.content();
}
Register Functions: Integrate your functions with the platform.
inferable.default.register({
name: "readWebPage",
func: readWebPage,
input: z.object({
url: z.string(),
}),
});
Execute a Run: Initiate a process to utilize your registered functions.
inferable.run({
initialPrompt: `
Produce me a list of all the open source projects
at https://news.ycombinator.com/show, with their
github url, programming language and fork count.
`,
resultSchema: z.array(
z.object({
url: z.string().regex(/^https:\/\/github\.com\/.*$/),
language: z.string(),
forkCount: z.number(),
})
),
});
Inferable's repository encompasses both the core services and SDKs for a comprehensive development experience:
/control-plane for central management./app for the user-friendly web console./cli for command-line interactions.Inferable represents a powerful tool for developers looking to integrate intelligent, scalable automation within their applications, providing a straightforward and efficient route to deploying AI-driven functionalities.
No comments yet.
Sign in to be the first to comment.