Tools to work with the VLM-1 API.
This project has been archived.
The maintainers of this project have marked this project as archived. No new releases are expected.
Project description
Tools for VLM-1
vlm-tools provides a convenient set of tools to interact with the VLM-1 API.
Installation
The vlm-tools python package is available on PyPI. You can install it using pip:
pip install vlm-tools
Optionally, if you want to install the torch extra dependencies, you can do so by installing the package with the torch extra:
pip install vlm-tools[torch]
Authentication
The VLM-1 API requires an API key to authenticate requests. You can obtain an API key by signing up on the waitlist. Once you have an API key, you can set it in the environment variable VLM_API_KEY:
export VLM_API_KEY='...'
Usage
Image -> JSON
The python client needs to be configured with your personal API key before you can use it. You can set the API key in the environment variable VLM_API_KEY as described above or pass it to the client constructor.
from vlm_tools.api import vlm
>>> image = Image.open(...)
>>> response_json = vlm(image, domain="document.presentation")
>>> response_json
{
"description": "...",
"title": "Differentiated Operating Model",
"page_number": 7,
"plots": [
...
],
"tables": null,
"others": [
...
]
}
Streaming Image -> JSON
You can also stream the image to the API using the stream method. This is useful when you want to stream images to our API sequentially, and one-by-one. We provide some helper functions to help you with sampling unique-images (content-based sampler) from a video stream.
from vlm_tools.video import VideoReader, VideoItertools
>>> itertools = VideoItertools()
>>> video = VideoReader("path/to/video.mp4")
>>> for img in itertools.islice(video, similarity_threshold=0.9)
... response_json = vlm(img, domain="document.presentation")
Requirements
- Python 3.10+
We currently support Python 3.10+ on Linux and macOS. If you have any questions or issues, please open an issue.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file vlm_tools-0.2.3-py3-none-any.whl.
File metadata
- Download URL: vlm_tools-0.2.3-py3-none-any.whl
- Upload date:
- Size: 11.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
17524cb0f2c76ace3c3f09eb85a73ddbae9673ba51e0aa0ea97a248126efe2d1
|
|
| MD5 |
bb38d9536dc78c8901d41be66ffcf0e9
|
|
| BLAKE2b-256 |
51bba97f7cffa5ca803037e68b160801534cd3471c67906f78c79173c706fbf5
|