- Issue created by @ricardo santos
- 🇧🇷Brazil ricardo santos
ricardo santos → changed the visibility of the branch 3509676-inclusion-of-additional to hidden.
Currently, the chat function in the AzureProvider class constructs the payload for the Azure API with only the 'messages' key and the value of $chat_input. This results in the exclusion of additional configurations stored in $this->configuration, which can cause communication issues with the Azure API.
Modify the construction of the payload in the chat function to include the additional configurations stored in $this->configuration. This can be done by changing the code from:
$payload = [
'messages' => $chat_input,
];
To:
$payload = [
'messages' => $chat_input,
] + $this->configuration;
Active
1.0
Code
ricardo santos → changed the visibility of the branch 3509676-inclusion-of-additional to hidden.