If a Raindrop.io item tagged with 'download, xxxx, nsfw, videos', then
Integrations - Jules
Astro
GitLab.org / project-templates / jsonnet · GitLab
Overview | Quick Start
n8n.cloud
(9+) ALL FAQs B | All Responses
MDN Javascript - Software Development - From The Desk of Kevo
Platform UI | Zapier
Quick Guides for Using Pieces | Pieces Docs
Da Lab Infinite - Google Drive
Llms
Google for Developers Blog - News about Web, Mobile, AI and Cloud
Web Maker
Reddit Integrations — Raindrop.io
Connect Craft to ChatGPT with MCP
AI Inline on Setapp | BoltAI Documentation
cybersoulja_2011-02-20T14_15_44-08_00.mp3
Browser Extension ― Raindrop.io Help
Raindrop.io — All in One Bookmark Manager
If a Raindrop.io item tagged with 'download, xxxx, nsfw, videos', then
How this automation works
If
New item tagged
Polling trigger This trigger fires when you tag an item with a specific tag in Raindrop.io
Trigger ingredients
Title Url Description ThumbnailUrl Tags CreatedAt Domain Id Note
Then
Upload file from URL
Action This action will download a file at a given URL and add it to Google Drive at the path you specify. NOTE: 100 MB file size limit.
Action fields
url filename path
And
Add row to spreadsheet
Action This action will add a single row to the bottom of the first worksheet of a spreadsheet you specify. Note: a new spreadsheet is created after 2000 rows.
Action fields
filename formatted_row path
Keysmith - Chrome Web Store
Get started | MacOS
Thank you — Pieces for Developers
api.pushcut.io/D79n94B4AAEf2XO53HzBa/execute?shortcut=Get Data Jar Store
XXXX
# Building a Community of Innovation: The Path to a Million Users | Glasp
Extension API
Warp
APIs — Firefox Source Docs documentation
APIs
Running the pipeline API
You can use the Transformer.js pipeline API directly to perform inference, as long as the model is in our model hub.
The Transformers.js documentation provides a lot of examples that you can slightly adapt when running in Firefox.
In the example below, a text summarization task is performed using the summarization task:
const { createEngine } = ChromeUtils.importESModule("chrome://global/content/ml/EngineProcess.sys.mjs");
const options = {
taskName: "summarization",
modelId: "mozilla/text_summarization",
modelRevision: "main"
};
const engine = await createEngine(options);
const text = 'The tower is 324 metres (1,063 ft) tall, about the same height as an 81-storey building, ' +
'and the tallest structure in Paris. Its base is square, measuring 125 metres (410 ft) on each side. ' +
'During its construction, the Eiffel Tower surpassed the Washington Monument to become the tallest ' +
'man-made structure in the world, a title it held for 41 years until the Chrysler Building in New ' +
'York City was finished in 1930. It was the first structure to reach a height of 300 metres. Due to ' +
'the addition of a broadcasting aerial at the top of the tower in 1957, it is now taller than the ' +
'Chrysler Building by 5.2 metres (17 ft). Excluding transmitters, the Eiffel Tower is the second ' +
'tallest free-standing structure in France after the Millau Viaduct.';
const request = { args: [text], options: { max_new_tokens: 100 } };
const res = await engine.run(request);
console.log(res[0]["summary_text"]);