Skip to content

andrtechno/yii2-chatgpt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

Chat GPT

OpenAI

Lib OpenAI

See all methods: https://github.com/orhanerday/open-ai#documentation

Latest Stable Version Total Downloads Monthly Downloads Daily Downloads Latest Unstable Version License

Installation

The preferred way to install this extension is through composer.

Either run

php composer require --prefer-dist panix/yii2-chatgpt "*"

or add

"panix/yii2-chatgpt": "*"

Add config file

<?php
    'components' => [
        'chatgpt' => [
            'class' => 'panix\ext\chatgpt\ChatGPT',
            'apikey' => 'YOUR_API_KEY', //required
            'org' => 'ORGANIZATION_KEY' // not required
        ],
        //...
    ]
?>

to the require section of your composer.json file.

Usage

Once the extension is installed, simply use it in your code by :

<?php
$gpt = Yii::$app->chatgpt->completion([
    'model' => 'text-davinci-003',
    'prompt' => 'Hello',
    'temperature' => 0.9,
    'max_tokens' => 150,
    'frequency_penalty' => 0,
    'presence_penalty' => 0.6,
]);
print_r($gpt);
?>

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages