VLM Run Hub

raw JSON →
0.1.35 verified Mon Apr 27 auth: no python

VLM Run Hub provides industry-specific schemas and utilities for working with Vision Language Models. Current version 0.1.35, released frequently with minor updates.

pip install vlmrun-hub
error ModuleNotFoundError: No module named 'vlmrun'
cause Trying to import 'vlmrun' after installing 'vlmrun-hub'? The package provides the 'vlmrun' module.
fix
Ensure you have installed 'vlmrun-hub' and use 'import vlmrun'.
error AttributeError: 'VLMHub' object has no attribute 'list_schemas'
cause Possibly using an outdated version where the method name was different.
fix
Upgrade to the latest version: pip install --upgrade vlmrun-hub
breaking Version 0.1.x may introduce breaking changes to schema names and API endpoints between releases. Pin your dependency version.
fix Specify exact version in requirements: vlmrun-hub==0.1.35
gotcha Package name is 'vlmrun-hub' but the import module is 'vlmrun' (no '-hub' suffix).
fix Use 'import vlmrun' or 'from vlmrun import ...'.
deprecated Older API methods like 'get_schema()' are deprecated in favor of 'fetch_schema()'.
fix Use 'hub.fetch_schema(...)' instead of 'hub.get_schema(...)'.

Initialize VLMHub and list available industry schemas.

from vlmrun import VLMHub

hub = VLMHub()
# List available schemas
schemas = hub.list_schemas()
print(schemas)