In today's interconnected digital landscape, the ability to seamlessly integrate different systems and services is paramount. For developers working with the .do platform and building powerful agentic applications, this is even more critical. That's where the .do SDK comes in – your key to unlocking dynamic integrations and extending the platform's capabilities.
The .do SDK, or Software Development Kit, is a comprehensive suite of tools, libraries, and documentation designed to empower developers. It provides everything you need to easily integrate with and extend the rich functionality of the .do platform, enabling you to build more sophisticated and connected agentic applications.
Think of it as your developer toolkit for the .do ecosystem. It streamlines the process of connecting external services, automating workflows, and interacting directly with the core features of the platform from within your own code.
With the .do SDK, the possibilities for your agentic applications are virtually limitless. You can:
This is the mantra of the .do SDK. It provides the foundation for developers to:
This simple TypeScript example demonstrates how easily you can interact with an agent using the .do SDK. With a few lines of code, you can instantiate an agent and trigger its execution.
Ready to start integrating your external services with the .do platform? Getting started with the .do SDK is straightforward.
You can download the SDK directly from your .do platform dashboard. Our comprehensive developer documentation provides detailed installation instructions, quickstart guides, and tutorials to help you hit the ground running. The SDK supports various programming languages, with excellent support for popular choices like TypeScript/JavaScript and Python, and more language bindings on the horizon.
Q: What is the .do SDK?
A: The .do SDK is a Software Development Kit that provides tools, libraries, and documentation to help developers integrate with and extend the functionality of the .do platform.
Q: What can I do with the .do SDK?
A: You can use the .do SDK to build custom agents, connect external services, automate workflows, and interact with the core features of the .do platform directly from your code.
Q: What programming languages does the SDK support?
A: The SDK supports various programming languages, with comprehensive documentation and examples available for popular choices like TypeScript/JavaScript, Python, and more coming soon.
Q: How do I get started with the .do SDK?
A: You can get started by downloading the SDK from your .do platform dashboard or by following the installation instructions in our developer documentation. We also offer quickstart guides and tutorials.
The .do SDK is your gateway to building more powerful, connected, and intelligent agentic applications. By enabling seamless integration with external services, it empowers you to unlock new possibilities and build innovative solutions on the .do platform. Download the SDK today and start building your integrated future!
import { Agent } from '@do/sdk';
const myAgent = new Agent('my-agent-id');
await myAgent.run({
input: { data: 'process this' }
});
console.log('Agent execution complete');