AIRGAP Lite Assistant
The default AI coding assistant — inline autocomplete and RAG-based chat.
Overview
AIRGAP Lite Assistant is the default AI coding assistant that activates automatically the first time you launch AIRGAP Studio. It is based on a Continue 1.3.39 fork and delivers lightweight inline autocomplete and RAG-based chat.
- The first assistant new users encounter
- Automatically active on first launch (default)
- Fully offline — every feature runs against the local llama-server
- Recommended when you do not need heavy autonomous agent behavior
If you need autonomous multi-file refactoring or automatic terminal command execution, switch to AIRGAP Assistant (Cline fork).
Key Features
Inline Autocomplete
Suggests the next line or block in real time while you type. Responds immediately after a short debounce — press Tab to accept, Esc to dismiss.
Quick Edit
Modify a selected block with a natural-language instruction. Changes are previewed as a diff and applied on approval.
Inline Edit
Open an inline editing prompt inside the editor and apply natural-language instructions to the current cursor position or selection.
RAG-based Chat
Workspace-aware chat with context attached automatically from the indexed codebase. Use @ mentions to add files, symbols, folders, or documents to the context.
Context Search
Inject context explicitly using mentions such as @codebase, @file, @folder, @docs, and @terminal.
Keybindings
| Action | Shortcut |
|---|---|
| Quick Edit (edit selection) | Ctrl+I |
| Open chat panel / send message | Ctrl+L |
| Trigger inline autocomplete manually | Ctrl+Alt+Space |
| Accept autocomplete suggestion | Tab |
| Dismiss autocomplete suggestion | Esc |
| New chat session | Ctrl+Shift+L |
Shortcuts may differ depending on your OS and keyboard layout. Open the Keyboard Shortcuts panel in VSCodium and filter by
Continue:to view and rebind every command.
AI Model Selection
You cannot change the model from inside AIRGAP Lite Assistant. Model selection is the sole responsibility of AIRGAP Monitor, and is performed via:
- Command Palette (
Ctrl+Shift+P) →AIRGAP: Select LLM Model
llama-server restarts automatically once a new model is selected, and the current-model indicator in Lite Assistant refreshes on its own. See the AIRGAP Monitor document for the full flow.
External Providers
The default provider is the local llama-server. External foundation providers (OpenAI / Anthropic / Gemini, etc.) can be opt-in exposed through the foundationProvidersEnabled flag in airgap-env.json.
{
"foundationProvidersEnabled": true
}
Foundation providers are not recommended in air-gapped environments. Keep the default (
false) so that all inference stays inside the local llama-server.
Comparison with AIRGAP Assistant (Cline fork)
| Item | AIRGAP Lite Assistant | AIRGAP Assistant |
|---|---|---|
| Base | Continue 1.3.39 fork | Cline 3.56.2 fork |
| Behavior | Inline autocomplete + Quick Edit + RAG chat | Autonomous agent (multi-file edits, terminal execution, Checkpoint) |
| Default active | ✓ (default) | — |
| Provider policy | llama-server default + foundation opt-in | llama-server + 4 OpenAI-compatible providers (openai / openai-native / openai-codex / lmstudio) |
| Recommended for | Everyday autocomplete, short edits, RAG queries | Multi-file refactoring, autonomous tasks |
The two assistants are mutually exclusive — only one is active at any time. To switch to the other, follow the assistant-switching procedure.
Switching Assistants
To switch to AIRGAP Assistant, run AIRGAP: Switch Assistant from the Command Palette. The switch requires a VSCodium restart (the --disable-extension CLI flag is only applied at spawn time).
See Switching AI Assistants for the full procedure.
Related Documents
- AIRGAP Monitor — Model selection and LLM server status
- Switching AI Assistants — Lite ↔ Assistant switching procedure
- AIRGAP Assistant — Autonomous agent assistant