Build autonomous AI agents for the Zero-Employee Enterprise (ZEE). Create intelligent, context-aware agents with unprecedented ease and functionality. The Agent SDK supports single model inference calls to multi-agent systems that use tools. The SDK provides primitives that are designed to be easily composable, extendable and flexible for advanced use cases.
- LLMs - a unified interface for all LLMs
- Agents - a single model with a system prompt and a set of tools
- Tools - extend the capabilities of agents with external tools
- ZEE Workflows - compose agents to solve complex problems
npx @covalenthq/create-zee-app@latest
This will create a new project with a basic setup.
const agent1 = new Agent({
name: "Agent1",
model: {
provider: "OPEN_AI",
name: "gpt-4o-mini",
},
description: "A helpful AI assistant that can engage in conversation.",
});
const zee = new ZeeWorkflow({
description: "A workflow of agents that do stuff together",
output: "Just bunch of stuff",
agents: { agent1, agent2 },
});
(async function main() {
const result = await zee.run();
console.log(result);
})();
Contributions, issues and feature requests are welcome! Feel free to check issues page.
Or join the AI Agent SDK Working Group to get help and discuss the future of the SDK.
Give a ⭐️ if this project helped you!
This project is MIT licensed.