php调用openai的chatgpt聊天代码

代码语言:php

所属分类:其他

代码描述:php调用openai的chatgpt聊天代码

代码标签: php 调用 openai chatgpt 聊天 代码

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<?php

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, "https://api.openai.com/v1/completions");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, '{
 
 "model": "text-davinci-003",
  "prompt": "给我写一个css代码",
  "max_tokens": 1120
  
}');


curl_setopt($ch, CURLOPT_POST, 1);

// Set the API key as an HTTP header
$headers = array();
$headers[] = "Content-Type: application/json";
$headers[] = "Authorizat.........完整代码请登录后点击上方下载按钮下载查看

网友评论0