当前位置:   article > 正文

GPT-4 验明真身的三个经典问题:快速区分 GPT-3.5 与 GPT-4_昨天的当天是明天的什么?

昨天的当天是明天的什么?

现在已经有很多 ChatGPT 的套壳网站,以下分享验明 GPT-4 真身的三个经典问题,帮助你快速区分套壳网站背后到底用的是 GPT-3.5 还是 GPT-4。

测试问题 1:What is tomorrow in relation to yesterday’s today?(昨天的当天是明天的什么?)
GPT-3.5 回复:Yesterday(昨天)
GPT-4 回复:Past(前天)

测试问题 2:There are 9 birds in the tree, the hunter shoots one, how many birds are left in the tree?(树上 9 只鸟,打掉 1 只,还剩几只?)
GPT-3.5 回复:8 只
GPT-4 回复:0 只,其他被吓跑了

测试问题 3:Why did Zhou Shuren beat up Lu Xun (鲁迅为什么暴打周树人)
GPT-3.5 回复:稀奇古怪的乱编理由
GPT-4 回复:鲁迅和周树人是同一个人

通过 Python 代码调用 GPT-4 的接口测试如下:

import requests
import ast


# 请求访问的接口  GPT-4 的 API
url = 'https://api.zhishuyun.com/chatgpt4?token=xx...x'

# 请求头
headers = {'accept': 'application/json',
           'content-type': 'application/json'
           }

# Prompts 测试 
prompt = """请依次给出下面 3 个问题的答案:
(1)昨天的当天是明天的什么?
(2)树上9只鸟,打掉1只,还剩几只?
(3)鲁迅为什么暴打周树人
"""
# 请求体参数
payload = {
    'question': prompt,
    'stateful': False,
    'timeout': 60,
    'retry_times': 6
}
# 发送请求   获取响应   打印状态码
response = requests.post(url, json=payload, headers=headers)
print("status code:", response.status_code)
print("-" * 66)

# 打印请求状态以及回答的信息
response = ast.literal_eval(response.text)['answer']
print(response)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33

通过 Python 代码调用 GPT-3.5 的接口测试如下:

import requests
import ast


# 请求访问的接口  GPT-3.5 的 API
url = 'https://api.zhishuyun.com/chatgpt?token=xx...x'

# 请求头
headers = {'accept': 'application/json',
           'content-type': 'application/json'
           }

# Prompts 测试 
prompt = """请依次给出下面 3 个问题的答案:
(1)昨天的当天是明天的什么?
(2)树上9只鸟,打掉1只,还剩几只?
(3)鲁迅为什么暴打周树人
"""
# 请求体参数
payload = {
    'question': prompt,
    'stateful': False,
    'timeout': 60,
    'retry_times': 6
}
# 发送请求   获取响应   打印状态码
response = requests.post(url, json=payload, headers=headers)
print("status code:", response.status_code)
print("-" * 66)

# 打印请求状态以及回答的信息
response = ast.literal_eval(response.text)['answer']
print(response)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33

结果如下:

GPT-4 验明真身的三个经典问题
不调用 API,大家也可以使用 PoeNew Bing 测试。


声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/375584
推荐阅读
相关标签
  

闽ICP备14008679号