Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Message repo: Ability to fetch comments from profile post
Stream replies support (Will be updated in dev guide later)
\BS\ChatGPTBots\Response class featuresgetReplyWithLogErrors(OpenAi $api, array $params): string – Receives a response and parse it to reply from the OpenAI API, logging the failure and adding the necessary information to the log. Usage example PHP: $reply = Response::getReplyWithLogErrors($api, [ 'model' => 'gpt-3.5-turbo', 'messages' => [], 'temperature' => 1.0, 'frequency_penalty' => 0, 'presence_penalty' => 0, ]); Fixed\BS\ChatGPTBots\Repository\Message::fetchMessagesFromThread – the startPosition and stopPosition arguments were ignored if they were 0 Other changesThe add-on has been renamed to [021] ChatGPT Framework.
$reply = Response::getReplyWithLogErrors($api, [ 'model' => 'gpt-3.5-turbo', 'messages' => [], 'temperature' => 1.0, 'frequency_penalty' => 0, 'presence_penalty' => 0, ]);