Skip to main content
OpenVINO

Open-source software toolkit for optimizing and deploying deep learning models.

DocumentationBlogKey FeaturesTutorialsIntegrationsBenchmarksGenerative AI

PyPI Status NPM Anaconda Status brew Status

PyPI Downloads Anaconda Downloads brew Downloads

  • Inference Optimization: Boost deep learning performance in computer vision, automatic speech recognition, generative AI, natural language processing with large and small language models, and many other common tasks.
  • Flexible Model Support: Use models trained with popular frameworks such as PyTorch, TensorFlow, ONNX, Keras, PaddlePaddle, and JAX/Flax. Directly integrate models built with transformers and diffusers from the Hugging Face Hub using Optimum Intel. Convert and deploy models without original frameworks.
  • Broad Platform Compatibility: Reduce resource demands and efficiently deploy on a range of platforms from edge to cloud. OpenVINO™ supports inference on CPU (x86, ARM), GPU (Intel integrated & discrete GPU) and AI accelerators (Intel NPU).
  • Community and Ecosystem: Join an active community contributing to the enhancement of deep learning performance across various domains.

Check out the OpenVINO Cheat Sheet and Key Features for a quick reference.

Installation

Get your preferred distribution of OpenVINO or use this command for quick installation:

pip install -U openvino

Verify Installation

After installation, you can verify OpenVINO is installed correctly by running:

import openvino as ov
print(ov.__version__)

Check system requirements and supported devices for detailed information.

Tutorials and Examples

OpenVINO Quickstart example will walk you through the basics of deploying your first model.

Learn how to optimize and deploy popular models with the OpenVINO Notebooks 📚:

Discover more examples in the OpenVINO Samples (Python & C++) and Notebooks (Python).

Here are easy-to-follow code examples demonstrating how to run PyTorch and TensorFlow model inference using OpenVINO:

PyTorch Model

import openvino as ov
import torch
import torchvision

# load PyTorch model into memory
model = torch.hub.load("pytorch/vision", "shufflenet_v2_x1_0", weights="DEFAULT")

# convert the model into OpenVINO model
example = torch.randn(1, 3, 224, 224)
ov_model = ov.convert_model(model, example_input=(example,))

# compile the model for CPU device
core = ov.Core()
compiled_model = core.compile_model(ov_model, 'CPU')

# infer the model on random data
output = compiled_model({0: example.numpy()})

TensorFlow Model

import numpy as np
import openvino as ov
import tensorflow as tf

# load TensorFlow model into memory
model = tf.keras.applications.MobileNetV2(weights='imagenet')

# convert the model into OpenVINO model
ov_model = ov.convert_model(model)

# compile the model for CPU device
core = ov.Core()
compiled_model = core.compile_model(ov_model, 'CPU')

# infer the model on random data
data = np.random.rand(1, 224, 224, 3)
output = compiled_model({0: data})

OpenVINO supports the CPU, GPU, and NPU devices and works with models from PyTorch, TensorFlow, ONNX, TensorFlow Lite, PaddlePaddle, and JAX/Flax frameworks. It includes APIs in C++, Python, C, NodeJS, and offers the GenAI API for optimized model pipelines and performance.

Generative AI with OpenVINO

Get started with the OpenVINO GenAI installation and refer to the detailed guide to explore the capabilities of Generative AI using OpenVINO.

Learn how to run LLMs and GenAI with Samples in the OpenVINO™ GenAI repo. See GenAI in action with Jupyter notebooks: LLM-powered Chatbot and LLM Instruction-following pipeline.

Documentation

User documentation contains detailed information about OpenVINO and guides you from installation through optimizing and deploying models for your AI applications.

Developer documentation focuses on the OpenVINO architecture and describes building and contributing processes.

OpenVINO Ecosystem

OpenVINO Tools

Integrations

  • 🤗Optimum Intel - grab and use models leveraging OpenVINO within the Hugging Face API.
  • Torch.compile - use OpenVINO for Python-native applications by JIT-compiling code into optimized kernels.
  • ExecuTorch - use ExecuTorch with OpenVINO to optimize and run AI models efficiently.
  • OpenVINO LLMs inference and serving with vLLM​ - enhance vLLM's fast and easy model serving with the OpenVINO backend.
  • OpenVINO Execution Provider for ONNX Runtime - use OpenVINO as a backend with your existing ONNX Runtime code.
  • LLMWare - seamlessly build enterprise AI apps, agentic workflows, RAG pipelines, multimodal use cases, and more, using 100+ inference-ready OpenVINO-optimized SLMs.
  • LlamaIndex - build context-augmented GenAI applications with the LlamaIndex framework and enhance runtime performance with OpenVINO.
  • LangChain - integrate OpenVINO with the LangChain framework to enhance runtime performance for GenAI applications.
  • Keras 3 - Keras 3 is a multi-backend deep learning framework. Users can switch model inference to the OpenVINO backend using the Keras API.

Check out the Awesome OpenVINO repository to discover a collection of community-made AI projects based on OpenVINO!

Performance

Explore OpenVINO Performance Benchmarks to discover the optimal hardware configurations and plan your AI deployment based on verified data.

Contribution and Support

Check out Contribution Guidelines for more details. Read the Good First Issues section, if you're looking for a place to start contributing. We welcome contributions of all kinds!

You can ask questions and get support on:

Resources

Telemetry

OpenVINO™ collects software performance and usage data for the purpose of improving OpenVINO™ tools. This data is collected directly by OpenVINO™ or through the use of Google Analytics 4. You can opt-out at any time by running the command:

opt_in_out --opt_out

More Information is available at OpenVINO™ Telemetry.

License

OpenVINO™ Toolkit is licensed under Apache License Version 2.0. By contributing to the project, you agree to the license and copyright terms therein and release your contribution under these terms.


* Other names and brands may be claimed as the property of others.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

openvino-2026.4.0-22959-cp314-cp314t-win_amd64.whl (84.2 MB view details)

Uploaded CPython 3.14tWindows x86-64

openvino-2026.4.0-22959-cp314-cp314t-manylinux_2_35_aarch64.whl (27.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.35+ ARM64

openvino-2026.4.0-22959-cp314-cp314t-manylinux_2_28_x86_64.whl (59.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

openvino-2026.4.0-22959-cp314-cp314t-macosx_11_0_arm64.whl (33.6 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

openvino-2026.4.0-22959-cp314-cp314-win_amd64.whl (84.0 MB view details)

Uploaded CPython 3.14Windows x86-64

openvino-2026.4.0-22959-cp314-cp314-manylinux_2_35_aarch64.whl (30.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.35+ ARM64

openvino-2026.4.0-22959-cp314-cp314-manylinux_2_28_x86_64.whl (59.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

openvino-2026.4.0-22959-cp314-cp314-macosx_11_0_arm64.whl (33.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

openvino-2026.4.0-22959-cp313-cp313-win_amd64.whl (84.0 MB view details)

Uploaded CPython 3.13Windows x86-64

openvino-2026.4.0-22959-cp313-cp313-manylinux_2_35_aarch64.whl (30.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.35+ ARM64

openvino-2026.4.0-22959-cp313-cp313-manylinux_2_28_x86_64.whl (59.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

openvino-2026.4.0-22959-cp313-cp313-macosx_11_0_arm64.whl (33.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

openvino-2026.4.0-22959-cp312-cp312-win_amd64.whl (84.0 MB view details)

Uploaded CPython 3.12Windows x86-64

openvino-2026.4.0-22959-cp312-cp312-manylinux_2_35_aarch64.whl (30.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.35+ ARM64

openvino-2026.4.0-22959-cp312-cp312-manylinux_2_28_x86_64.whl (59.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

openvino-2026.4.0-22959-cp312-cp312-macosx_11_0_arm64.whl (33.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

openvino-2026.4.0-22959-cp311-cp311-win_amd64.whl (84.0 MB view details)

Uploaded CPython 3.11Windows x86-64

openvino-2026.4.0-22959-cp311-cp311-manylinux_2_35_aarch64.whl (30.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.35+ ARM64

openvino-2026.4.0-22959-cp311-cp311-manylinux_2_28_x86_64.whl (59.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

openvino-2026.4.0-22959-cp311-cp311-macosx_11_0_arm64.whl (33.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

openvino-2026.4.0-22959-cp310-cp310-win_amd64.whl (84.0 MB view details)

Uploaded CPython 3.10Windows x86-64

openvino-2026.4.0-22959-cp310-cp310-manylinux_2_35_aarch64.whl (30.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.35+ ARM64

openvino-2026.4.0-22959-cp310-cp310-manylinux_2_28_x86_64.whl (59.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

openvino-2026.4.0-22959-cp310-cp310-macosx_11_0_arm64.whl (33.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file openvino-2026.4.0-22959-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for openvino-2026.4.0-22959-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8515a86ffe12b830733511d8b2848d1b7eb6a7c2bb0a69ac7e7aae518ddb2101
MD5 7e42c54134f64e8b7ed08f04ce848e4f
BLAKE2b-256 2d506eba8fac1ff4fdc05da1dbe2d61964220c9eeefecf385595b3e8bd5fe05b

See more details on using hashes here.

File details

Details for the file openvino-2026.4.0-22959-cp314-cp314t-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for openvino-2026.4.0-22959-cp314-cp314t-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 6b3e9a00c1b57222c976af12f53bee79c4df0367aff7843be4b7c12d6a002fa8
MD5 e0c82a93f690f0da30395437e06b1eca
BLAKE2b-256 ab83f0ee3431b31f268057ffac0449014fbfd853afba040fe23aed6ddb3e721f

See more details on using hashes here.

File details

Details for the file openvino-2026.4.0-22959-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openvino-2026.4.0-22959-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b1faae0787283f94fde354453246b8ca1126fa9d52ab9496dcc43a98925f03a4
MD5 99c2ee47e529f45bc23c7946ac80564a
BLAKE2b-256 80a34183d541bc11a33ea8a7885e5a4ccf5f26b934251b63f7f223189d09cbe1

See more details on using hashes here.

File details

Details for the file openvino-2026.4.0-22959-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openvino-2026.4.0-22959-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97a2c9dfb8e000483467463e9354876c4b08630aae4f2e24a639388d4c4de343
MD5 1369b962b34cf259e2b0160db45b059f
BLAKE2b-256 ad6c0d081a3e036e9c57552135ad9d9e3d40bc4112054709998136f6bead96a0

See more details on using hashes here.

File details

Details for the file openvino-2026.4.0-22959-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for openvino-2026.4.0-22959-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 eab8a6c71210b2596765e3c9ffbdbe05c1d3b279793806e55162befa898a548f
MD5 f39a7e969575775f67bfd95c8ee002f0
BLAKE2b-256 c582b7f7a3c88622e47647d3bb6c9f04e98a5227c4f928cc29984f4a4538f850

See more details on using hashes here.

File details

Details for the file openvino-2026.4.0-22959-cp314-cp314-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for openvino-2026.4.0-22959-cp314-cp314-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 b67541153cc2ef7181472f780a9094a096c4b75e1438f68facfe2b2b5054cdd0
MD5 e32d540eb0e0dd8bcf2ec718d5a3ad68
BLAKE2b-256 b3ff9c73e1a03e6fa79d38eeac5793c9de117fe10db4b71b81477d17ee225ea6

See more details on using hashes here.

File details

Details for the file openvino-2026.4.0-22959-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openvino-2026.4.0-22959-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5ac6b16b3072f4c5f20ab308db598098bcd1c346108e93f4b36d8548b95707bf
MD5 0ebaef6ea6d0c83872033357b16b3009
BLAKE2b-256 e299a62c8957f7ef1b8a78a526abc710e7c7fdd43d2bdb3456610b3c5377c0b5

See more details on using hashes here.

File details

Details for the file openvino-2026.4.0-22959-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openvino-2026.4.0-22959-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 82741b9ef682ff736161fdad30e7fa4593de512ae7750b032e6a8aa3f0725252
MD5 c0b94af324eec5ae35ec6d864aaae25c
BLAKE2b-256 49ba1bbe576c6996bc1fc51c81a7f89f66fd0eb30ba10ffe086cd1683a53a4d1

See more details on using hashes here.

File details

Details for the file openvino-2026.4.0-22959-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for openvino-2026.4.0-22959-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e822141285804444ef5fa5e916f5d42e50f7fafebfbfc5d0d7c3a335de1aa5fb
MD5 f57b7ab416e775992fd952a4bdfd7700
BLAKE2b-256 bebfa18d0a0a67b572b76445fbd2fa7a5fe955de882010eb0f316d298ca42c16

See more details on using hashes here.

File details

Details for the file openvino-2026.4.0-22959-cp313-cp313-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for openvino-2026.4.0-22959-cp313-cp313-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 7a335edb34838d9d19a4d6cd79267f0d086e40b0847373e1cee82fc96cff758f
MD5 2b0ab881f86e2a952cceac51ea55c3d7
BLAKE2b-256 3161fc2344dbcd86c4b1e9b9afa98b20f9e4c1bf9a31171785d894657e5691c0

See more details on using hashes here.

File details

Details for the file openvino-2026.4.0-22959-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openvino-2026.4.0-22959-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 186abfe5f355c33f19b50fe48340f9af0110e92fd279b7358a023fcbd225c380
MD5 32a55b2b1787025d248ae4901de86d68
BLAKE2b-256 75b0692a6f0aa313791126a0d646b7c0ba88ee368c7f76d1b8c8cd50b977975a

See more details on using hashes here.

File details

Details for the file openvino-2026.4.0-22959-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openvino-2026.4.0-22959-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2483df2786ab9c5b63f5f712d2aed38d6d227dc5f400dbbeb49dc2c84c2109e3
MD5 22f4cc508b0fe74a0aa9d8898efa5d21
BLAKE2b-256 5159f6cf3e684a31ddf4db3df645cc452b18f33edac6a4becff1c141692fab4c

See more details on using hashes here.

File details

Details for the file openvino-2026.4.0-22959-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for openvino-2026.4.0-22959-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1d64a3178e750ea35f4095dc8ee6e0492795a5cf85c0dd24593a29f8a60c209d
MD5 93758c896332d1c9d33e451b5a4ddcad
BLAKE2b-256 62956b1a095f865cd5a02f773590a419525ee9f9fc25770901cf461dad38aa29

See more details on using hashes here.

File details

Details for the file openvino-2026.4.0-22959-cp312-cp312-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for openvino-2026.4.0-22959-cp312-cp312-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 cf2e8b12fd08588a69b11a8d2fe48c4373fb96eec28564dfc4754062c3f90439
MD5 11c1db9f0b93b5721053c0e47d516a50
BLAKE2b-256 ca73ccfe5e280ba9a1123ee2fbc3fe60e95d9a1ad8f2ea3668d418c45b890b73

See more details on using hashes here.

File details

Details for the file openvino-2026.4.0-22959-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openvino-2026.4.0-22959-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 75245768f656afffd49078cee55b50b9501bb6778798aec3cc30e5613a86e370
MD5 76e50508646cc19f718c06c00413fdb6
BLAKE2b-256 0996106f20950f8636f23925fa9867f9b1d7d10dd20f7b0300b10f8da40fdf16

See more details on using hashes here.

File details

Details for the file openvino-2026.4.0-22959-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openvino-2026.4.0-22959-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 171b876d1e732b2cf1c6a47d48dc6065fe7a36abe3d2a0035c8d3be36c0d67a1
MD5 aed4d9b57579628f93bae49d94dce6c8
BLAKE2b-256 5543e5a7fd6a13f6bc0fb389461a5a2e79b5bbaaa4388341fd040e3466890e71

See more details on using hashes here.

File details

Details for the file openvino-2026.4.0-22959-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for openvino-2026.4.0-22959-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f00130dee4046272fc734afd88b9cbc69066f37219337828e04f1a1b257b2288
MD5 47612c9fbf20903c07fd1b67962fcfa5
BLAKE2b-256 f63daaa196157eb2910b47d040244410d478dc12502a55bbc769479ca629079c

See more details on using hashes here.

File details

Details for the file openvino-2026.4.0-22959-cp311-cp311-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for openvino-2026.4.0-22959-cp311-cp311-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 8d552c6a8b0853447b291da3b2916d1b8a0e6f8bca70c8a9737d661fb5e268ca
MD5 db55a06683bf052dfdf3426545486c35
BLAKE2b-256 0ee211b4624261b33b411b20665517539cd0d560657358ac024df83be4731ab5

See more details on using hashes here.

File details

Details for the file openvino-2026.4.0-22959-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openvino-2026.4.0-22959-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 71ee4e65a914044a510af43da16f3279c8f9dae22cbc8eac63d4a785c4a9c03f
MD5 0a52e320d4f978d8e2bb6b22faeb0350
BLAKE2b-256 3f93a24476fbf4e96b034adba461d3cc8df5e62c92dcb153a07d9656f9da77aa

See more details on using hashes here.

File details

Details for the file openvino-2026.4.0-22959-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openvino-2026.4.0-22959-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 73f54242b6cf6fb5b6ddee27cfc3c510ddbae96125d6bdb0408aa71a473748a8
MD5 df36f07ef19f2e08c816c62b15a149ae
BLAKE2b-256 0f07b7be179965bb0ee5e1403127e7bc88c3c993a1cfc6a64ccc779d98c20185

See more details on using hashes here.

File details

Details for the file openvino-2026.4.0-22959-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for openvino-2026.4.0-22959-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 50ad382beb5331d12ae6bff975344af9470ef705602522a3f6b7e4df0428b093
MD5 c79a047737b3a238a8380de81154df22
BLAKE2b-256 6b3df8be0e877fedca654e9b62a596eb97082f818b64bb165d3250aa620f91d4

See more details on using hashes here.

File details

Details for the file openvino-2026.4.0-22959-cp310-cp310-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for openvino-2026.4.0-22959-cp310-cp310-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 143eec6237323b440b3b499dc3e01364cb8937eac9b233fad2e2e45e189196c8
MD5 efea0fdd23a5551a4313469a07b5fa41
BLAKE2b-256 8204af9324651ca451ec3e894f5f63f4e8883d650a13724609c78e4e8e448eda

See more details on using hashes here.

File details

Details for the file openvino-2026.4.0-22959-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openvino-2026.4.0-22959-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dac6cf1098dad0b4b62ea4cfad46a113f44071ffc15088c8e9806a2cb24bfcd8
MD5 d8d24ba1d8644708631a83cec11b42a5
BLAKE2b-256 378c02ff4c96145f8c8620bf8e2f17579995f66f3ec07336e67d878f735c0712

See more details on using hashes here.

File details

Details for the file openvino-2026.4.0-22959-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openvino-2026.4.0-22959-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9f1e318aba71b1fd5397783666ae79ef4fb1aa586c48d7201e1917503c03775
MD5 a305aa3c9d47df2241fcbf766271b45b
BLAKE2b-256 a755f5724054151669c223e6b1decbf21bd204fed0a368256e2c7ff223b9aaf7

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

2026.4.0 This release

24 files

2026.3.1

24 files

2026.3.0

24 files

2026.2.1

24 files

2026.2.0

24 files

2026.1.0

22 files

2026.0.0

22 files

2025.4.1

28 files

2025.4.0

27 files

2025.3.0

25 files

2025.2.0

25 files

2025.1.0

25 files

2025.0.0

25 files

2024.6.0

20 files

2024.5.0

20 files

2024.4.0

25 files

2024.3.0

23 files

2024.2.0

23 files

2024.1.0

23 files

2024.0.0

20 files

2023.3.0

20 files

2023.2.0

20 files

2023.1.0

24 files

2023.0.2

20 files

2023.0.1

20 files

2023.0.0

20 files

2022.3.2

16 files

2022.3.1

16 files

2022.3.0

16 files

2022.2.0

12 files

2022.1.0

12 files

2021.4.2

12 files

2021.4.1

12 files

2021.4.0

12 files

2021.3.0

9 files

2021.2

7 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page