
Security News
Google’s OSV Fix Just Added 500+ New Advisories — All Thanks to One Small Policy Change
A data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
@toil/neurojs
Advanced tools
Unoffical library for a short retelling of YouTube videos, articles and texts with Yandex API
An unofficial library for interaction with Yandex Neuro API, which supports working with JavaScript, TypeScript, and also has built-in parted types for Typebox.
[!WARNING] The library was created exclusively for research purposes and isn't intended for commercial use. All rights to the original software belong to their respective right holders. The library isn't affiliated with the original rights holders
Now library supports working with:
https://300.ya.ru/TOKEN
)The library supports working with worker servers, to do this, you need to create a NeuroWorkerClient
client and specify the domain of the worker server, for example neuro-worker.toil.cc
.
[!WARNING] To work with Node.js or with Browser you need to perform additional configuration or use with neuro-worker. All examples can be seen here
Install via Bun:
bun install @toil/neurojs
Install via Node:
npm install @toil/neurojs
To start working with API, you need to create NeuroClient. This can be done using the line provided below
Standard client:
const client = new NeuroClient();
const result = await client.summarizeVideo({
url: "...",
language: "en",
});
const result2 = await client.summarizeText({
text: "Super long text (300+ symbols)...",
});
const result3 = await client.summarizeArticle({
url: "https://toil.cc",
});
const result4 = await client.getSharingContent({
token: "hoOAM7gs",
});
Proxying via neuro-worker:
const client = new NeuroWorkerClient({
host: "neuro-worker.toil.cc/browser",
hostTH: "neuro-worker.toil.cc/th",
});
You can see more code examples here
To build, you must have:
Don't forget to install the dependencies:
bun install
Start building:
bun build:all
Build without updating proto and without generating docs:
bun build:skip-proto
The library has minimal test coverage to check its performance.
Run the tests:
bun test
FAQs
Unoffical library for a short retelling of YouTube videos, articles and texts with Yandex API
The npm package @toil/neurojs receives a total of 6 weekly downloads. As such, @toil/neurojs popularity was classified as not popular.
We found that @toil/neurojs demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
A data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
Research
/Security News
175 malicious npm packages (26k+ downloads) used unpkg CDN to host redirect scripts for a credential-phishing campaign targeting 135+ organizations worldwide.
Security News
Python 3.14 adds template strings, deferred annotations, and subinterpreters, plus free-threaded mode, an experimental JIT, and Sigstore verification.