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

推荐订阅源

月光博客
月光博客
云风的 BLOG
云风的 BLOG
小众软件
小众软件
雷峰网
雷峰网
博客园 - 【当耐特】
V
V2EX
WordPress大学
WordPress大学
IT之家
IT之家
Last Week in AI
Last Week in AI
罗磊的独立博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Apple Machine Learning Research
Apple Machine Learning Research
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
有赞技术团队
有赞技术团队
The Cloudflare Blog
Jina AI
Jina AI
博客园 - 司徒正美
阮一峰的网络日志
阮一峰的网络日志
博客园 - 聂微东
大猫的无限游戏
大猫的无限游戏
博客园 - 三生石上(FineUI控件)
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com

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 to Set Up a Local AI Coding Assistant in VS Code – Fr...
EveryLocalAI · 2026-06-18 · via DEV Community

EveryLocalAI

Want a Cursor/Copilot-style coding assistant that runs entirely on your machine? Your code never leaves your computer and there's no subscription fee. Here's how to set it up with VS Code, Continue, and Ollama.

What You'll Build

  • Tab autocomplete (like Copilot) that suggests code as you type
  • Chat with your codebase - ask questions, generate functions, write tests
  • 100% local - zero data sent to any cloud service

Prerequisites

  • A GPU with 24GB+ VRAM (RTX 3090/4090 or better)
  • For smaller GPUs (8-12GB), use Qwen2.5 Coder 7B instead
  • Ollama installed (see ollama.com)
  • VS Code (free from code.visualstudio.com)

Step 1: Pull the Model

Open a terminal and pull a coding-focused model:

ollama pull qwen2.5-coder:14b

This takes a few minutes depending on your internet. The model is ~8GB at Q4 quantization.

Step 2: Install Continue

In VS Code:

  1. Open Extensions (Ctrl+Shift+X)
  2. Search for "Continue"
  3. Click Install
  4. Reload VS Code when prompted

Step 3: Configure

Create or edit ~/.continue/config.yaml:

models:
  - name: Qwen2.5 Coder 14B
    provider: ollama
    model: qwen2.5-coder:14b
    roles:
      - chat
      - edit
  - name: Qwen2.5 Coder (autocomplete)
    provider: ollama
    model: qwen2.5-coder:14b
    roles:
      - autocomplete

Step 4: Use It

  • Autocomplete: Start typing. Continue suggests completions in gray. Press Tab to accept.
  • Chat: Press Ctrl+L (or Cmd+L on Mac) to open the chat panel. Ask questions about your code.
  • Edit: Select code and press Ctrl+Shift+L to ask for changes.
  • Inline: Highlight code, press Ctrl+I, and describe what you want changed.

Performance Notes

GPU Model Speed Quality
RTX 3090 (24GB) Qwen2.5-Coder 14B 25-35 tok/s Excellent
RTX 4090 (24GB) Qwen2.5-Coder 14B 40-50 tok/s Excellent
RTX 3060 (12GB) Qwen2.5-Coder 7B 30-40 tok/s Good
RTX 4060 (8GB) Qwen2.5-Coder 7B (Q4) 20-30 tok/s Good

Why Go Local?

  • $0/month vs $20/seat for Copilot or Cursor
  • Privacy: your proprietary code never touches a third-party server
  • Offline: works without internet
  • Model choice: swap models anytime, no vendor lock-in

Originally published on everylocalai.com