The world of business is constantly evolving, demanding greater efficiency, flexibility, and automation. At the heart of this transformation are powerful platforms designed to streamline complex operations and empower intelligent applications. If you're working with the .do platform, you know its potential. Now, imagine unlocking even more of that power, tailoring its capabilities to your specific needs and building truly custom solutions.
That's where the .do SDK - Software Development Kit comes in. It's your key to seamlessly integrating, building, and extending the dynamic capabilities of the .do platform.
Develop. Integrate. Extend. This badge encapsulates the very essence of the .do SDK. It provides developers with the tools, libraries, and documentation needed to go beyond the standard platform features and build truly agentic applications that automate your business processes in profound ways.
Simply put, the .do SDK is a comprehensive toolkit for developers. It provides everything you need to interact with the .do platform programmatically. Think of it as a bridge between your custom code and the powerful core features of the platform. Whether you want to connect external services, automate repetitive tasks, or build intelligent agents, the SDK provides the necessary building blocks.
The possibilities with the .do SDK are vast and exciting:
Ready to start leveraging the power of the .do SDK? Getting started is straightforward. You can typically download the SDK directly from your .do platform dashboard or find installation instructions in our comprehensive developer documentation. We provide quickstart guides and tutorials to help you hit the ground running and build your first agentic application.
The SDK supports popular programming languages like TypeScript/JavaScript, and Python support is on the horizon, ensuring you can work in your preferred environment.
To give you a taste of how simple yet powerful the SDK is, here's a quick example in TypeScript:
This simple snippet demonstrates how easily you can define and run an agent using the SDK, showcasing the intuitive API client design.
Here are answers to some common questions about the .do SDK:
The .do SDK is more than just a set of tools; it's an invitation to innovate. By providing developers with the power to deeply integrate and extend the platform's capabilities, the .do SDK empowers you to build highly customized, automated, and intelligent solutions.
Whether you're looking to streamline internal operations, build powerful customer-facing applications, or unlock new data insights, the .do SDK is your essential partner in automation. Dive in, explore the possibilities, and transform how you work with the .do platform.
import { Agent } from '@do/sdk';
const myAgent = new Agent('my-agent-id');
await myAgent.run({
input: { data: 'process this' }
});
console.log('Agent execution complete');