From 52bcd8e83a37c3a09b7b321cfc3a4386fe56eca5 Mon Sep 17 00:00:00 2001 From: Shubham Naik Date: Thu, 28 Aug 2025 07:58:52 -0700 Subject: [PATCH] fix: model not displaying properly [PRO-1072] (#4267) * chore: fix model display * chore: new ts * chore: fix model rendering --------- Co-authored-by: Shubham Naik --- letta/schemas/llm_config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/letta/schemas/llm_config.py b/letta/schemas/llm_config.py index 4756bda0..20cf676e 100644 --- a/letta/schemas/llm_config.py +++ b/letta/schemas/llm_config.py @@ -74,6 +74,7 @@ class LLMConfig(BaseModel): "medium", description="Soft control for how verbose model output should be, used for GPT-5 models.", ) + tier: Optional[str] = Field(None, description="The cost tier for the model (cloud only).") # FIXME hack to silence pydantic protected namespace warning model_config = ConfigDict(protected_namespaces=())