File tree 1 file changed +6
-4
lines changed
1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -26,11 +26,12 @@ pip install openai
26
26
The full API of this library can be found in [ api.md] ( https://www.github.com/openai/openai-python/blob/main/api.md ) .
27
27
28
28
``` python
29
+ import os
29
30
from openai import OpenAI
30
31
31
32
client = OpenAI(
32
- # defaults to os.environ.get("OPENAI_API_KEY")
33
- api_key = " My API Key " ,
33
+ # This is the default and can be omitted
34
+ api_key = os.environ.get( " OPENAI_API_KEY " ) ,
34
35
)
35
36
36
37
chat_completion = client.chat.completions.create(
@@ -54,12 +55,13 @@ so that your API Key is not stored in source control.
54
55
Simply import ` AsyncOpenAI ` instead of ` OpenAI ` and use ` await ` with each API call:
55
56
56
57
``` python
58
+ import os
57
59
import asyncio
58
60
from openai import AsyncOpenAI
59
61
60
62
client = AsyncOpenAI(
61
- # defaults to os.environ.get("OPENAI_API_KEY")
62
- api_key = " My API Key " ,
63
+ # This is the default and can be omitted
64
+ api_key = os.environ.get( " OPENAI_API_KEY " ) ,
63
65
)
64
66
65
67
You can’t perform that action at this time.
0 commit comments