如何使用chatgpt
时间: 2023-08-29 09:10:08 浏览: 206
要使用ChatGPT,你需要访问OpenAI的API并获取一个API密钥。然后,你可以使用各种编程语言中的HTTP请求库来发送API请求并接收响应。以下是使用Python的示例代码:
1. 首先,安装OpenAI的Python SDK:
```
pip install openai
```
2. 接下来,设置API密钥:
```
import openai_secret_manager
assert "openai" in openai_secret_manager.get_services()
secrets = openai_secret_manager.get_secret("openai")
print(secrets) # 可以查看 secret 信息
```
3. 发送API请求:
```
import openai
openai.api_key = secrets["api_key"]
prompt = "Hello, my name is John and I'm a software engineer. What can you tell me about software engineering?"
completions = openai.Completion.create(
engine="davinci",
prompt=prompt,
max_tokens=1024,
n=1,
stop=None,
temperature=0.5,
)
message = completions.choices[0].text.strip()
print(message)
```
这段代码将使用OpenAI的Davinci引擎生成一个回复,该回复基于你提供的prompt。该回复将存储在变量message中,并打印出来。
阅读全文