New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@covalenthq/ai-agent-sdk

Package Overview
Dependencies
Maintainers
0
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@covalenthq/ai-agent-sdk

  • 0.2.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

AI Agent SDK for TypeScript

📖 Documentation | ✍🏻 ZEE Use-cases


NPM Version NPM Downloads GitHub license GitHub last commit GitHub contributors GitHub issues GitHub pull requests

GitHub stars GitHub forks

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.

Features

  • 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

Using the SDK (Quick Start)

1. Start with a template

npx @covalenthq/create-zee-app@latest

This will create a new project with a basic setup.

2. Modify the agent

const agent1 = new Agent({
    name: "Agent1",
    model: {
        provider: "OPEN_AI",
        name: "gpt-4o-mini",
    },
    description: "A helpful AI assistant that can engage in conversation.",
});

3. Modify the ZEE Workflow

const zee = new ZeeWorkflow({
    description: "A workflow of agents that do stuff together",
    output: "Just bunch of stuff",
    agents: { agent1, agent2 },
});

4. Run the Zee Workflow

(async function main() {
    const result = await ZeeWorkflow.run(zee);
    console.log(result);
})();

🤝 Contributing

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.

Show your support

Give a ⭐️ if this project helped you!

📝 License

This project is MIT licensed.

Keywords

FAQs

Package last updated on 06 Feb 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc