v0.64.0
·
190 commits
to main
since this release
💪 Added
YOLO26 in inference
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
|
|
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
- Fix assertions in GPU tests and add fixture to clean-up memory by @PawelPeczek-Roboflow in #1904
- Fix assertions in GPU tests by @PawelPeczek-Roboflow in #1905
- add yolo and rfdetr search terms to obj-det and keypoint-det workflow blocks by @mkaic in #1906
- Fix documentation links by @sergii-bond in #1908
🥼 New inference - progress update
- Rename
inference-exp->inference-modelsby @PawelPeczek-Roboflow in #1851 - Fix missing changes of inference-exp to inference-models by @PawelPeczek-Roboflow in #1902
- Fix inference-models again by @PawelPeczek-Roboflow in #1903
🏅 New Contributors
- @sergii-bond made their first contribution in #1908
Full Changelog: v0.63.5...v0.64.0

