惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

宝玉的分享
宝玉的分享
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
MyScale Blog
MyScale Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
S
SegmentFault 最新的问题
Y
Y Combinator Blog
月光博客
月光博客
IT之家
IT之家
T
Tailwind CSS Blog
Last Week in AI
Last Week in AI
L
LangChain Blog
博客园_首页
MongoDB | Blog
MongoDB | Blog
P
Proofpoint News Feed
博客园 - Franky
WordPress大学
WordPress大学
云风的 BLOG
云风的 BLOG
M
MIT News - Artificial intelligence
V
Visual Studio Blog
小众软件
小众软件
博客园 - 叶小钗
博客园 - 三生石上(FineUI控件)
N
Netflix TechBlog - Medium

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How I built multi-model LLM routing on Groq's free tier
Sathvik 07 · 2026-05-01 · via DEV Community

I hit Groq's token limits building an AI research paper analyser. Here's the routing system I built to get around it — and why it made the app better.

I didn't plan to build a multi-model routing system.

I was just trying to summarise a 40-page research paper without paying for an API.

That's how Papers.ai started — a side project born out of frustration with how painful academic literature reviews are. You open a paper, it's 30 pages of dense methodology, and you spend 20 minutes just figuring out whether it's even relevant to what you're working on.

I wanted to fix that. And I wanted to fix it for free.


The setup

The stack was simple at first: React frontend, Node.js backend, Firebase for auth and storage, and Groq as the LLM provider.

Why Groq? Because it's fast. Genuinely, shockingly fast compared to most LLM APIs. And on the free tier, it's good enough to build real things.

The plan was: user uploads a PDF → extract text → send to Groq → get a summary back. Done.

Except it wasn't done. Not even close.


The first wall I hit

Groq's free tier has token limits per model per minute. When you're summarising a research paper, you're often pushing 8,000–15,000 tokens in a single request. Hit that limit and you get a 429 error. Hit it repeatedly and your app becomes unusable.

My first reaction was the obvious one: just truncate the paper. Send the first N tokens, get a summary.

That worked. It was also terrible. You'd miss the results section entirely, or skip the methodology, or get a summary that was confidently wrong because it only saw the abstract and introduction.

So truncation was out. I needed something smarter.


The routing idea

Here's what I noticed: Groq offers multiple models, and each has its own separate rate limit bucket.

  • llama3-8b-8192 — smaller, faster, 8k context
  • llama3-70b-8192 — bigger, smarter, 8k context
  • mixtral-8x7b-32768 — larger context window, 32k tokens

That last one was the key insight. Different tasks need different things. A quick keyword extraction doesn't need a 70B model. A deep synthesis of methodology across three papers probably does.

So instead of routing every request to one model and hoping for the best, I built a simple router that picks the model based on what the task actually needs.


How the routing works

The logic is straightforward — almost embarrassingly so once you see it:

function routeToModel(task, tokenCount) {
  if (tokenCount > 20000) {
    // Only mixtral can handle this context size
    return 'mixtral-8x7b-32768';
  }

  if (task === 'summary' || task === 'qa') {
    // These need reasoning ability — use the big model
    return 'llama3-70b-8192';
  }

  if (task === 'extraction' || task === 'keywords') {
    // Structured extraction doesn't need a 70B model
    return 'llama3-8b-8192';
  }

  // Default fallback
  return 'llama3-70b-8192';
}

Enter fullscreen mode Exit fullscreen mode

Then on every API call, before hitting Groq, I estimate the token count (rough heuristic: 1 token ≈ 4 characters), call the router, and send the request to whichever model it picks.

If that model is rate-limited, I fall back to the next best option and log it. The user never sees a 429 — they just get a slightly slower response.


The Genkit layer

The routing alone solved the rate limit problem. But I still had an architectural issue: my backend was a mess of ad-hoc Groq calls scattered across different route handlers.

That's where Genkit came in. Genkit (by Firebase/Google) lets you define "flows" — type-safe, structured pipelines for LLM tasks. Think of it like Express routes but for AI operations.

Each tab in Papers.ai (Summary, Extraction, Visualisation, Q&A) became its own Genkit flow:

const summaryFlow = defineFlow(
  { name: 'summarise', inputSchema: PaperInputSchema, outputSchema: SummarySchema },
  async (input) => {
    const model = routeToModel('summary', input.tokenCount);
    const result = await generate({ model, prompt: buildSummaryPrompt(input) });
    return parseSummaryOutput(result.text());
  }
);

Enter fullscreen mode Exit fullscreen mode

The output schema is the part I underestimated. When you define what the output should look like — sections, confidence scores, citation references — the model actually follows it much more consistently. Structured output via Genkit killed most of my prompt reliability problems overnight.


What changed after routing

Before routing: analysis took around 20 minutes if you include re-uploads, retries, and manually piecing together partial summaries.

After routing: under 60 seconds for a full paper. Not because the models got faster — because I stopped wasting tokens on the wrong model for the wrong task, stopped hitting rate limits mid-analysis, and stopped making the user re-upload papers they'd already processed (that's the Share ID system, which is a whole other post).


What I'd do differently

Use token counting properly. My "4 chars = 1 token" heuristic works 90% of the time and breaks badly the other 10% — especially on papers with lots of equations or non-English text. A proper tokenizer would make the routing more reliable.

Add a queue. Right now if two users hit the same model simultaneously and both get rate-limited, they both see a delay. A simple Redis queue would smooth that out entirely.

Expose the model choice to users. Power users would genuinely want to know "this summary used llama3-70b" and be able to override it. That transparency also builds trust.


Try it yourself

Papers.ai is live at papers-ai-delta.vercel.app — free tier lets you upload 5 papers a month. Throw a dense paper at it and see what the router picks.

The routing logic I described here is simple enough to drop into any Groq-based project. If you're building something on the free tier and hitting limits, the answer usually isn't "pay for a bigger plan" — it's "stop treating all tasks as identical."

Different tasks, different models. That's it.


I'm a 3rd-year CS student at Reva University. Building Papers.ai as a solo project taught me more about LLM infrastructure than any course has. If you have questions or want to talk about the Genkit architecture, drop a comment — happy to go deeper on any part of this.