[021] ChatGPT Framework

Add-ons [021] ChatGPT Framework 1.5.1

Register & Get access to index

XenForo

Administrative
  • Thread starter
  • Admin
  • #1
XenForo submitted a new resource:

[021] ChatGPT Bots - Bot framework for ChatGPT API

This add-on provides helper functions for working with ChatGPT.
It allows you to set an API key for add-ons that work with ChatGPT and avoid loading duplicate dependencies.

Developer usage guide

Get the OpenAI API key
PHP:
$apiKey = \XF::options()->bsChatGptApiKey;
Get OpenAI API

PHP:
/** \Orhanerday\OpenAi\OpenAi $api */
$api = \XF::app()->container('chatGPT');
Get reply from ChatGPT
PHP:
use...

Read more about this resource...
 

XenForo

Administrative
  • Thread starter
  • Admin
  • #4
XenForo updated [021] ChatGPT Bots with a new update entry:

1.1.0

Message repository
fetchMessagesFromThread – Loads the context for the bot from the topic. Bot quotes are transformed into his messages for the correct context.
PHP:
public function fetchMessagesFromThread(
    Thread $thread,
    int $stopPosition = null, // Thread post position to which to load the context
    ?User $assistant = null, // Bot user to mark his messages in context
    bool $transformAssistantQuotesToMessages = true, // If false, bot message quote messages...

Read the rest of this update entry...
 

XenForo

Administrative
  • Thread starter
  • Admin
  • #5
XenForo updated [021] ChatGPT Bots with a new update entry:

1.2.0

\BS\ChatGPTBots\Response class features​

getReplyWithLogErrors(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...

Read the rest of this update entry...
 
  • Tags
    add ons [021] chatgpt bots download [021] chatgpt bots xenforo [021] chatgpt bots [021] chatgpt bots [021] chatgpt bots 1.0.0 [021] chatgpt bots 1.1.0 [021] chatgpt bots 1.2.0 [021] chatgpt bots xenforo [021] chatgpt framework 1.4.0 [021] chatgpt framework 1.5.0 [021] chatgpt framework 1.5.1
  • Back
    Top Bottom