Skip to content

v0.64.0

Choose a tag to compare

@PawelPeczek-Roboflow PawelPeczek-Roboflow released this 15 Jan 12:28
· 190 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