panix/yii2-chatgpt

Yii2 ChatGPT

Installs: 170

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

Type:pixelion-component

1.0.0 2023-06-03 14:36 UTC

This package is auto-updated.

Last update: 2024-11-11 13:57:54 UTC


README

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);
?>