Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@scoopika/scoopika
Advanced tools
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
This package is used to:
Run AI agents and multi-agent boxes.
Manage chat and history sessions.
Equip agents with external tools & custom functions.
Extract structured data using agents.
Go crazy and pass agents as tools to other agents so they can call each other.
Stream responses with built-in streaming hooks.
Built-in support for vision (and soon sound and videos).
and much more... check the docs for more info.
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.
FAQs
Used to run AI agents on the server-side with APIs to manage conversations sessions and more. when building a web applications you'll use this sdk to run a Scoopika endpoint, a simple API endpoint used with built-in support for streaming and caching so yo
We found that @scoopika/scoopika demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.