All models
Model card on Hugging Face
LFM2.5-VL
by Liquid AI
Chat Vision
Liquid AI's LFM2.5-VL (lfm2_vl family) — vision; 128K context.
- Publisher
- Liquid AI
- Context window
- 125K tokens
- Sizes
- 1.6B
- Licence
- Custom licence
Run LFM2.5-VL
Install it on a Pendra worker, then call it through the OpenAI-compatible API with a pdr_sk_ key.
Chat
from pendra import Pendra
client = Pendra(api_key="pdr_sk_...")
response = client.chat.completions.create(
model="lfm2-5-vl:1.6b",
messages=[{"role": "user", "content": "Hello!"}],
)
print(response.choices[0].message.content) Vision
from pendra import Pendra
client = Pendra(api_key="pdr_sk_...")
response = client.chat.completions.create(
model="lfm2-5-vl:1.6b",
messages=[
{
"role": "user",
"content": [
{"type": "text", "text": "What's in this image?"},
{"type": "image_url", "image_url": {"url": "https://example.com/photo.jpg"}},
],
}
],
)
print(response.choices[0].message.content) Run LFM2.5-VL on your own UK infrastructure
Deploy a worker, install LFM2.5-VL, and start serving it through one sovereign API endpoint.