The azure_openai()
function acts as an interface for interacting with the Azure OpenAI API
through main tidyllm
verbs.
Arguments
- ...
Parameters to be passed to the Azure OpenAI API specific function, such as model configuration, input text, or API-specific options.
- .called_from
An internal argument that specifies which action (e.g.,
chat
) the function is being invoked from. This argument is automatically managed and should not be modified by the user.
Value
The result of the requested action, depending on the specific function invoked
(currently, only an updated LLMMessage
object for azure_openai_chat()
).
Details
azure_openai()
currently routes messages only to azure_openai_chat()
when used with chat()
.