Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions aidial_sdk/chat_completion/request.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,14 @@ class StreamOptions(ExtraAllowModel):
]


class ReasoningEffort(str, Enum):
NONE = "none"
MINIMAL = "minimal"
LOW = "low"
MEDIUM = "medium"
HIGH = "high"


class AzureChatCompletionRequest(ExtraAllowModel):
model: Optional[StrictStr] = None
messages: List[Message]
Expand All @@ -270,6 +278,7 @@ class AzureChatCompletionRequest(ExtraAllowModel):
seed: Optional[StrictInt] = None
logprobs: Optional[StrictBool] = None
top_logprobs: Optional[StrictInt] = None
reasoning_effort: Optional[ReasoningEffort] = None
response_format: Optional[ResponseFormat] = None
parallel_tool_calls: Optional[StrictBool] = None

Expand Down
Loading