Search
Find every image by package version, CUDA version, model format, OS, or architecture. All constraints are AND-combined.
Syntax
A query is one or more name operator value constraints, space-separated.
| Operator | Meaning |
|---|---|
| == | Exact match |
| >= <= > < | Version comparison |
Built-in facets
| Name | Example |
|---|---|
| cuda | cuda>=12.4 |
| python | python==3.11 |
| os | os==linux |
| arch | arch==arm64 |
| format | format==safetensors |
| model | model==true |
Packages
Any name that isn't a built-in facet is treated as a package name.
bash
oci-bai search "gymnasium==1.1.0" oci-bai search "numpy>=1.26 torch>=2.3"
Package data has a short delay
Package information is indexed asynchronously after push — allow a few seconds. Model format (
format==) is available immediately.Model weights
oci-bai detects safetensors and GGUF weight files automatically at push — no labels needed.
bash
oci-bai search "format==safetensors" oci-bai search "format==gguf" oci-bai search "model==true"
Combining constraints
bash
oci-bai search "cuda>=12.4 format==safetensors arch==arm64" oci-bai search "python==3.11 numpy>=1.26"