mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-23 15:23:57 +00:00
a
This commit is contained in:
parent
efb154817e
commit
88af03829c
6 changed files with 137 additions and 26 deletions
|
|
@ -13,6 +13,11 @@ from llama_stack.schema_utils import json_schema_type
|
|||
|
||||
|
||||
class Order(Enum):
|
||||
"""Sort order for paginated responses.
|
||||
|
||||
:cvar asc: Ascending order
|
||||
:cvar desc: Descending order
|
||||
"""
|
||||
asc = "asc"
|
||||
desc = "desc"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue