thanks to dear member @jessy submitted a new resource:
[021] ChatGPT Bots - This add-on provides helper functions for working with ChatGPT.
Read more about this resource...
[021] ChatGPT Bots - This add-on provides helper functions for working with ChatGPT.
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 ChatGPTPHP:$apiKey = \XF::options()->bsChatGptApiKey;
PHP:use BS\ChatGPTBots\Response; /** \Orhanerday\OpenAi\OpenAi $api */ $api = \XF::app()->container('chatGPT'); $messages = [ ['role' => 'user', 'content' => 'Hello!'] ]; $reply =...
Read more about this resource...