Skip to content

v0.64.0

Choose a tag to compare

@PawelPeczek-Roboflow PawelPeczek-Roboflow released this 15 Jan 12:28
· 636 commits to main since this release
716a9ab

馃挭 Added

YOLO26 in inference

image

Legendary effort of @probicheaux 馃弲 and models team made it! Shortly after release, we have a support for new Ultralytics model - YOLO26. If you are interested - learn more about the model, or you can cut the line and jump straight into testing the model on Robolfow Platform.

馃攷 How to use the new model?

  • Train the model on your data using Robolfow Platform.
  • Use it in Workflows or directly in inference

As easy as that 馃榾

# install inference - uv pip install inference or uv pip install inference-gpu
import cv2
import supervision as sv
from inference import get_model

model = get_model("<id-of-your-yolo26-model>", api_key="<your_api_key>")
image = cv2.imread("<your-image-path>")

predictions = sv.Detections.from_inference(model.infer(image)[0])

annotator = sv.BoxAnnotator()
annotated_image = annotator.annotate(image.copy(), predictions)

New VLMs 馃 Workflows - Gemini 3 Flash and Claude Opus 4.5

image image

Workflows ecosystem is constantly growing 馃く Thanks to @yeldarby contributions, we are now able to expose new VLMs in Workflows - plus, for both Gemini and Claude models family, Roboflow now provides managed API keys - so Roboflow account alone is enough - no manual setup of your API keys.

馃敡 Bug fixes

  • Adds support for selectors in Union[List[...], Selector(...)] patterns in Workflows Execution Engine by @joaomarcoscrs in #1764

馃毀 Maintanence

馃ゼ New inference - progress update

馃弲 New Contributors

Full Changelog: v0.63.5...v0.64.0