如何在环境变量中存储 API 键?并在 google colab 中调用相同的内容

How to store API keys in environment variable? and call the same in google colab

我不确定如何使用我的 GPT-3 API key/environment 变量制作“.json”文件,但我想在 Google 用于自动代码生成的 Colab。

有人可以告诉我怎么做吗?

我想使用下面的代码从 the.json 文件中获取 API 密钥。

with open('GPT_SECRET_KEY.json') as f:
    data = json.load(f)
openai.api_key = data["API_KEY"]

要读取 json 文件,请执行以下操作:

import json

my_key = ''
with open('GPT_SECRET_KEY.json', 'r') as file_to_read:
    json_data = json.load(file_to_read)
    my_key = json_data["API_KEY"]

您的 json 文件的结构应如下所示。

{
    "API_KEY": "xxxxthis_is_the_key_you_are_targetingxxxx", 
    "API_KEY1": "xxxxxxxxxxxxxxxxxxxxxxx",
    "API_KEY2": "xxxxxxxxxxxxxxxxxxxxxxx"
}
如果我的回答不够清楚,

Here is a link 到一个类似的问题。