VS Codium + Continue + OpenRouter + Qwen3 Coder: Free, No Credit Card, Powerful Coding Assistant
This guide is prepared for developers who:
- Have limited hardware resources (CPU/RAM) and cannot run local LLMs,
- Want to use powerful AI models without sharing credit card details,
- Value privacy, cost-efficiency, and accessibility.
It explains step-by-step how to use the Qwen3 Coder 480B A35B model β a massive, coding-optimized AI β inside VS Codium, completely free, with open-source tools, and without sharing any financial information.
π― Why This Stack?
- VS Codium: Fully open-source, Microsoft-free IDE.
- Continue: Plugin that integrates local or cloud AI models directly into your editor.
- OpenRouter: Unified API for 400+ models β no credit card required, just email signup.
- Qwen3 Coder: A powerful, coding-specialized model (estimated 480B parameters), listed as free on OpenRouter.
This combination enables high-quality AI-assisted development β even on older hardware.
π§ 1. Create an OpenRouter Account
- Go to https://openrouter.ai.
- Click “Sign Up” in the top-right corner.
- Register with Google, GitHub, or email.
β No credit card is required!
π 2. Get Your API Key
- After logging in, go to the “Keys” section in the left menu.
- Click “Create Key”.
- Give it a name (e.g.,
vscodium-qwen3
) and click “Create”. - Copy the generated key (example:
sk-or-v1-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
).
βοΈ 3. Install the Continue Extension
- Open VS Codium.
- Go to the Extensions sidebar (puzzle icon).
- Search for “Continue”.
- Install “Continue: Code Autocomplete, Chat, and More”.
- Restart VS Codium.
π 4. Create the Config File
In your terminal, create the config directory:
mkdir -p $HOME/.continue
Then create the config file:
nano $HOME/.continue/config.yaml
π 5. Paste the Following Content (Replace with Your API Key)
name: Qwen3 Coder 480B A35B
version: 1.1.0
schema: v1
models:
- name: Qwen3 Coder 480B A35B
provider: openrouter
model: qwen/qwen3-coder:free
apiKey: sk-or-v1-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
defaultCompletionOptions:
contextLength: 262144
capabilities:
- tool_use
roles:
- apply
- chat
- edit
π‘ Notes:
- Use
apiKey
(camelCase, no underscore).- The model name must be exactly
qwen/qwen3-coder
.- YAML is indentation-sensitive β use 2 spaces for nested lines.
πΎ 6. Save and Exit
If using nano
:
Ctrl+O
β Enter (to save)Ctrl+X
(to exit)
π§ͺ 7. Test It
- Open a
.py
file in VS Codium. - Open the Continue chat panel (usually a π€ icon in the bottom-right).
- Ask:
Write a Python function to scrape a webpage using Scrapy.
If everything is set up correctly, Qwen3 Coder will generate a clean, powerful code snippet within seconds.
π Security & Privacy Notes
-
OpenRouter does not store your prompts by default (opt-in only).
-
Never share your API key or commit it to version control (
git
). -
You can use an environment variable for extra safety:
apiKey: “${OPENROUTER_API_KEY}”
Then launch VS Codium from the terminal:
export OPENROUTER_API_KEY="sk-or-v1-..."
codium .
π‘ Performance Tips
- You get $1 of free usage (~80,000β100,000 tokens).
- Network latency may cause 1β3 second delays β be patient.
- The model supports 262K context length, so long inputs are welcome.
π Final Words
This setup is a true convergence of free software, privacy, and accessibility.
It unlocks the power of the strongest AI models β
without compromise, without tracking, and without payment.
As the Seqular community, we aim to make such solutions open, sustainable, and available to all.
Happy coding! π
β Kansu KΓΆse & Qwen
Seqular Community