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
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,7 @@ def with_azure(
reasoning_effort: NotGivenOr[ReasoningEffort] = NOT_GIVEN,
top_p: NotGivenOr[float] = NOT_GIVEN,
verbosity: NotGivenOr[Verbosity] = NOT_GIVEN,
max_completion_tokens: NotGivenOr[int] = NOT_GIVEN,
) -> LLM:
"""
This automatically infers the following arguments from their corresponding environment variables if they are not provided:
Expand Down Expand Up @@ -249,6 +250,7 @@ def with_azure(
prompt_cache_key=prompt_cache_key,
top_p=top_p,
verbosity=verbosity,
max_completion_tokens=max_completion_tokens,
)
llm._owns_client = True
return llm
Expand Down
Loading