Socket
Book a DemoInstallSign in
Socket

superagentai-js

Package Overview
Dependencies
Maintainers
1
Versions
152
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

superagentai-js

latest
Source
npmnpm
Version
0.2.40
Version published
Weekly downloads
46
76.92%
Maintainers
1
Weekly downloads
 
Created
Source

Superagent JavaScript SDK 🥷

The open framework for building AI Assistants

npm shield Fern GitHub Contributors GitHub Last Commit GitHub Issues GitHub Pull Requests Github License Discord

Superagent is an open source framework that enables any developer to integrate production ready AI Assistants into any application in a matter of minutes.

Installation

Add this dependency to your project's build file:

npm install superagentai-js
# or
yarn add superagentai-js

Usage

import { Superagent, SuperAgentClient } from "superagentai-js";

const client = new SuperAgentClient(token="API_TOKEN")
const agent = await client.agent.create({
    name: "My Agent",
    description: "My Awesome Agent",
    isActive: True,
    llmModel: "GPT_4_1106_PREVIEW",
    promprt: "You are a helpful assistant"
});

output = await client.agent.invoke(agent.data.id, {
    input: "Hi there!",
    enableStreaming: false,
    sessionId: "123",
});

console.log("Received response from superagent", agent.data)

Handling Exceptions

All exceptions thrown by the SDK will sublcass SuperAgentError.

improt { SuperAgentError } from "superagentai-js";

try {
  client.agent.invoke(...)
} catch (err) {
  if (err instanceof SuperAgentError) {
    console.log(err.statusCode);
    console.log(err.message);
  }
}

Acknowledgements

A special thanks to the Fern team for all support with the Superagent libraries and SDKs ❤️.

Beta status

This SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning the package version to a specific version. This way, you can install the same version each time without breaking changes unless you are intentionally looking for the latest version.

Contributing

While we value open-source contributions to this SDK, this library is generated programmatically. Additions made directly to this library would have to be moved over to our generation code, otherwise they would be overwritten upon the next generated release. Feel free to open a PR as a proof of concept, but know that we will not be able to merge it as-is. We suggest opening an issue first to discuss with us!

On the other hand, contributions to the README are always very welcome!

FAQs

Package last updated on 23 May 2024

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