- XF Compatibility
- 2.1.x
- 2.2.x
- Headline
- This add-on provides helper functions for working with ChatGPT.
- Short Description
- Download and Discuss Premium, Business[021] ChatGPT Bots 1.1.0 version on NullPro Community. It is zip Extention type and 121.3 KB File size. From [021] ChatGPT Bots have 1 Description Attachments, 3 discussion, 1 Updates, 167 Views.
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 dependencie
Get OpenAI API
Get reply from ChatGPT
It allows you to set an API key for add-ons that work with ChatGPT and avoid loading duplicate dependencie
Get OpenAI API
PHP:
$apiKey = \XF::options()->bsChatGptApiKey;
PHP:
use BS\ChatGPTBots\Response;
/** \Orhanerday\OpenAi\OpenAi $api */
$api = \XF::app()->container('chatGPT');
$messages = [
['role' => 'user', 'content' => 'Hello!']
];
$reply = Response::getReply(
$api->chat([
'model' => 'gpt-3.5-turbo',
'messages' => $messages,
'temperature' => 1.0,
'max_tokens' => 420,
'frequency_penalty' => 0,
'presence_penalty' => 0,
])
);