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

@scoopika/scoopika

Package Overview
Dependencies
Maintainers
1
Versions
70
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@scoopika/scoopika

Run AI agents and multi-agent boxes with persistent history and external tools in your application in seconds with real-time streaming hooks, data validation, and auto healing out-of-the-box

  • 1.3.6
  • npm
  • Socket score

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

Scoopika

Documentation | Github repo

This package is used to:

  1. Run AI agents and multi-agent boxes.

  2. Manage chat and history sessions.

  3. Equip agents with external tools & custom functions.

  4. Extract structured data using agents.

  5. Go crazy and pass agents as tools to other agents so they can call each other.

  6. Stream responses with built-in streaming hooks.

  7. Built-in support for vision (and soon sound and videos).

and much more... check the docs for more info.

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",
  engines: {
    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 07 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