From c4d32600f262a962465bbf49c09fff252b92f6a2 Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Mon, 19 May 2025 12:15:37 -0700 Subject: [PATCH] fixes --- llama_stack/apis/credentials/credentials.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llama_stack/apis/credentials/credentials.py b/llama_stack/apis/credentials/credentials.py index 10debee47..8b15ab67c 100644 --- a/llama_stack/apis/credentials/credentials.py +++ b/llama_stack/apis/credentials/credentials.py @@ -8,7 +8,7 @@ from datetime import datetime from enum import Enum from typing import Protocol, runtime_checkable -from pydantic import BaseModel +from pydantic import BaseModel, Field from llama_stack.schema_utils import json_schema_type, webmethod @@ -31,7 +31,7 @@ class ProviderCredential(BaseModel): provider_id: str token_type: CredentialTokenType token: str - expires_at: datetime + expires_at: datetime = Field(description="The time at which the credential expires. In UTC.") @runtime_checkable