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 的自述文件中添加了快速入门部分。

相关推荐
clz13145214 小时前
设备反欺诈的四大支柱:从设备指纹到关联图谱
开发语言·php
xn71334 小时前
实测 Codex CLI 0.154.0:response.failed 为什么会被 idle timeout waiting for SSE 覆盖
python·openai
VIP_CQCRE7 小时前
Visual Studio 也能接入 AI 编程:用 Ace Data Cloud 快速配置 LMLocal
openai·ai编程·visual studio·ace data cloud
PHP实战开发录9 小时前
PHP脚本手动能跑定时任务却失败
开发语言·php·开发
彧azz15 小时前
图的存储结构详解:邻接矩阵的原理、实现与应用
开发语言·数据结构·学习·php
Summer-Bright16 小时前
深度 | OpenAI 联合三星造芯:从模型层向底层算力延伸,AI 算力供应链开始重新洗牌
人工智能·ai·openai·芯片
全栈弄潮儿16 小时前
一条高质量编程 Prompt,应该包含什么?
aigc·openai·ai编程
CRMEB系统商城19 小时前
CRMEB标准版系统(Java)v3.1正式发布
java·spring·微信小程序·php·教育电商
hui-梦苑20 小时前
[PHP]轻量主题函数WordPress 集成 KaTeX 数学公式渲染
开发语言·php·wordpress·katex
Flynt21 小时前
两天传了 2000 个包:OpenAI 的 Agent 是怎么把 RubyGems 当硬盘用的
安全·openai·ai编程