ChatGPT插件例子 类比制造商
创建类比。从社区提示修改为需要更少的示例。
提问
为这个短语创建一个类比:问题是箭头
回答
问题就像箭,因为它们都具有穿透表面并揭示隐藏在其下的真相的力量。
API请求
import os
import openai
openai.api_key = os.getenv("OPENAI_API_KEY")
response = openai.Completion.create(
model="text-davinci-003",
prompt="Create an analogy for this phrase:\n\nQuestions are arrows in that:",
temperature=0.5,
max_tokens=60,
top_p=1.0,
frequency_penalty=0.0,
presence_penalty=0.0
)