fix: os.environ['OPENAI_API_KEY'] exception when no environment variable set
This commit is contained in:
parent
70c6870776
commit
8b1cf7effd
|
|
@ -70,7 +70,7 @@ llm_model_dict = {
|
||||||
"openai-chatgpt-3.5": {
|
"openai-chatgpt-3.5": {
|
||||||
"local_model_path": "gpt-3.5-turbo",
|
"local_model_path": "gpt-3.5-turbo",
|
||||||
"api_base_url": "https://api.openapi.com/v1",
|
"api_base_url": "https://api.openapi.com/v1",
|
||||||
"api_key": os.environ["OPENAI_API_KEY"]
|
"api_key": os.environ.get("OPENAI_API_KEY")
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue