DEV Community

Cover image for Zero-Cost AI in VS Code
DmitryGanin
DmitryGanin

Posted on

Zero-Cost AI in VS Code

Zero-Cost AI: Accessing Premium Models in VS Code Without API Keys

How I built a VS Code extension that gives you free access to Qwen-Max and DeepSeek models using only your existing web account β€” no billing, no tokens, no limits.


🎯 The Problem with Modern AI Tools

The state of AI development has become expensive:

  • API keys needed for every provider
  • Per-token pricing that adds up quickly
  • Rate limits blocking your workflow
  • Multiple subscriptions to different services

Premium AI services charge significant monthly fees:

  • ChatGPT Plus: $20/month
  • Claude Pro: $20/month
  • Gemini Advanced: $20/month

That's over $600/year for basic access! And you still need separate accounts for each service.

What if there was another way?


πŸ’‘ The Solution: Browser-Based Authentication

I developed AI Free VSCode β€” an open-source extension that leverages your existing free tier accounts from AI providers through browser automation.

Key Innovation

Instead of requiring API keys (which often have strict rate limits), the extension:

  1. Uses Playwright to automate a real Chromium browser session
  2. Stores authentication cookies locally
  3. Makes requests through the official web APIs
  4. Gives you full access to the same free tier available on their websites

Result?

βœ… Zero cost - uses existing free accounts

βœ… No API keys - just sign in once

βœ… Higher limits - same as browsing the website

βœ… Native integration - works directly in Copilot Chat

βœ… Agent mode - full tool calling support


πŸ— Architecture Overview

Extension Structure

ai-free-vscode/
β”œβ”€β”€ src/
β”‚   β”œβ”€β”€ extension.mjs          # Entry point & commands
β”‚   β”œβ”€β”€ lmProvider.mjs         # Unified LM provider interface
β”‚   β”œβ”€β”€ deepseek/
β”‚   β”‚   β”œβ”€β”€ auth.mjs           # Browser login with Playwright
β”‚   β”‚   β”œβ”€β”€ client.mjs         # API client implementation
β”‚   β”‚   β”œβ”€β”€ provider.mjs       # Model logic & session management
β”‚   β”‚   └── config.mjs         # Configuration constants
β”‚   β”œβ”€β”€ qwen/
β”‚   β”‚   β”œβ”€β”€ auth.mjs           # Qwen authentication
β”‚   β”‚   β”œβ”€β”€ client.mjs         # Qwen API client
β”‚   β”‚   └── provider.mjs       # Qwen model implementation
β”‚   β”œβ”€β”€ utils/
β”‚   β”‚   β”œβ”€β”€ logger.mjs         # Debug logging
β”‚   β”‚   β”œβ”€β”€ rateLimiter.mjs    # Rate limiting protection
β”‚   β”‚   β”œβ”€β”€ responseValidator.mjs
β”‚   β”‚   └── tokenValidator.mjs
β”‚   └── promptUtils.mjs        # Message formatting
β”œβ”€β”€ package.json               # Extension manifest
└── README.md                  # Documentation
Enter fullscreen mode Exit fullscreen mode

Core Components

1. Authentication Flow

The extension registers commands for users to authenticate:

context.subscriptions.push(
  vscode.commands.registerCommand("deepseek.login", async () => {
    await clearProfileSession(); // Clear old session
    const result = await loginAndSaveAuth(); // New login via Playwright
    auth.cookieHeader = result.cookieHeader;
    auth.token = result.token;
  }),
);
Enter fullscreen mode Exit fullscreen mode

Process:

  • Opens Chromium browser via Playwright
  • User signs into provider normally
  • Session cookies captured and stored locally
  • Cookies used for subsequent API requests

2. Unified Provider Interface

All models are unified under a single vendor namespace:

class AiFreeVscodeChatModelProvider {
  async provideLanguageModelChatResponse(
    model,
    messages,
    options,
    progress,
    token,
  ) {
    // Convert VS Code messages to API format
    const convertedMessages = convertMessages(messages);
    const tools = convertToolSchemas(options?.tools);
    const prompt = messagesToPrompt(convertedMessages, tools);

    // Route to appropriate provider
    switch (model.family) {
      case "deepseek":
        await deepseekComplete({ modelId, prompt, auth, onText, signal });
        break;
      case "qwen":
        await qwenComplete({
          modelId,
          prompt,
          auth,
          onText,
          onThinking,
          signal,
        });
        break;
    }
  }
}
Enter fullscreen mode Exit fullscreen mode

Process:

  • Routes VS Code chat requests to appropriate provider
  • Handles both DeepSeek and Qwen models
  • Converts messages to API format
  • Manages streaming responses

3. Smart Session Management

Maintains conversation continuity with session caching:

const sessionIdCache = new Map();

async function runComplete({
  modelId,
  prompt,
  auth,
  threadKey,
  messagesCount,
}) {
  // Start fresh session for first message in thread
  if (messagesCount === 1) {
    sessionIdCache.delete(threadKey);
  }

  // Try cached session first (for conversation continuity)
  const cachedSessionId = sessionIdCache.get(threadKey);
  if (cachedSessionId) {
    const ok = await attempt(cachedSessionId);
    if (ok) return; // Success!
  }

  // Retry with new session
  const sessionId = await client.createSession({ signal });
  sessionIdCache.set(threadKey, sessionId);
  await attempt(sessionId);
}
Enter fullscreen mode Exit fullscreen mode

πŸ”§ Installation & Setup

Step 1: Install the Extension

Download the latest .vsix file from Releases and install via VS Code Extensions panel.

Or develop locally:

git clone https://github.com/AppsGanin/ai-free-vscode
cd ai-free-vscode
npm install  # installs dependencies + Playwright Chromium
Enter fullscreen mode Exit fullscreen mode

Press F5 to launch in Extension Development Host.

Step 2: Sign In to Provider

  1. Open Command Palette (Cmd+Shift+P / Ctrl+Shift+P)
  2. Run "AI Free VSCode: DeepSeek: Sign In (Playwright)"
  3. A browser window opens automatically
  4. Log in to your account normally
  5. Window closes when session is saved

Repeat for Qwen or other supported providers.

Step 3: Start Chatting

  • Open Copilot Chat panel (⌘+L)
  • Select your preferred model from dropdown
  • Start asking questions!

πŸš€ Supported Models

Model ID Use Case
DeepSeek V4 deepseek-default General purpose
DeepSeek V4 Expert deepseek-expert Complex reasoning
Qwen2.5-Max qwen-max Powerful tasks
Qwen3.6-Plus qwen-plus Long documents
Qwen3-Max qwen3-max Flagship quality
Qwen3-Coder qwen-coder Code generation
Qwen3.5-Flash qwen-flash Fastest responses

All models support tool calling for Agent mode operations like:

  • File reading/writing
  • Terminal execution
  • Multi-step debugging
  • Code refactoring

πŸ›  Technical Deep Dive

How Messages Are Processed

1. Message Conversion

VS Code messages are converted to API-compatible format:

function convertMessages(messages) {
  return messages
    .map((msg) => {
      const role = msg.role === "assistant" ? "assistant" : "user";

      // Handle text content
      const content = msg.content
        .map((part) =>
          part instanceof LanguageModelTextPart ? part.value : "",
        )
        .join("");

      // Extract tool calls from assistant
      const toolCalls = msg.content
        .filter((p) => p instanceof LanguageModelToolCallPart)
        .map((p) => ({
          id: p.callId,
          type: "function",
          function: { name: p.name, arguments: JSON.stringify(p.input) },
        }));

      // Generate separate "tool" messages for results
      const toolResults = msg.content
        .filter((p) => p instanceof LanguageModelToolResultPart)
        .map((p) => ({
          role: "tool",
          tool_call_id: p.callId,
          content: p.content.value,
        }));

      return [
        ...toolResults,
        { role, content, tool_calls: toolCalls.length ? toolCalls : undefined },
      ];
    })
    .flat();
}
Enter fullscreen mode Exit fullscreen mode

2. Tool Call Detection

The system detects markdown fences indicating tool calls:

const TOOL_FENCES = ["`\`\`tool_call", "\ntool_call\n{", "tool_call\n{"];

function findFence(str) {
  let best = -1;
  for (const fence of TOOL_FENCES) {
    const idx = str.indexOf(fence);
    if (idx !== -1 && (best === -1 || idx < best)) best = idx;
  }
  return best;
}

// Stream processing
streamBuf += text;
const idx = findFence(streamBuf);
if (idx !== -1) {
  // Emit text before fence, suppress tool call block
  flushStream(streamBuf.slice(0, idx));
  streamBuf = "";
  inToolCall = true;
}
Enter fullscreen mode Exit fullscreen mode

This prevents raw tool call blocks from appearing in the chat UI while still executing them properly.

3. Thinking Mode Support

For models with explicit reasoning phases:

let thinkingStarted = false;
let thinkingText = "";

const onThinking = async (text) => {
  thinkingText += text;
  thinkingStarted = true;
};

// When content starts, emit thinking as collapsible block
if (thinkingStarted) {
  progress.report(new LanguageModelThinkingPart(thinkingText, "thinking-0"));
}
Enter fullscreen mode Exit fullscreen mode

VS Code displays this as a native collapsible "πŸ’­ Thinking" section above responses.


πŸ” Security & Privacy

What Happens to Your Data?

βœ… Cookies stored locally - Only your machine, encrypted by OS
βœ… No cloud storage - We never transmit your credentials
βœ… Session isolation - Each provider maintains separate sessions
βœ… No telemetry - No usage statistics sent anywhere

Error Handling

try {
  await client.complete({ ... });
} catch (e) {
  // Graceful handling of various errors
  if (e.isNotSignedIn) {
    showErrorMessage("Please sign in first");
  } else if (e.isAuthError) {
    // Cookie expired - force re-login
    clearProfileSession();
    throw e;
  } else if (isBizError(e)) {
    // Business logic error with formatted message
    progress.report(new TextPart(formatBizError(e.bizCode, e.bizMsg)));
  }
}
Enter fullscreen mode Exit fullscreen mode

⚠️ Limitations & Caveats

Important Considerations

  1. Terms of Service - Automating browser sessions may violate provider ToS
  2. Account Risk - Your account could be restricted (use at your own risk)
  3. Stability - Providers can change APIs without notice
  4. Single Session - Only one active user session at a time
  5. No Enterprise Support - Not suitable for corporate compliance requirements

Mitigation Strategies

  • Use separate accounts from main email
  • Don't abuse the service (reasonable usage only)
  • Keep extension updated for API changes
  • Maintain backups of important code/settings

πŸš€ Real-World Use Cases

Scenario 1: Code Review Assistant

# Ask about potential bugs
User: "Review this Python function for memory leaks:"
[User pastes code]

Assistant: Analyzes code structure, identifies resource leaks,
suggests fixes with explanations
Enter fullscreen mode Exit fullscreen mode

Scenario 2: Database Query Optimization

-- Paste slow query
EXPLAIN SELECT * FROM users WHERE created_at > NOW() - INTERVAL '7 days';

Assistant: Suggests indexing strategies, query rewriting,
and alternative approaches
Enter fullscreen mode Exit fullscreen mode

Scenario 3: Full Stack Debugging

  1. Identify error in terminal
  2. Ask assistant to analyze stack trace
  3. Get root cause explanation
  4. Receive fix suggestion with code example
  5. Apply fix directly in editor

🀝 Contributing

This is an open-source hobby project built by enthusiasts, for enthusiasts.

Ways to contribute:

  1. Fix bugs - See open issues
  2. Add new models - Implement additional AI providers
  3. Improve docs - Clarify setup instructions
  4. Enhance UX - Better error messages, UI improvements
  5. Write tests - Increase coverage for edge cases

Getting started:

git clone https://github.com/AppsGanin/ai-free-vscode
cd ai-free-vscode
npm install
# Edit code, press F5 to test
Enter fullscreen mode Exit fullscreen mode

Contributions welcome! PRs are always appreciated.


πŸ“ Legal Disclaimer

This extension is unofficial and not affiliated with any AI provider.

  • Use at your own risk - Automating web sessions may violate ToS
  • No guarantees - May stop working if providers change APIs
  • No liability - Authors not responsible for consequences

Always review Terms of Service before use.


🎯 Conclusion

AI Free VSCode demonstrates that you don't need expensive API keys or multiple subscriptions to access premium AI capabilities. By leveraging browser automation and existing free tiers, we've created a solution that:

  • πŸ’° Costs nothing - literally $0 monthly subscription
  • πŸš€ Works instantly - one-time sign-in, perpetual access
  • πŸ”’ Respects privacy - all data stays local
  • πŸ› οΈ Integrates seamlessly - native VS Code experience

Whether you're a student learning to code, a indie developer building your startup, or just someone who wants powerful AI tools without breaking the bank - this extension removes financial barriers and puts cutting-edge technology in your hands.


Ready to try it?

πŸ‘‰ Download the extension

⭐ Star the repo if it helps your workflow

πŸ“£ Share with fellow developers

Let's democratize AI access together! πŸš€

Top comments (0)