Setup Guide
YouGist works with whichever AI provider you supply credentials for. This page walks you through getting an API key from each supported provider, or installing a free local model runner.
The three-step flow for any provider
- Get credentials. Either an API key from a cloud provider, or install Ollama / LM Studio and pull a model.
- Open YouGist Options. Click the YouGist toolbar icon, then the ⚙ gear button in the side panel.
- Pick your provider from the dropdown, paste your key (or set the local URL + model), and click Save. That's it — go summarize a video.
Cloud providers
All cloud providers below use the same flow: visit their console, generate an API key, paste it into YouGist's Options page. Your key stays in your browser — it never touches YouGist's servers, and it goes directly from your browser to that provider's official API.
OpenAI
The most widely-used commercial AI API. Reliable, fast, well-documented.
- Open platform.openai.com/api-keys and sign in (or create an account; phone verification required).
- Click Create new secret key, give it a name (e.g.
YouGist), and copy the value — it starts withsk-. You can't view it again after closing the dialog. - In YouGist Options: set Active provider to OpenAI, paste the key into API Key, click Save.
gpt-4o-mini
costs roughly $0.0001 per video summary.
Anthropic
Claude models. Strong at long-context reasoning and following formatting instructions precisely.
- Open console.anthropic.com/settings/keys and sign in.
- Click Create Key, name it, copy the value (starts with
sk-ant-). - In YouGist Options: Active provider → Anthropic, paste the key. The default model field already contains the cheapest Haiku model — leave it or paste a different one from Anthropic's model list.
Google Gemini
Generous free tier. Good first choice if you don't want to set up billing anywhere.
- Open aistudio.google.com/apikey and sign in with a Google account.
- Click Create API key, pick a Google Cloud project (or let it create one), and copy the key — starts with
AIza. - In YouGist Options: Active provider → Google Gemini, paste the key. Use the recommended chip
gemini-2.5-flashfor the best free-tier balance.
gemini-2.5-flash-lite
via the chip in Options.
xAI Grok
Grok by xAI. Sign-up often comes with a free monthly credit allowance.
- Open console.x.ai and sign in with your X (Twitter) account.
- Go to API Keys → Create API Key, copy the value (starts with
xai-). - In YouGist Options: Active provider → xAI Grok, paste the key. The default
grok-4-1-fast-non-reasoningis the fastest model — for higher quality, pick the reasoning chip.
DeepSeek
Independent provider with very competitive pricing.
- Open platform.deepseek.com/api_keys and sign in.
- Click Create API Key, copy (starts with
sk-). - In YouGist Options: Active provider → DeepSeek, paste the key.
deepseek-chat and
deepseek-reasoner model names are deprecated on
2026-07-24. YouGist defaults to the current deepseek-v4-flash
to avoid the breaking change.
Mistral AI
European AI provider, GDPR-friendly, strong multilingual coverage.
- Open console.mistral.ai/api-keys and sign in.
- Click Create new key, copy the value.
- In YouGist Options: Active provider → Mistral AI, paste the key.
Groq
Famously fast inference for open-source models. Summaries often complete in 1–2 seconds.
- Open console.groq.com/keys and sign in (Google / GitHub auth).
- Click Create API Key, copy (starts with
gsk_). - In YouGist Options: Active provider → Groq, paste the key.
OpenRouter
Aggregator — one key, 100+ models from every major provider plus open-source. Great if you want to A/B test models or use exotic ones that don't have direct integration.
- Open openrouter.ai/keys and sign in (Google / GitHub).
- Top up credits, then click Create Key, copy (starts with
sk-or-). - Browse openrouter.ai/models and copy the slug of the model you want — e.g.
anthropic/claude-sonnet-4.5ormeta-llama/llama-3.3-70b-instruct. - In YouGist Options: Active provider → OpenRouter, paste the key, paste the model slug.
Local models
Run an open-source model on your own machine. Free, private, no API key. Requires enough RAM for the model (4–8 GB for a 7B-parameter model, more for bigger ones).
Ollama
Command-line model runner. Tiny, fast to set up, runs on macOS, Linux, and Windows.
1. Install and start Ollama:
- Download from ollama.com/download and run the installer.
- Pull a model from your terminal:
This downloads ~5 GB.ollama pull qwen2.5:7bqwen2.5:7bis the recommended default — good multilingual coverage and fits on most laptops. - Start Ollama with CORS enabled so the extension can talk to it:
(WithoutOLLAMA_ORIGINS=* ollama serveOLLAMA_ORIGINS=*, Ollama rejects requests from extensions.)
2. Configure in YouGist:
- Open YouGist Options.
- Active provider → Ollama.
- Server URL:
http://localhost:11434(already the default). - Model:
qwen2.5:7b— or click any chip to swap. Click Save.
qwen2.5:3b for slower / low-RAM machines (faster, less detail);
qwen2.5:14b for better quality if you have 16+ GB RAM.
Pull the size you want with ollama pull qwen2.5:14b first.
LM Studio
GUI alternative to Ollama with a built-in model browser. Easier if you prefer clicking over typing.
1. Install and load a model:
- Download from lmstudio.ai and run the installer.
- Open LM Studio, click the search icon, find
qwen/qwen3-4b-2507(recommended: small, fast) and click Download. - Once downloaded, click Load Model at the top.
2. Start the local server:
- Switch to the Developer tab (left sidebar).
- Click Start Server — defaults to port
1234. - In server settings, make sure CORS is enabled so the extension can connect.
3. Configure in YouGist:
- Open YouGist Options.
- Active provider → LM Studio.
- Server URL:
http://localhost:1234(default). - Model: paste the exact model identifier shown in LM Studio (e.g.
qwen/qwen3-4b-2507) or click a recommended chip. - API Key: leave as
lm-studio(LM Studio ignores it but the OpenAI-compatible API requires a value). - Save.
qwen/qwen3.6-35b-a3b
if you have 32+ GB RAM. It's a reasoning model — YouGist already
sets max_tokens high enough to accommodate the thinking
phase.