PHP code example of code-lives / chat-gpt
1. Go to this page and download the library: Download code-lives/chat-gpt library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
code-lives / chat-gpt example snippets
$uid = "1"; //要求是字符串
$redis_key = "chat_record" . $uid;
$content = "还有哪些优点"; //提问内容
$chat = Redis::get($redis_key);
if (!$chat) {
$chatArray = [['role' => 'user', 'content' => $content]];
} else {
$chatArray = unserialize($chat);
$chatArray[] = ['role' => 'user', 'content' => $content];
}
$chat = new \ChatGpt\Chat\ChatGpt('key值');
$data = $chat->QuestionAndAnswer($uid, $chatArray);
if (isset($data['choices'])) {
$chatArray[] = ['role' => 'assistant', 'content' => $data['choices'][0]['message']['content']];
}
Redis::setex($redis_key, 3600, serialize($chatArray));
echo $data['choices'][0]['message']['content'];
在 Laravel 视图层展示可能标签丢失 {{$data}} 转换 {!!$data!!}
$chat = new \ChatGpt\Chat\ChatGpt('key值');
$data = $chat->QuestionAndAnswer($uid, $chatArray);
$content = $chat->WebFormat($data['choices'][0]['message']['content']);
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/11.2.0/styles/default.min.css" />
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/11.2.0/highlight.min.js"></script>
<script>
hljs.initHighlightingOnLoad();
</script>
id 自增
uid 用户uid
role 角色 用户=user chatgpt = assistant
content 内容
create_time int
读取出来的数据如下
$chatArray=[
[
'role'=>'user',
'content'=>'Laravel 有什么优点',
],
[
'role'=>'assistant',
'content'=>'有****优点',
],
[
'role'=>'user',
'content'=>'还有吗?'
],
[
'role'=>'assistant',
'content'=>'还有****',
]
];
$chatArray=[
[
'role'=>'user',
'content'=>'Laravel 有什么优点',
]
];
$chatArray=[
[
'role'=>'user',
'content'=>'Laravel 有什么优点',
],
,
[
'role'=>'assistant',
'content'=>'有****优点',
],
[
'role'=>'user',
'content'=>'还有吗?'
]
];