Registry / llm-agents / vlmrun

vlmrun

JSON →
library0.6.2pypypi✓ verified 87d ago

Official Python SDK for VLM Run, a platform for running vision-language models. Current version 0.6.2, requires Python >=3.9. Active development with frequent releases.

pip install vlmrun
INSTALL
IMPORT
SIG · VLMRUN
V
vlmrun
llm-agentspythonv0.6.2
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

VLM
✓ import vlmrun
✗ from vlmrun import VLM

Initialize client with API key from environment variable and run inference.

import os from vlmrun import VLM client = VLM(api_key=os.environ.get('VLM_RUN_API_KEY', '')) response = client.infer( model="gpt-4o", prompt="Describe this image", image_url="https://example.com/image.jpg" ) print(response)
Debug
Known issues
gotchaAPI key required; must be set via environment variable VLM_RUN_API_KEY or passed directly to constructor. Missing key leads to authentication error.
fix
Set VLM_RUN_API_KEY environment variable or pass api_key parameter.
affects: all
gotchaThe 'infer' method requires both 'model' and 'prompt' parameters; model string must match available models exactly (e.g., 'gpt-4o', 'claude-3'). Case-sensitive.
fix
Use correct model identifier as per docs.
affects: all
deprecatedVersion 0.5.0 changed the client initialization signature. Old pattern 'VLM(api_key=..., base_url=...)' still works but base_url is deprecated.
fix
Remove base_url usage; use environment or default endpoint.
affects: >=0.5.0
Upgrade
Version history
0.6.2latest on PyPI · released Apr 15, 2026
Audit
Dependencies

No dependency data recorded yet.

Agent activity
49 hits · last 30 days
node
42
Amazon
1
Perplexity
1
OpenAI (training)
1
Resources
vlmrun — pip install vlmrun · libregistry