PHP code example of developh / open-ai

1. Go to this page and download the library: Download developh/open-ai library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

developh / open-ai example snippets


OpenAI::textCompletion('Write this is a test');

OpenAI::model('text-davinci-003')
->temperature(0.25)
->topP(0)
->textCompletion('Write this is a test');