Installation
Download and install Atomic Chat from atomic.chat:- macOS (Apple Silicon): DMG installer
- Windows (x64): EXE installer
- Linux (x86_64): AppImage
- iPhone and iPad: App Store
- Android: Google Play
Downloading Models
- Open Atomic Chat and open the model library via the Models tab
- Search for “LiquidAI”
- Select a model and quantization level (
Q4_K_Mrecommended) - Click Download
Using the Chat Interface
- Go to the New Chat tab
- Select your model from the dropdown
- Adjust parameters (
temperature,top_k,repeat_penalty) in the model settings - Start chatting
Generation Parameters
Control text generation behavior using the GUI sidebar or API parameters. Key parameters:temperature(float, default 1.0): Controls randomness (0.0 = deterministic, higher = more random). Typical range: 0.1-2.0top_p(float, default 1.0): Nucleus sampling - limits to tokens with cumulative probability ≤ top_p. Typical range: 0.1-1.0top_k(int, default 40): Limits to top-k most probable tokens. Typical range: 1-100repeat_penalty(float, default 1.0): Penalty for repeating tokens (>1.0 = discourage repetition). Typical range: 1.0-1.5
Running the Server
On desktop, Atomic Chat can serve the currently loaded model through a local OpenAI-compatible server for programmatic access:- Load the model in a chat
- Open the Integrations tab
- Click Start Server. The server defaults to
http://localhost:1337/; use the port shown in the app if you changed it or if that port was unavailable.
Streaming Responses
Curl request example
Curl request example
Vision Models
Atomic Chat supports LFM2-VL and LFM2.5-VL GGUF models on desktop. Its mobile catalog is curated by platform; LFM2.5-VL-1.6B is available for mobile vision inference. Download a vision model from the model library, then attach images to your messages to ask questions about them.Using the API
Using the API
Tips
- Quantization:
Q4_K_Moffers the best balance of size and quality; step up toQ6_KorQ8_0if you have memory to spare - Apple Silicon: GGUF models run with Metal acceleration, and MLX builds of LFM models are supported natively
- Long conversations (desktop): TurboQuant can compress the KV cache to 3 or 4 bits, so long contexts fit in significantly less memory