forked from openai/openai-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheval_list_params.py
More file actions
27 lines (17 loc) · 754 Bytes
/
Copy patheval_list_params.py
File metadata and controls
27 lines (17 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
from __future__ import annotations
from typing_extensions import Literal, TypedDict
__all__ = ["EvalListParams"]
class EvalListParams(TypedDict, total=False):
after: str
"""Identifier for the last eval from the previous pagination request."""
limit: int
"""Number of evals to retrieve."""
order: Literal["asc", "desc"]
"""Sort order for evals by timestamp.
Use `asc` for ascending order or `desc` for descending order.
"""
order_by: Literal["created_at", "updated_at"]
"""Evals can be ordered by creation time or last updated time.
Use `created_at` for creation time or `updated_at` for last updated time.
"""