How do you implement OpenAI GPT-3 Api Client in PHP?

题意:如何在 PHP 中实现 OpenAI GPT-3 API 客户端?

问题背景:

I need help understanding the vague instructions on https://packagist.org/packages/orhanerday/open-ai

我需要帮助来理解这些模糊的说明...

I downloaded the package from https://github.com/orhanerday/open-ai

我从 https://github.com/orhanerday/open-ai 下载了这个包。

I installed the package by running "composer require orhanerday/open-ai" in my Command Prompt

我通过在命令提示符中运行 composer require orhanerday/open-ai 安装了这个包。

Instructions stop making sense from there.....

从那以后,说明就不太清楚了......

What does the "use Orhanerday\OpenAi\OpenAi;" code mean and where is it applied? Am I to create a php file say index.php with content:

代码 use Orhanerday\OpenAi\OpenAi; 是什么意思,应该在哪里使用?我是要创建一个包含以下内容的 PHP 文件,比如 index.php 吗?

php 复制代码
<?php

use Orhanerday\OpenAi\OpenAi;

$complete = $open_ai->complete([

   'engine' => 'davinci',
   'prompt' => 'Hello',
   'temperature' => 0.9,
   'max_tokens' => 150,
   'frequency_penalty' => 0,
   'presence_penalty' => 0.6,
]
?>

how and where do I add my api key? Do I create a file Orhanerday\OpenAi\OpenAi.php and enter my api key there? i.e. OPENAI_API_KEY=sk-**********************************************

我应该如何以及在哪里添加我的 API 密钥?我需要创建一个 Orhanerday\OpenAi\OpenAi.php 文件并在其中输入我的 API 密钥吗?例如 OPENAI_API_KEY=sk-**********************************************

问题解决:

You should define the $open_ai variable as an OpenAI object by passing your private KEY value. for example; new OpenAi('Your-OPENAI-KEY');

你应该通过传入你的私密密钥值,将 $open_ai 变量定义为一个 OpenAI 对象。例如:new OpenAi('Your-OPENAI-KEY');

Complete code; 完整的代码

php 复制代码
<?php


use Orhanerday\OpenAi\OpenAi;

$open_ai = new OpenAi('OPEN-AI-KEY');// <- define the variable.

$complete = $open_ai->complete([
    'engine' => 'davinci',
    'prompt' => 'Hello',
    'temperature' => 0.9,
    'max_tokens' => 150,
    'frequency_penalty' => 0,
    'presence_penalty' => 0.6,
]);

I also added the Quick Start Part to orhanerday/OpenAI readme.

我还在 orhanerday/OpenAI 的自述文件中添加了快速入门部分。

相关推荐
Godlovesea10 分钟前
ubuntu控制器多网口配置
开发语言·php
神经美学_茂森1 小时前
【自由能系列(初级),论文解读】神经网络中,熵代表系统的不确定性,自由能则引导系统向更低能量的状态演化,而动力学则描述了系统状态随时间的变化。
人工智能·神经网络·php
HackKong2 小时前
Python与黑客技术
网络·python·web安全·网络安全·php
网安-轩逸7 小时前
IPv4地址表示法详解
开发语言·php
007php00712 小时前
linux服务器上CentOS的yum和Ubuntu包管理工具apt区别与使用实战
linux·运维·服务器·ubuntu·centos·php·ai编程
胡译胡说17 小时前
还记得十几年前 PHP 那个 0x00+2=4 的 Bug 吗
php·debug·编译原理
魔众18 小时前
一个桌面工具条系统,插件一键启动,快速扩展提高工作效率
开源·php·laravel·blog
raysync88821 小时前
替代传统FTP传输,镭速大数据传输系统实现安全高效数据流转!
开发语言·安全·php
cr.sheeper21 小时前
CTFHUB-web进阶-php
开发语言·php
Clockwiseee1 天前
PHP之伪协议
android·开发语言·php