Are you a developer looking to inject intelligent, automated workflows directly into your applications? Do you want to leverage the power of AI and streamline complex tasks with simple function calls? Look no further than the sdk.do SDK, your key to unlocking the full potential of .do Agentic Workflows.
Build Smarter with the .do SDK
The sdk.do SDK is a powerful Software Development Kit specifically designed to bridge the gap between your applications and the robust capabilities of the .do platform. It allows you to easily integrate and interact with .do Agentic Workflows, turning complex processes into simple API calls. Imagine automating tasks, integrating sophisticated AI models, and delivering services-as-software with minimal effort – that's the power the sdk.do SDK puts in your hands.
Integrate Agentic Workflows into Your Applications Seamlessly
The core of the sdk.do SDK is its ability to make interacting with .do workflows incredibly straightforward. Instead of dealing with complex API endpoints and data formatting, you can simply call a workflow by its name and pass in the necessary parameters. The SDK handles the underlying communication, allowing you to focus on building your application's core logic.
For Developers: Getting Started is Easy
Getting started with the sdk.do SDK is designed to be as painless as possible. You can easily install it using popular package managers like npm or yarn:
npm install @dot-do/sdk
or
yarn add @dot-do/sdk
Once installed, you can begin leveraging the power of the Agent class, the central component for interacting with .do workflows.
Here's a simple example demonstrating how to use the SDK to call a "summarize" workflow:
import { Agent } from "@dot-do/sdk";
const agent = new Agent("your-api-key");
async function summarizeText(text: string) {
const response = await agent.do("summarize", { text });
console.log(response.data);
}
summarizeText("Your long text here...");
This concise code snippet illustrates the simplicity of invoking a .do workflow. You create an Agent instance with your API key, call the .do() method with the workflow name ("summarize") and the required parameters ({ text }), and the SDK handles the rest, returning the response from the workflow.
Flexible and Versatile
The sdk.do SDK is designed for flexibility. Whether you're building backend services with Node.js or dynamic frontend applications in the browser, the SDK is built to work seamlessly in both environments. This allows you to standardize your interaction with .do workflows across your entire application architecture.
Frequently Asked Questions
Start Building Smarter Today
The sdk.do SDK is more than just a library; it's your gateway to building more intelligent, efficient, and powerful applications. By seamlessly integrating with .do Agentic Workflows, you can offload complex tasks, leverage cutting-edge AI capabilities, and free up your development team to focus on innovation.
Ready to experience the difference? Head over to sdk.do to learn more and start integrating the power of agentic workflows into your next project.