Skip to main content

Release 11.11

Release Date: December 3rd, 2025



New FeatureImprovementBug FixEnterprise Only
new-featureimprovementbugenterprise

Models

StatusChangeDetails
Breaking ChangeDecommissioning legacy models
  • We are upgrading our infrastructure, and as part of this transition, we will decommission most of our legacy models on December 31, 2025.
  • Learn more here.
improvementMade improvements
  • Only a curated set of featured models can now be run using the Clarifai shared SaaS (serverless) deployment option. To use any other models, users must deploy them to their own cluster and nodepool.

Published Models

StatusChangeDetails
new-featurePublished new models
  • Published Trinity Mini, a 26B-parameter (3B active) sparse mixture-of-experts language model, engineered by Arcee AI for efficient inference over long contexts with robust function calling and multi-step agent workflows.
  • Published GLM 4.6, which brings unified reasoning, coding, and agentic capabilities in a single model — with a 200K context window and stronger coding performance on real-world tools.

Playground

StatusChangeDetails
improvementMade improvements
  • Added the ability to sync prompts in the Playground's compare mode, eliminating the need to copy prompts between models. This makes it easy to compare different models by speed and performance.

Platform

StatusChangeDetails
improvementMade improvements
  • Implemented a new design for account navigation and reordered menu items to improve usability and overall user experience.
  • Added the ability for users to upload a custom profile picture, which replaces the default initials and appears across the Community (e.g., on shared model or app details).
  • Updated code snippets to mask the user's PAT by default. The full value remains visible when the snippet is copied.
  • Added the ability to mark all activity-related notifications as read in the notification icon at the upper-right corner of the navigation bar. Each notification also now displays its creation date and time.
  • Added the ability to add and remove credit card details. The previous edit option has been removed.
  • Added a quick guide on uploading models using the Python SDK.
bugFixed bugs
  • Fixed an issue where an unclear error message appeared when an access token was missing. A meaningful message is now provided.
  • Fixed an issue where some invoices displayed missing or incorrect category names. Invoices now correctly show all category items.

Control Center

StatusChangeDetails
improvementMade improvements
  • Added an option to export the data of each chart as a CSV file.
bugFixed bugs
  • Fixed an issue where reloading the Control Center in an organization account redirected users away instead of refreshing the intended content.

Python SDK

StatusChangeDetails
improvementImproved the Python SDK

Learn more here
  • Added platform specification support to config.yaml for model versions.
  • Added a --platform CLI option for model uploads.
  • Added support for the new struct_value field in runner data utilities.
  • Added support for including the deployment user ID.
  • Removed model proto caching from ModelRunner, ModelServicer, and the server.
  • Updated the Dockerfile base image Git hash.
  • Refactored the Dockerfile.template for building Clarifai model runner images by introducing a multi-stage build that separates model asset downloading from final image creation, resulting in cleaner and more efficient builds.
  • Fixed an issue by ensuring the model proto containing secrets is loaded once during server initialization and made available to all prediction requests.
  • Added full support for the OpenAI Responses API (streaming and non-streaming) to the dummy model implementation, improved token usage accounting for both chat.completions and responses endpoints, and introduced comprehensive tests for this functionality.
  • Added a validation mechanism to the model loading process in the Model class, improving reliability during initialization.
  • Improved parsing of package names and versions from requirement lines, including support for dependencies defined with @ and more consistent whitespace handling.
  • Centralized and streamlined logic for reading environment variables and passing them to the ClarifaiAuthHelper, improving maintainability and flexibility.
  • Added visual-keypointer to the list of concepts-required model types.
  • Improved the robustness of the clarifai model local-runner command by loading and validating model configuration earlier and adding stricter checks for model type consistency.
  • Optimized model runner performance by loading the model proto once at initialization rather than requiring it for every prediction request.
  • Added comprehensive environment validation to provide immediate feedback when users attempt to run model tests in unsupported environments, helping prevent confusion when tests fail.