mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-06-28 10:54:19 +00:00
Merge b45c650063
into 40fdce79b3
This commit is contained in:
commit
c7e5704d37
9 changed files with 225 additions and 75 deletions
|
@ -229,6 +229,13 @@ class OpenAIResponseObject(BaseModel):
|
|||
user: str | None = None
|
||||
|
||||
|
||||
@json_schema_type
|
||||
class OpenAIDeleteResponseObject(BaseModel):
|
||||
id: str
|
||||
object: Literal["response"] = "response"
|
||||
deleted: bool = True
|
||||
|
||||
|
||||
@json_schema_type
|
||||
class OpenAIResponseObjectStreamResponseCreated(BaseModel):
|
||||
response: OpenAIResponseObject
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue