= array(); } $post['classname'] = 'post'; } function comment_format(&$post) { global $conf, $uid, $gid, $forumlist; if (empty($post)) return; $forum = $post['fid'] ? forum_read($post['fid']) : ''; $thread = well_thread_read_cache($post['tid']); if ($thread) { //$post['fid'] = $thread['fid']; $post['closed'] = $thread['closed']; $post['subject'] = $thread['subject']; $post['url'] = $thread['url']; } else { $post['closed'] = 0; $post['subject'] = lang('thread_not_exists'); $post['url'] = ''; } $post['create_date_fmt'] = humandate($post['create_date']); //$post['message'] = stripslashes(htmlspecialchars_decode($post['message'])); $user = user_read_cache($post['uid']); $post['username'] = array_value($user, 'username'); $post['user_avatar_url'] = array_value($user, 'avatar_url'); $post['user'] = $user ? user_safe_info($user) : user_guest(); isset($post['floor']) || $post['floor'] = 0; // 权限判断 $post['allowupdate'] = 2 == array_value($forum, 'comment', 0) && ($uid == $post['uid'] || forum_access_mod($post['fid'], $gid, 'allowupdate')); $post['allowdelete'] = group_access($gid, 'allowuserdelete') && $uid == $post['uid'] || forum_access_mod($post['fid'], $gid, 'allowdelete'); $post['user_url'] = url('user-' . $post['uid'] . ($post['uid'] ? '' : '-' . $post['pid'])); if ($post['files'] > 0) { list($attachlist, $imagelist, $filelist) = well_attach_find_by_pid($post['pid']); // 使用图床 评论使用图床,mysql会过多,写死链接到内容是减轻mysql的过多的方法 if (2 == $conf['attach_on']) { foreach ($imagelist as $key => $attach) { $url = $conf['upload_url'] . 'website_attach/' . $attach['filename']; // 替换成图床 $post['message'] = FALSE !== strpos($post['message'], $url) && $attach['image_url'] ? str_replace($url, $attach['image_url'], $post['message']) : $post['message']; } } $post['filelist'] = $filelist; } else { $post['filelist'] = array(); } $post['classname'] = 'post'; } function comment_format_message(&$val) { global $conf; if (empty($val)) return; // 使用云储存 if (1 == $conf['attach_on'] && 1 == $val['attach_on']) { $val['message'] = str_replace('="upload/', '="' . file_path($val['attach_on']), $val['message']); } elseif (2 == $conf['attach_on'] && 2 == $val['attach_on']) { // 使用图床 list($attachlist, $imagelist, $filelist) = well_attach_find_by_tid($val['tid']); foreach ($imagelist as $key => $attach) { $url = $conf['upload_url'] . 'website_attach/' . $attach['filename']; // 替换成图床 $val['message'] = FALSE !== strpos($val['message'], $url) && $attach['image_url'] ? str_replace($url, $attach['image_url'], $val['message']) : $val['message']; } } else { $val['message'] = str_replace('="upload/', '="' . file_path($val['attach_on']), $val['message']); } //$val['message'] = stripslashes(htmlspecialchars_decode($val['message'])); } // 把内容中使用了云储存的附件链接替换掉 function comment_message_replace_url($pid, $message) { global $conf; if (0 == $conf['attach_on']) { $message = FALSE !== strpos($message, '="../upload/') ? str_replace('="../upload/', '="upload/', $message) : $message; $message = FALSE !== strpos($message, '="/upload/') ? str_replace('="/upload/', '="upload/', $message) : $message; } elseif (1 == $conf['attach_on']) { // 使用云储存 $message = str_replace('="' . $conf['cloud_url'] . 'upload/', '="upload/', $message); } elseif (2 == $conf['attach_on']) { // 使用图床 评论使用图床,mysql会过多,写死链接到内容是减轻mysql的过多的方法 list($attachlist, $imagelist, $filelist) = well_attach_find_by_pid($pid); foreach ($imagelist as $key => $attach) { $url = $conf['upload_url'] . 'website_attach/' . $attach['filename']; // 替换回相对链接 $message = $attach['image_url'] && FALSE !== strpos($message, $attach['image_url']) ? str_replace($attach['image_url'], $url, $message) : $message; } } return $message; } function comment_filter($val) { unset($val['userip']); return $val; } function comment_highlight_keyword($str, $k) { $r = str_ireplace($k, '' . $k . '', $str); return $r; } // //
function comment_message_format(&$s) { if (xn_strlen($s) < 100) return; $s = preg_replace('#.*?
#is', '', $s); $s = str_ireplace(array('
', '
', '
', '

', '', '', '', '' . ''), "\r\n", $s); $s = str_ireplace(array(' '), " ", $s); $s = strip_tags($s); $s = preg_replace('#[\r\n]+#', "\n", $s); $s = xn_substr(trim($s), 0, 100); $s = str_replace("\n", '
', $s); } // 对内容进行引用 function comment_quote($quotepid) { $quotepost = comment_read($quotepid); if (empty($quotepost)) return ''; $uid = $quotepost['uid']; $s = $quotepost['message']; $s = comment_brief($s, 100); $userhref = url('user-' . $uid); $user = user_read_cache($uid); $r = '
' . $user['username'] . ' ' . $s . '
'; return $r; } // 获取内容的简介 0: html, 1: txt; 2: markdown; 3: ubb function comment_brief($s, $len = 100) { $s = strip_tags($s); $s = htmlspecialchars($s); $more = xn_strlen($s) > $len ? ' ... ' : ''; $s = xn_substr($s, 0, $len) . $more; return $s; } ?>【ChatGPT的API调用】
最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

【ChatGPT的API调用】

网站源码admin62浏览0评论

ChatGPT的API调用

目前ChatGPT已经开放了自己的API体系,可以通过python(或直接使用pycharm)对其进行调取使用。

一、ChatGPT处理文本的基本单位——Token

Token是GPT处理文本的基本单位。Token可以是一个字、一个词语或特定语言的一个字符。它们负责将输入的文本数据转换为GPT可以处理的数据格式。

通常1000个Token约等于750个英文单词或者400~500个汉字。

每个GPT模型都有一个预设的最大Tokens数量。例如,GPT-3每次调用允许最大处理的Tokens数量为4096。GPT-4则允许处理3万多个Token,这个数量包括用户输入和GPT输出的所有Tokens。

二、API如何计费

GPT-3.5价格较便宜,1000个Token的价格是0.002美元,换算成人民币约为2分钱。而GPT-4的价格则是GPT-3的1.5-6倍。

三、如何使用python对ChatGPT进行API调取

1、获取API Keys

只要你知道怎么交钱,那就一定知道怎么查到自己的API Keys。

2、下载OpenApi库

pip install openai

3、连接ChatGPT

import openai

4、多轮对话

# 设置你的 OpenAI API 密钥和 base URL
openai.api_base = "这里替换为你的 OpenAI API base URL" 
openai.api_key = "这里替换为你的 API 密钥" 

# 初始化消息列表,并设置系统消息以指示回答风格和语言
messages = [
    {"role": "system", "content": "用中文回答问题。"}
]

while True:
    user_input = input("Question: ") # 获取用户输入
    messages.append({"role": "user", "content": user_input}) # 将用户输入添加到消息列表中,角色为 'user'
    # 调用 OpenAI API 来获取响应
    response = openai.ChatCompletion.create(
        model="gpt-4",  # 使用的模型版本
        messages=messages,  # 传递消息列表
        temperature=0  # 设置温度为 0,确保生成的回答更加一致和可预测
    )
    print('回答: ' + str(response['choices'][0]['message']['content']) + '\n') # 获取并打印 ChatGPT 的响应

    # 将 ChatGPT 的响应添加到消息列表中,角色为 'assistant'
    messages.append(response['choices'][0]['message'])

5、运行结果

Question: 你是gpt哪个版本?
回答: 您好!我是基于 OpenAI 的 GPT-4 模型。如有任何问题,我会尽力帮您解答,请放心提问!
Question: 请简单介绍一下北京
回答: 北京是中华人民共和国的首都,同时也是国家的政治、文化和国际交流中心之一。它位于中国华北地区,拥有悠久的历史和丰富的文化遗产,是世界上最古老的城市之一。北京历史可以追溯到超过3000年前,曾经是元、明、清三个朝代的都城。

由于是多轮对话,使用者不需要重复对代码进行运行。

6、余额

可以通过API Keys对余额进行查询,每进行一次对话,都会有余额的消耗。

发布评论

评论列表(0)

  1. 暂无评论