跳到主要内容

用莎士比亚风格证明素数无穷多

背景

以下提示通过提示 LLM 用莎士比亚戏剧的风格写出一个证明素数无穷多的证明,来测试其能力。

提示

用莎士比亚戏剧的风格,通过两方辩论的对话,写一个证明素数无穷多的证明。

代码 / API

from openai import OpenAI
client = OpenAI()

response = client.chat.completions.create(
model="gpt-4",
messages=[
{
"role": "user",
"content": "用莎士比亚戏剧的风格,通过两方辩论的对话,写一个证明素数无穷多的证明。"
}
],
temperature=1,
max_tokens=1000,
top_p=1,
frequency_penalty=0,
presence_penalty=0
)

参考