Baseten Updates & Release Notes

Follow

66 updates curated from 68 sources by the Releasebot Team. Last updated: Sep 13, 2026

Get this feed:
  • Sep 13, 2026
    • Date parsed from source:
      Sep 13, 2026
    • First seen by Releasebot:
      Sep 13, 2026
    Baseten logo

    Baseten

    Model API Deprecation (GLM 4.7, Kimi K2.7, Kimi K2.6, Inkling, Inkling Small, DeepSeek v4 Pro)

    Baseten deprecates GLM 4.7, Kimi and DeepSeek models, with stronger alternatives recommended before September 25.

    GLM 4.7, Kimi K2.7, Kimi K2.6, Inkling, Inkling Small, and DeepSeek v4 Pro will be deprecated at 5pm PT September 25th.

    At that time the model IDs will become inactive and return an error for all requests. As open source models advance rapidly, we prioritize serving the highest quality models and deprecate models when stronger alternatives are available.

    We recommend the following models as alternatives, all of which offer superior intelligence for each specific use case. Just swap in the new Model ID(s) prior to the deprecation date.

    Original source
  • Sep 11, 2026
    • Date parsed from source:
      Sep 11, 2026
    • First seen by Releasebot:
      Sep 13, 2026
    Baseten logo

    Baseten

    OIDC and AWS AssumeRole for training jobs

    Baseten adds OIDC and AWS AssumeRole for training jobs, letting teams pull private container images and download model weights or training data without long-lived cloud credentials. The update supports ECR, S3, Google Artifact Registry, Container Registry, and Cloud Storage.

    Training jobs can now use OIDC or AWS AssumeRole during setup to pull private container images and download model weights or training data without storing long-lived cloud credentials in Baseten.

    OIDC supports Amazon ECR and S3, Google Artifact Registry and Container Registry, and Google Cloud Storage. Training OIDC tokens let you scope access to your Baseten organization, team, training project, or individual job.

    For AWS resources, you can use AWS AssumeRole without registering an OIDC provider. Baseten assumes an IAM role in your account using your organization's unique external ID. AWS AssumeRole supports private images in Amazon ECR and weights or data in Amazon S3.

    For setup instructions, see OIDC authentication, AWS AssumeRole, private training images, and weights and data authentication.

    Original source
  • All of your release notes in one feed

    Join Releasebot and get updates from Baseten and hundreds of other software products.

    Create account
  • Sep 11, 2026
    • Date parsed from source:
      Sep 11, 2026
    • First seen by Releasebot:
      Sep 13, 2026
    Baseten logo

    Baseten

    Model API costs

    Baseten adds Management API access to Model API spend with daily billing subtotals and cost history lookup.

    You can now retrieve your Model API spend through the Management API. The new GET /v1/billing/model_apis endpoint returns exact subtotals for each calendar day, rated from your usage.

    curl --get "https://api.baseten.co/v1/billing/model_apis" \
    -H "Authorization: Bearer $BASETEN_API_KEY" \
    -d "start_date=2026-09-04" \
    -d "end_date=2026-09-11"
    

    Cost history begins August 5, 2026 at 20:45 UTC.

    For more information, see our docs.

    Original source
  • Sep 10, 2026
    • Date parsed from source:
      Sep 10, 2026
    • First seen by Releasebot:
      Sep 13, 2026
    Baseten logo

    Baseten

    DeepSeek V4.1 Flash available on Baseten

    Baseten adds DeepSeek V4.1 Flash to Model APIs, bringing a 552B-parameter multimodal model built for agentic coding workflows with built-in reasoning and tool calling through an OpenAI-compatible endpoint.

    DeepSeek V4.1 Flash is now available through Baseten Model APIs. The 552B-parameter multimodal successor to DeepSeek V4 Flash 0731, it is purpose-built for agentic, coding workflows, and has reasoning and tool calling built in.

    Send requests to deepseek-ai/DeepSeek-V4.1-Flash through our OpenAI-compatible endpoint with your Baseten API key:

    curl https://inference.baseten.co/v1/chat/completions \
    -H "Content-Type: application/json" \
    -H "Authorization: Bearer $BASETEN_API_KEY" \
    -d '{
    "model": "deepseek-ai/DeepSeek-V4.1-Flash",
    "messages": [
    {"role": "user", "content": "Explain the Navier Stokes smoothness problem."}
    ],
    "reasoning_effort": "high"
    }'
    

    For more information, see our docs.

    Original source
  • Sep 10, 2026
    • Date parsed from source:
      Sep 10, 2026
    • First seen by Releasebot:
      Sep 11, 2026
    Baseten logo

    Baseten

    Regional deployments

    Baseten adds region-specific replica placement for deployments to support compliance, data residency, and lower latency.

    Restrict every replica in a deployment to a specific Baseten region. Select a region through the dashboard, Baseten CLI, or Management API to meet compliance or data residency requirements or reduce latency.

    baseten model push --region eu
    

    For more information, see our docs.

    Original source
  • Similar to Baseten with recent updates:

  • Sep 1, 2026
    • Date parsed from source:
      Sep 1, 2026
    • First seen by Releasebot:
      Sep 11, 2026
    Baseten logo

    Baseten

    Viewer role for read-only access

    Baseten introduces a Viewer role for read-only access to resources, with model invocation and inspection but no deploy or config permissions.

    We've introduced a Viewer role so you can give teammates read-only access to Baseten resources without granting deployment or configuration permissions. Viewers can invoke models and inspect resources on the Baseten platform, but can't modify or deploy resources.

    For more information, see our access control docs.

    Original source
  • Sep 1, 2026
    • Date parsed from source:
      Sep 1, 2026
    • First seen by Releasebot:
      Sep 3, 2026
    Baseten logo

    Baseten

    AWS AssumeRole authentication

    Baseten adds AWS AssumeRole support for builds, letting users pull private base images from Amazon ECR and mirror model weights from Amazon S3 with short-lived STS credentials and a native IAM trust policy, without storing long-lived AWS credentials in Baseten.

    Baseten can now assume an IAM role in your AWS account to pull private base images from Amazon ECR and mirror model weights from Amazon S3 during builds.

    AssumeRole uses short-lived AWS STS credentials and a unique external ID for your Baseten organization. You can grant access through a native IAM trust policy without registering an OIDC provider or storing long-lived AWS credentials in Baseten.

    For example, you can set

    auth_method: AWS_ASSUME_ROLE
    

    in your Truss configuration:

    weights:
      -
        source:
          "s3://my-bucket/models/custom-weights"
        mount_location:
          "/models/custom"
        auth:
          auth_method:
          AWS_ASSUME_ROLE
          aws_assume_role_arn:
          arn:aws:iam::<account-id>:role/baseten-access
          aws_assume_role_region:
          us-west-2
    

    For more information, see our docs.

    Original source
  • Aug 28, 2026
    • Date parsed from source:
      Aug 28, 2026
    • First seen by Releasebot:
      Sep 1, 2026
    Baseten logo

    Baseten

    GLM 5.3 available on Baseten

    Baseten adds Z.ai’s GLM 5.3 flagship model to Model APIs and Loops, bringing a 1M-token context window, high-reasoning defaults, and adjustable reasoning_effort controls. Users can call it through Baseten’s OpenAI-compatible endpoint or fine-tune it with Loops.

    GLM 5.3, Z.ai’s latest flagship model, is now available through Baseten Model APIs and Loops. It has a 1M-token context window and defaults to high reasoning. Set reasoning_effort to low, high, or max to control reasoning depth.

    Send requests to zai-org/GLM-5.3 through Baseten’s OpenAI-compatible endpoint:

    curl https://inference.baseten.co/v1/chat/completions \
    -H "Content-Type: application/json" \
    -H "Authorization: Bearer $BASETEN_API_KEY" \
    -d '{
      "model": "zai-org/GLM-5.3",
      "messages": [{
        "role": "user",
        "content": "What is large-scale asynchronous training?"
      }]
    }'
    

    Or get started with Loops and fine-tune the model.

    For more information, see our docs for Model APIs and Loops for fine-tuning.

    Original source
  • Aug 26, 2026
    • Date parsed from source:
      Aug 26, 2026
    • First seen by Releasebot:
      Sep 1, 2026
    Baseten logo

    Baseten

    GLM 5.3 Flash available on Baseten

    Baseten adds GLM 5.3 Flash to Baseten Model APIs, bringing Z.ai’s latest model to its OpenAI-compatible endpoint with a 1M-token context window, vision, and reasoning. Users can steer reasoning effort and access the model through dedicated inference or docs.

    GLM 5.3 Flash is now available through Baseten Model APIs. Send requests to zai-org/GLM-5.3-Flash through our OpenAI-compatible endpoint with your Baseten API key.

    GLM 5.3 Flash is Z.ai's latest model with a 1M-token context window, vision, and reasoning. Reasoning defaults to high and can be steered with reasoning_effort (low, high, max).

    curl https://inference.baseten.co/v1/chat/completions \
    -H "Content-Type: application/json" \
    -H "Authorization: Bearer $BASETEN_API_KEY" \
    -d '{
      "model": "zai-org/GLM-5.3-Flash",
      "messages": [{
        "role": "user",
        "content": "What is gradient descent?"
      }]
    }'
    

    For more information, see our docs or for dedicated inference see the GLM 5.3 Flash deployment.

    Original source
  • Aug 26, 2026
    • Date parsed from source:
      Aug 26, 2026
    • First seen by Releasebot:
      Aug 27, 2026
    Baseten logo

    Baseten

    GLM 5.3 Flash available on Baseten

    Baseten now supports GLM 5.3 Flash through its Model APIs, giving users OpenAI-compatible access to Z.ai’s latest model with a 1M-token context window, vision, and reasoning. It also lets users steer reasoning effort for different needs.

    GLM 5.3 Flash is now available through Baseten Model APIs. Send requests to zai-org/GLM-5.3-Flash through our OpenAI-compatible endpoint with your Baseten API key.

    GLM 5.3 Flash is Z.ai's latest model with a 1M-token context window, vision, and reasoning. Reasoning defaults to high and can be steered with reasoning_effort (low, high, max).

    curl https://inference.baseten.co/v1/chat/completions \
    -H "Content-Type: application/json" \
    -H "Authorization: Bearer $BASETEN_API_KEY" \
    -d '{
      "model": "zai-org/GLM-5.3-Flash",
      "messages": [{
        "role": "user",
        "content": "What is gradient descent?"
      }]
    }'
    

    For more information, see our docs or for dedicated inference see the GLM 5.3 Flash deployment.

    Original source
  • Aug 25, 2026
    • Date parsed from source:
      Aug 25, 2026
    • First seen by Releasebot:
      Aug 27, 2026
    Baseten logo

    Baseten

    Autoscaling schedules

    Baseten adds generally available autoscaling schedules, letting teams pre-warm capacity on recurring daily or hourly windows or one-time windows for launches, load tests, and migrations. Schedules can be managed in the dashboard or Management API.

    Autoscaling schedules are now generally available. A schedule changes an environment's autoscaling settings on a defined window, so you can pre-warm capacity before traffic arrives.

    Choose a recurring daily or hourly window for predictable traffic, or a one-time window between two absolute date-times for planned events like launches, load tests, and migrations. While a window is active, the environment runs the schedule's settings; outside every window, it runs the environment's default configuration.

    Manage schedules from the Baseten dashboard, or through the Management API:

    curl -X PATCH "https://api.baseten.co/v1/models/{model_id}/environments/{env_name}" \
    -H "Authorization: Api-Key $BASETEN_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{
    "autoscaling_schedule_settings": {
    "timezone": "America/Los_Angeles",
    "schedules": [
    {
    "cadence": "ONE_TIME",
    "name": "Launch day scale-up",
    "enabled": true,
    "start_at": "2026-09-01T16:00:00Z",
    "end_at": "2026-09-01T20:00:00Z",
    "autoscaling_settings": {
    "min_replica": 4, "max_replica": 16,
    }
    }
    ]
    }
    }'
    

    For more information, see our docs.

    Original source
  • Aug 19, 2026
    • Date parsed from source:
      Aug 19, 2026
    • First seen by Releasebot:
      Aug 27, 2026
    Baseten logo

    Baseten

    Runtime OIDC

    Baseten adds OIDC auth for cloud providers with short-lived tokens mounted in containers for secure credential-free access.

    You can now authenticate to OIDC-compatible cloud providers without storing long-lived credentials. Set runtime.oidc.enabled: true in your Truss config and Baseten mounts a short-lived token into the container, refreshing it at least 5 minutes before it expires.

    model_name:
      oidc-enabled
    python_version:
      py313
    runtime:
      oidc:
        enabled:
          true
    

    Your code exchanges the token with the provider directly, so any OIDC-supporting provider works.

    For more information, see our docs.

    Original source
  • Aug 14, 2026
    • Date parsed from source:
      Aug 14, 2026
    • First seen by Releasebot:
      Aug 27, 2026
    Baseten logo

    Baseten

    DeepSeek V4 Pro 0813 available on Baseten

    Baseten adds DeepSeek V4 Pro 0813 to Model APIs with OpenAI-compatible endpoint support.

    DeepSeek V4 Pro 0813 is now available through Baseten Model APIs. Send requests to deepseek-ai/DeepSeek-V4-Pro-0813 through our OpenAI-compatible endpoint with your Baseten API key.

    curl https://inference.baseten.co/v1/chat/completions \
    -H "Content-Type: application/json" \
    -H "Authorization: Bearer $BASETEN_API_KEY" \
    -d '{
    "model": "deepseek-ai/DeepSeek-V4-Pro-0813",
    "messages": [
      {"role": "system", "content": "You are a helpful assistant"},
      {"role": "user", "content": "Hello"}
    ],
    "reasoning_effort": "high",
    "thinking": {"type": "enabled"}
    }'
    

    For more information, see our docs.

    Original source
  • Jul 30, 2026
    • Date parsed from source:
      Jul 30, 2026
    • First seen by Releasebot:
      Jul 31, 2026
    Baseten logo

    Baseten

    Inkling Small available on Baseten

    Baseten adds Inkling Small to Baseten Model APIs, bringing OpenAI-compatible access to Thinking Machines Lab’s multimodal model with a 1M-token context window, tool calling, structured outputs, and controllable reasoning for lower-latency, lower-cost workloads.

    Inkling Small is now available through Baseten Model APIs. Send requests to thinkingmachines/inkling-small through our OpenAI-compatible endpoint with your Baseten API key. Dedicated deployments are also available for larger workloads.

    Inkling Small is Thinking Machines Lab’s open-weights, 276B-parameter mixture-of-experts model with 12B active parameters. It retains Inkling’s 1M-token context window, native text, image, and audio inputs, tool calling, structured outputs, and controllable reasoning in a smaller model designed for workloads where latency and inference cost matter. Thinking Machines reports comparable performance to Inkling at roughly one-quarter its size.

    curl https://inference.baseten.co/v1/chat/completions \
    -H "Authorization: Bearer $BASETEN_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{
      "model": "thinkingmachines/inkling-small",
      "messages": [
        {
          "role": "user",
          "content": "Compare sparse and dense transformer architectures."
        }
      ],
      "reasoning_effort": "medium"
    }'
    

    For supported reasoning settings and multimodal request examples, see the docs.

    Original source
  • Jul 29, 2026
    • Date parsed from source:
      Jul 29, 2026
    • First seen by Releasebot:
      Jul 30, 2026
    Baseten logo

    Baseten

    Introducing Baseten for Model Labs

    Baseten for Model Labs adds infrastructure to help labs bring models to market, including a Frontier Gateway for branded production APIs and a Distribution Platform for publishing models as shared or dedicated APIs while Baseten handles serving, billing, and distribution.

    Baseten for Model Labs gives labs the infrastructure to bring models to market without building their own serving and distribution systems.

    • Frontier Gateway: Run a production-ready API under your own brand. Manage customer credentials, model access, rate limits, usage limits, and billing events across models hosted on Baseten, external providers, or OpenAI-compatible endpoints.
    • Distribution Platform: Publish your models to Baseten customers as shared Model APIs, dedicated deployments, or both. Baseten manages customer billing while protecting your model artifacts.

    Both run on Baseten’s, so your team can focus on model research while Baseten handles serving and distribution.

    To get started, reach out to us or for more information, see our docs.

    Original source
Releasebot

Curated by the Releasebot team

Releasebot is an aggregator of official product update announcements from hundreds of software vendors and thousands of sources.

Our editorial process involves the manual review and audit of release notes procured with the help of automated systems.