FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
Transformers.js Has a Free API That Runs AI Models Directly in the Browser
NewsWeb Development

Transformers.js Has a Free API That Runs AI Models Directly in the Browser

via Dev.to WebdevAlex Spinov2h ago

Transformers.js brings Hugging Face models to JavaScript. Run NLP, vision, and audio models locally — no server, no API keys, no costs. Text Generation import { pipeline } from " @xenova/transformers " ; const generator = await pipeline ( " text-generation " , " Xenova/gpt2 " ); const result = await generator ( " The future of web scraping is " , { max_new_tokens : 100 , temperature : 0.7 , }); console . log ( result [ 0 ]. generated_text ); Sentiment Analysis const classifier = await pipeline ( " sentiment-analysis " ); const results = await classifier ([ " This product is amazing, best purchase ever! " , " Terrible quality, broke after one day. " , " It's okay, nothing special. " , ]); // [{ label: 'POSITIVE', score: 0.99 }, { label: 'NEGATIVE', score: 0.98 }, ...] Text Embeddings: Semantic Search const embedder = await pipeline ( " feature-extraction " , " Xenova/all-MiniLM-L6-v2 " ); const embedding1 = await embedder ( " web scraping tools " , { pooling : " mean " , normalize : tru

Continue reading on Dev.to Webdev

Opens in a new tab

Read Full Article
0 views

Related Articles

Demonetization Simulation
News

Demonetization Simulation

Dev.to • 36m ago

OneLuaPro v5.5.0.1 released
News

OneLuaPro v5.5.0.1 released

Lobsters • 39m ago

Is 1234567 Divisible by 7?
News

Is 1234567 Divisible by 7?

Medium Programming • 47m ago

News

Fresh Graduate, Zero Experience, One App on the Play Store

Medium Programming • 1h ago

Google Chrome Full Power Unlock | ২১ Super Useful Hidden Features | “Why didn’t I know these…
News

Google Chrome Full Power Unlock | ২১ Super Useful Hidden Features | “Why didn’t I know these…

Medium Programming • 1h ago

Discover More Articles