Are you looking to build powerful and scalable agentic applications on the .do platform? The .do SDK provides the tools you need to integrate, extend, and automate, but optimizing for performance is key to building robust and efficient solutions. In this post, we’ll dive into some essential performance tips to help you get the most out of the .do SDK and build agentic applications that can handle scale.
The .do SDK is designed to empower developers to leverage the full potential of the .do platform. Whether you're building a simple integration or a complex agent handling high volumes of data, understanding performance can make a significant difference.
The .do SDK is your gateway to interacting with the core functionalities of the .do platform programmatically. It offers libraries, tools, and documentation to facilitate various tasks, including:
With this power comes the responsibility to use the SDK efficiently.
This simple example demonstrates how easy it is to trigger an agent execution using the SDK. However, for more complex scenarios and higher loads, considering performance becomes crucial.
Here are some key strategies to optimize the performance of your agentic applications built with the .do SDK:
Below are some common questions about the .do SDK:
What is the .do SDK? 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.
What can I do with the .do SDK? 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.
What programming languages does the SDK support? The SDK supports various programming languages, with comprehensive documentation and examples available for popular choices like TypeScript/JavaScript, Python, and more coming soon.
How do I get started with the .do SDK? 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.
Building scalable agentic solutions with the .do SDK requires a focus on performance from the ground up. By implementing these tips, you can ensure your agents are not only functional but also efficient and capable of handling the demands of your applications. Start optimizing today and unlock the full potential of 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');