Skip to content

LiquidAI LFM2.5-VL image understanding through the OpenAI-compatible HTTP API

LiquidAI LFM2.5-VL image understanding through the OpenAI-compatible HTTP API.

Start the server: mistralrs serve -p 1234 -m LiquidAI/LFM2.5-VL-450M

"""
LiquidAI LFM2.5-VL image understanding through the OpenAI-compatible HTTP API.
Start the server:
mistralrs serve -p 1234 -m LiquidAI/LFM2.5-VL-450M
"""
from openai import OpenAI
client = OpenAI(api_key="foobar", base_url="http://localhost:1234/v1/")
completion = client.chat.completions.create(
model="default",
messages=[
{
"role": "user",
"content": [
{
"type": "image_url",
"image_url": {
"url": "https://www.garden-treasures.com/cdn/shop/products/IMG_6245.jpg"
},
},
{
"type": "text",
"text": "Describe this image and identify the main subject.",
},
],
},
],
max_tokens=256,
frequency_penalty=1.0,
top_p=0.1,
temperature=0.1,
)
print(completion.choices[0].message.content)

Source: examples/server/lfm2_vl.py