Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/MaxText/configs/types.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Copyright 2023–2025 Google LLC
#

# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
Expand Down Expand Up @@ -1302,8 +1302,8 @@ class Tensorboard(BaseModel):

enable_tensorboard: bool = Field(True, description="Enable Tensorboard logging.")
use_vertex_tensorboard: bool = Field(False, description="Set to True for GCE, False if running via XPK.")
vertex_tensorboard_project: str = Field("", description="GCP project for Vertex AI Tensorboard.")
vertex_tensorboard_region: str = Field("", description="Region for Vertex AI Tensorboard.")
vertex_tensorboard_project: Optional[str] = Field("", description="GCP project for Vertex AI Tensorboard.")
vertex_tensorboard_region: Optional[str] = Field("", description="Region for Vertex AI Tensorboard.")


class MultimodalGeneral(BaseModel):
Expand Down
Loading