client.models object provides access to available VLM Run models and their capabilities.
Python SDK
client.models
Models API Reference
The
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Models API Reference
client.models object provides access to available VLM Run models and their capabilities.
from vlmrun.client import VLMRun
from vlmrun.client.types import ModelInfo
from typing import List
client = VLMRun()
# List all available models
models: List[ModelInfo] = client.models.list()
# Print model information
for model in models:
print(f"Model: {model.model}")
print(f"Domain: {model.domain}")