Inclusion of Additional Configurations in the Payload of the Chat Operation

Created on 28 February 2025, about 1 month ago

Problem/Motivation

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.

Proposed resolution

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;

🐛 Bug report
Status

Active

Version

1.0

Component

Code

Created by

🇧🇷Brazil ricardo santos

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Production build 0.71.5 2024