Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@scoopika/scoopika

Package Overview
Dependencies
Maintainers
0
Versions
70
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@scoopika/scoopika

Create AI agents that can see, hear, speak, take actions, and collaborate together. with long-term memory, custom external tools & APIs, and custom knowledge sources. With real-time streaming hooks, data validation, and smart errors recovery

  • 1.5.0
  • npm
  • Socket score

Version published
Weekly downloads
17
increased by70%
Maintainers
0
Weekly downloads
 
Created
Source

Scoopika

Documentation | Github repo

This package is used to run AI agents that can see, talk, listen, take actions and collaborate together.

With built-in support for streaming, full type-safety and data validation.

Usage

To use this package, you first need to create a Scoopika account here. after that you can create agents and run them.

Also make sure to generate an access token from here.

import { Scoopika, Agent } from "@scoopika/scoopika";

const scoopika = new Scoopika({
  token: "YOUR_SCOOPIKA_TOKEN",
  keys: {
    openai: "OPENAI_KEY", // replace based on the providers your agents use in the platform
  },
});

const agent = new Agent("AGENT_ID", scoopika);

(async () => {
  const response = await agent.run({
    inputs: { message: "Hello!" },
    hooks: {
      onToken: (t) => console.log(t),
    },
  });
})();

For full documentation and examples, refer to the docs.

Keywords

FAQs

Package last updated on 25 Jun 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

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