panix/yii2-chatgpt
最新稳定版本:1.0.0
Composer 安装命令:
composer require panix/yii2-chatgpt
包简介
Yii2 ChatGPT
关键字:
README 文档
README
See all methods: https://github.com/orhanerday/open-ai#documentation
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); ?>
统计信息
- 总下载量: 290
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-06-03