Doc-OCR router using Jev TypeSafe AI A Jev-powered router... that looks at a PDF page by page, decides which pages actually need OCR, extracts the rest locally. Result: save cost on # OCR pages + speedshow more

Misbah Syed
26,900 görüntüleme • 9 gün önce
Built a model router with Jev by TypeSafe AI.... Jev decides what model fits your request best and the request is sent to that model.show more

Duncan
118,152 görüntüleme • 10 gün önce
China open-sourced a peanut-sized OCR that parses entire 100-page... PDFs in one shot.. It's called Unlimited-OCR. Only 3B params. Runs locally. Every other OCR tool chops your doc into pages and loses the thread. this one reads the whole thing in a single pass. → One-shot "long-horizon" parsing (32K context window) → Multilingual, out of the box → 93% on the standard parsing benchmark (+6 over baseline) → <0.11 error rate past 40 pages → Runs 100% locally on your own hardware → Works with Transformers, vLLM, SGLang, Docker, Ollama, llama.cpp Traditional cloud OCR (Textract, Google Vision, Azure Doc Intelligence) costs $1.50–$15 per 1,000 pages. This runs on your machine. For free. Forever. Baidu built it explicitly to push DeepSeek-OCR one step further. Already at 1.9M downloads on Hugging Face and most people have no idea it exists yet. 100% open source.show more

Superman
1,107,148 görüntüleme • 2 ay önce
Baidu just open-sourced an OCR model that reads entire... 40-page documents in one shot. It's called Unlimited-OCR. 3 billion parameters but only 500 million active during inference. Runs 100% locally on your machine. Why this matters: traditional OCR tools chop documents page by page. Tables that span two pages break. Reading order gets lost. Cross-page context disappears. Unlimited-OCR processes the whole document at once. 32K context window. Text, formulas, tables, reading order all preserved across pages. Output comes out as clean structured Markdown. → 93% accuracy on the standard benchmark. +6 points over the baseline. → Error rate stays below 0.11 even past 40 pages. → Multilingual out of the box. → 2.12 million downloads on Hugging Face last month. 14,600 GitHub stars. For context: Amazon Textract, Google Cloud Vision, and Azure Document Intelligence all charge per page. This runs locally for free.show more

Vaibhav Sisinty
416,060 görüntüleme • 2 ay önce
Unlimited-OCR is a 3B parameter model that parses entire... 100-page PDFs in one shot — no page chunking, no lost context. +32K context window, reads the whole document in a single pass +93% on standard parsing benchmarks, +6 over baseline +Under 0.11 error rate past page 40 — where every other OCR tool falls apart +Multilingual out of the box, runs locally via Transformers, Ollama, llama.cpp, Docker +Textract, Google Vision, and Azure Doc Intelligence charge $1.50–$15 per 1,000 pages 1.9M downloads on HuggingFace and most people have never heard of it. This runs on your machine. For free. Forever. Model link:show more

0xMarioNawfal
84,500 görüntüleme • 2 ay önce
we built blazing fast computer/browser use with Jev +... Stagehand. this task cost $0.001 and executed at near instant speed (in a remote browser btw) the loop: observe the page, send a11y tree as state + actions as questions, Jev decides the next action, then Stagehand executes it.show more

Kyle Jeong
70,239 görüntüleme • 10 gün önce
Jev + GrokBot is the best AI agent system... I’ve built in my life It just made my setup CHEAPER and FASTER than what 95% of people are running... setup takes literally 7 minutes: prompt → GrokBot → Jev decision → GrokBot execution → result step 1 → open TypeSafe AI , create API key (keep it off chat paste) step 2 → tell Grok Bot: store TYPESAFE_API_KEY in the secure field step 3 → prompt Grok Bot: install typesafe-sdk on Agent Computer + smoke system_one (Choice) step 4 → tell Grok Bot: build the usage lab (router, dry-run, config, logs) - or clone Github below step 5 → add skill jev-usage-router: before browser / research / retry / extra bot → call the router, honor action step 6 → stay shadow first, read logs, then active when you trust it - kill switch: bypass jev or enabled: false step 7 → flip active: GrokBot obeys route - Jev decides - GrokBot executes - humans control irreversible actions the result: Jev + GrokBot the best and fastest agent running directly on your computer rn, I’ve already tested it on routine tasks - and the results are genuinely incredible You can come up with endless ways to use Jev + GrokBot - but the most important thing is to install it as soon as possible Copy this 2028 setup, explore my repo below - then read the full Jev deep dive ↓show more

codila
379,149 görüntüleme • 8 gün önce
Also have been playing with TypeSafe AI Jev, insane!... So many immediate use cases and new apps are possible. What a time to be a builder! Sharing some experiments here starting with: Keystroke oracle / predictive launcher: Your launcher ranks by aliases, fuzzy match, and habit. Jev reads intent: type "the pdf I just downloaded" and the newest PDF is already the top hit with a full confidence on every keystroke, in ~100 msshow more

nader dabit
431,063 görüntüleme • 9 gün önce
I used Jev to classify 1,018 AI research papers.... The result: $0.08 total cost and 256ms median end-to-end latency per paper. The pipeline was: 1. Summarize each paper with DeepSeek V4 Flash 2. Send the title + summary + 24 possible topics to Jev 3. Use Jev to classify each paper 4. Visualize everything on The summaries cost $3.99 on Together AI. The classifications cost $0.08 on TypeSafe AI. So for just over $4 of inference, I ended up with a pretty useful way to explore the top AI research papers from the past year. I think this is where things are heading: different models for different parts of the workflow, instead of using one model for everything. I’m running evals on the Jev classifications before replacing the current ones, but the site is already live:show more

Hassan
333,468 görüntüleme • 10 gün önce
Jev + Muse is the first AI agent system... that actually automate 100% of my life 99% of people pay 200x more for slower AI agents - while 1% run this 2030 setup just 5 min and setup is ready: prompt → Muse → Jev decision → Muse execution → result step 1 → create your Jev API key (typesafe website) step 2 → clone and install the complete router from Github below python3 -m venv .venv && .venv/bin/pip install -r requirements.txt && cp config.example.yaml config.yaml step 3 → export the key before running anything: export TYPESAFE_API_KEY='YOUR_KEY' add the same export to ~/.zshrc or ~/.bashrc if you want it to survive a new terminal session step 4 → give your agent skill/jev-decision-layer.SKILL.md and connect it to src/router.py + recipes/ , raw Jev returns probabilities - the router converts them into executable actions step 5 → test the entire chain, not the raw Jev API: .venv/bin/python -m src.cli '{"goal":"what is 2+2?","kind":"chat"}' the final JSON should contain action, reason, mode, jev_used and confidence details step 6 → keep mode: shadow for 20–50 real decisions: the agent works normally while Jev’s routes are logged and checked; promote only reliable question packs step 7 → switch to mode: active with hard confidence gates: ≥0.80 act automatically, 0.50–0.79 advisory only, <0.50 escalate to the human the result: Jev + Muse is a system that decides what to do, what to skip and when to bring in - I’ve tested it across my daily workflows, and it’s the best setup I’ve found for automating routine Take the exact stack I built, run it yourself from the repo - then read the full Jev architecture behind it ↓show more

codila
90,794 görüntüleme • 5 gün önce
Jev + GrokBot is the best GTM system I've... ever built It just made my GTM x200 CHEAPER and x400 FASTER than what 95% of teams are running... setup takes literally 9 minutes: prompt → GrokBot → Jev routes every candidate → GrokBot opens only survivors → campaign step 1 → open TypeSafe AI, create API key (keep it off chat paste) step 2 → tell GrokBot: store TYPESAFE_API_KEY in the secure field step 3 → prompt GrokBot: install typesafe-sdk on Agent Computer + smoke system_one (Choice) step 4 → point it at a target: "read end to end, pull positioning, ICP, every proof point. no copy yet" step 5 → add skill gtm-router: every candidate from X / LinkedIn / YouTube gets 6 typed questions → CHEAP SKIP / OPEN FULL / FLAG KOL step 6 → let Jev rank hook archetypes by viral rate, not by how often people post them - this is where the whole playbook comes from step 7 → GrokBot assembles the KOL shortlist and the 7-day plan - you stay in control of anything irreversible the result: → 3,412 candidates, X, LinkedIn and YouTube. → 15.7 seconds. $0.41. → me doing the same reading: 6h 12m. 8 grok bots brief it, Jev decides, GrokBot executes. no fine-tuning, no embeddings, no vector db - 6 typed questions and a schema. Setup your GrokBot JEV GTM today, then read the article below to learn how to build an agent team with JEV.show more

Movez
85,453 görüntüleme • 7 gün önce
experimenting with the first Jev powered websites 1. Ploy... looks through your site data, conversion rates, enriched visitors, etc. 2. Finds what's working and where specific types of users are dropping off 3. Comes up with hypotheses for how to align messaging to those user groups 4. when a page is loaded, JEV selects the right copy AND design for each individual part of the page to align to that audience segment 5. tracks the results in realtime and improves the hypotheses ... in 25ms with no real impact to LCP 🤯show more

brryant
21,503 görüntüleme • 7 gün önce
Built a tax document classifier with Jev. We ingest... thousands of tax documents using an LLM pipeline I built last tax season. I read multiple articles as late as April this year claiming AI fails at tax document classification. Wasn't the case back then, and it's proved wrong again now. Jev classifies 100% of our tax document corpus at $0.001 per page. 34x cheaper and 6x faster than the LLM setup. Open sourcing it:show more

Nakshatra Saxena
244,472 görüntüleme • 9 gün önce
going to regret this... $77K in 7 days. 1,630... orders. 3.38% conversion. every page built by AI in 60 seconds. 5 countries running from AI translations that took 4 minutes total. a backend depositing $25K/month from traffic I already paid for. I check my phone twice a day. the AI pages do the rest I put the full AI dropshipping system into a 36-page guide - how to find products from tiktok comments for $0, how AI builds pages that convert at 3.4%, the demographics that print, the $50 test protocol, international expansion in one afternoon, and the backend that turns $50K into $77K without new ad spend Comment "AI" and I'll send it over (must be following)show more

Alex Minecan
20,100 görüntüleme • 1 ay önce
Jev + Kimi K3 for fraud detection! TLDR: Jev... classified 100 emails in 1.42 seconds, then I routed the uncertain cases to Kimi K3. The full pipeline got 96/100 correct for only ~$0.07. Video is not sped up, check out the live run! Here was my process: I gave Jev 100 emails to classify (a mix of 50 legit & 50 fraudelent emails). It classified all of them in 1.42 seconds. An underrated feature about Jev is it will give you the confidence score for a classification, so I routed any prediction under 95% confidence to Kimi K3 to be fully sure. 31 emails fell below that threshold. After routing those to Kimi K3, the combined pipeline reached 96% accuracy. The full run took 16 seconds & ~$0.07 in inference costs: - $0.068 from Kimi K3 on Together AI - $0.003 (1/3 of a cent) from Jev on TypeSafe AI. I think this is a really interesting pattern: use a fast specialized model like Jev for the narrow task, then route the uncertain cases to a larger LLM. I feel like this kind of approach could be a game changer for use cases like fraud or anything realtime. You can use the speed & low cost of Jev while having a larger LLM as a fallback to ensure high accuracy.show more

Hassan
60,099 görüntüleme • 10 gün önce
Which option do you prefer, for the feature of... uploading videos to generate FBX, installing it locally on your computer without paying anything, and paying the cost of the cloud by calling it through a web page in the cloud?show more

CYANPUPPETS
16,440 görüntüleme • 2 yıl önce
I shared 10 Jev use cases for marketers. Here... are 10 more: 11. Ad creative scoring - Feed it 100 ad variations. Jev can score which hooks, headlines, or angles are most worth testing first. 12. Social post filtering - Monitor thousands of posts. Jev can flag the ones worth replying to, reposting, or using as sales signals. 13. ICP detection - Give it a company, profile, or website. Jev can score how closely it matches your ideal customer. 14. Buying signal detection - Someone posts that they're switching tools, hiring, raising money, or struggling with a problem. 15. Comment prioritization - Get hundreds of comments across LinkedIn, X, YouTube, or Product Hunt. Jev can score which ones deserve a reply first. 16. Review analysis - Feed it thousands of customer reviews. Jev can classify sentiment, complaints, feature requests, and purchase intent. 17. Influencer matching - Give it 5,000 creators. Jev can score which ones best match your product, audience, and campaign. 18. Sponsorship qualification - Feed it newsletters, podcasts, or creator media kits. Jev can score audience fit, relevance, and whether they're worth reviewing. 19. UGC selection - Give it dozens of videos, screenshots, and testimonials. Jev can score which ones are strongest for ads or landing pages. 20. Product Hunt monitoring - Scan launches, comments, and makers to find competitors, customers, partners, or interesting products. The more repetitive marketing decisions you have to make at scale, the more interesting Jev becomes.show more

Yum⋆₊˚
385,317 görüntüleme • 8 gün önce
Our AR coloring book drops this Sunday at 1... pm EST 👀 ✨ Color in the pages, just like any other coloring book. But, when the colored page is viewed through a smartphone or tablet camera, it comes alive with AR animations and sound using the same colors as on the page!show more

Micah Johnson 👨🏾🚀🚀
12,785 görüntüleme • 2 yıl önce
Analyzed a few thousand hours of agentic runs with... TypeSafe AI Jev - turns out it's: • The best option I've tested at measuring progress and estimating completion • Dangerous if you use it for detecting harmful commands (more on that below) and • Not very good at catching models being lazy Actual prompts and results in the article:show more

Hrishi
28,176 görüntüleme • 6 gün önce
Claude Code + Google Stitch 2.0 is f*cking cracked... 🤯 Google just dropped a free AI design agent that solves Claude Code's biggest weakness: frontend design. One screenshot of a high-converting landing page → a production-ready site for your brand in minutes. All inside Google Stitch + Claude Code. Perfect for DTC brands and agencies who are building advertorial pages and product launch pages for Meta but burning days on designer back-and-forth. If you're running Meta ads and need 5-10 different landing pages testing different hooks, angles, and offers — each one targeting a different audience and pain point — you know the bottleneck isn't the ads. It's the pages. Briefing designers, waiting for revisions, paying $2-5K per page. Stitch eliminates the design bottleneck: → Find a high-converting advertorial that's scaling on Meta → Screenshot it and drop it into Stitch (powered by Gemini 3.1) → Stitch redesigns it with your brand's colors, fonts, and imagery using Nano Banana 2 → Edit sections visually — headlines, CTAs, layouts — without touching code → Export the code and paste it into Claude Code → Claude builds the full production site and deploys to Vercel or Netlify in 60 seconds No designer. No $3K per landing page. No Claude Code frontend that looks like a template from 2019. What you get: → Designer-quality landing pages and advertorials built in minutes, not weeks → Visual editing so you actually see the design before you code it → Nano Banana 2 generating on-brand product imagery and hero shots → A repeatable system — new angle, new page, same pipeline Built 100% with Google Stitch 2.0 + Claude Code. I put together a full playbook showing the exact workflow: how to find winning pages, redesign them in Stitch, and deploy with Claude Code. Want it for free? > Like this post > Comment "STITCH" And I'll send it over (must be following so I can DM)show more

Mike Futia
126,527 görüntüleme • 6 ay önce
Today we're releasing Monitoring by Firecrawl 📡 Just enter... a URL, describe what you want to track, and /monitor notifies your AI agent via webhook the moment pages or sites change. Use up to 90% fewer LLM tokens by only ingesting what changes on a page.show more

Firecrawl
101,256 görüntüleme • 4 ay önce