Liquid: LFM 3B

liquid/lfm-3b

Created Jan 25, 202532,768 context
$0.02/M input tokens$0.02/M output tokens

Providers for LFM 3B

OpenRouter routes requests to the best providers that are able to handle your prompt size and parameters, with fallbacks to maximize uptime.

Context
33K
Max Output
33K
Input
$0.02
Output
$0.02
Latency
0.44s
Throughput
30.99t/s

Throughput

Latency

Apps using LFM 3B

Top public apps this week using this model

1.
Mantella
Skyrim & Fallout 4 mod, naturally speak to NPCs
6.72M tokens
2.
OpenCharacter
Open-source recreation of the old c.ai site
824K tokens
3.
OpenRouter: Chatroom
Chat with multiple LLMs at once
459K tokens
4.
CHIM
AI framework for Skyrim
398K tokens
5.
372K tokens
6.
SillyTavern
LLM frontend for power users
242K tokens
7.
68K tokens
8.
LibreChat
Feature-rich, open-source ChatGPT clone
54K tokens
9.
novelcrafter
Your personal novel writing toolbox. Plan, write and tinker with your story.
43K tokens
10.
liteLLM
Open-source library to simplify LLM calls
41K tokens
11.
Roo Code
A whole dev team of AI agents in your editor
36K tokens
12.
35K tokens
13.
Open WebUI
Extensible, self-hosted AI interface
34K tokens
14.
33K tokens
15.
Chub AI
GenAI for everyone
31K tokens

Recent activity on LFM 3B

Tokens processed per day

Jan 25Jan 28Jan 31Feb 3Feb 6Feb 9Feb 12Feb 15Feb 18Feb 21Feb 24Feb 27Mar 2Mar 5Mar 8Mar 11050M100M150M200M

Uptime stats for LFM 3B

Uptime stats for LFM 3B on the only provider

When an error occurs in an upstream provider, we can recover by routing to another healthy provider, if your request filters allow it.

Learn more about our load balancing and customization options.

Sample code and API for LFM 3B

OpenRouter normalizes requests and responses across providers for you.

OpenRouter provides an OpenAI-compatible completion API to 300+ models & providers that you can call directly, or using the OpenAI SDK. Additionally, some third-party SDKs are available.

In the examples below, the OpenRouter-specific headers are optional. Setting them allows your app to appear on the OpenRouter leaderboards.

from openai import OpenAI

client = OpenAI(
  base_url="https://openrouter.ai/api/v1",
  api_key="<OPENROUTER_API_KEY>",
)

completion = client.chat.completions.create(
  extra_headers={
    "HTTP-Referer": "<YOUR_SITE_URL>", # Optional. Site URL for rankings on openrouter.ai.
    "X-Title": "<YOUR_SITE_NAME>", # Optional. Site title for rankings on openrouter.ai.
  },
  extra_body={},
  model="liquid/lfm-3b",
  messages=[
    {
      "role": "user",
      "content": "What is the meaning of life?"
    }
  ]
)
print(completion.choices[0].message.content)

Using third-party SDKs

For information about using third-party SDKs and frameworks with OpenRouter, please see our frameworks documentation.

See the Request docs for all possible fields, and Parameters for explanations of specific sampling parameters.

    LFM 3B - API, Providers, Stats | OpenRouter