From c2c4c968115c9dee57925244dbf572b9b848406a Mon Sep 17 00:00:00 2001 From: Botao Chen Date: Mon, 13 Jan 2025 20:31:47 -0800 Subject: [PATCH] addres comment --- llama_stack/apis/common/type_system.py | 1 + 1 file changed, 1 insertion(+) diff --git a/llama_stack/apis/common/type_system.py b/llama_stack/apis/common/type_system.py index c5653f373..e76cfde13 100644 --- a/llama_stack/apis/common/type_system.py +++ b/llama_stack/apis/common/type_system.py @@ -56,6 +56,7 @@ class AgentTurnInputType(BaseModel): class DialogType(BaseModel): # expects List[Message] for messages + # this type semantically contains the output label whereas ChatCompletionInputType does not type: Literal["dialog"] = "dialog"