以下是一个 代码示例,用于调用 GPT-3 API 中的 chat API:


import openai
openai.api_key = ""
def chat(prompt, model, temperature=0.5, max_tokens=2048, stop=None):
    response = openai.Completion.create(
      engine=model,
      prompt=prompt,
      temperature=temperature,
      max_tokens=max_tokens,
      n=1,
      stop=stop
    )
    message = response.choices[0].text.strip()
    return message

在上述代码中,您需要替换 为您在 上获取的 API 密钥。您还需要提供以下参数:

示例模板什么意思_chatgpt 示例模板_排序算法模板实现示例分享

使用上述代码调用 chat API 的示例:


prompt = "Hello, how are you?"
model = "text-davinci-002"
response = chat(prompt, model)
print(response)

在上述示例中,我们使用了 text–002 模型来回答问题。您可以通过指定不同的模型名称来使用其他模型。如果一切正常,该代码将生成一个回答并将其打印到控制台。