Hello,
I am sorry if this has already been discussed, but I couldnt find anything.
I am trying to authenticate and connect through the API, but I am receiving the following error:
Output exceeds the size limit. Open the full output data in a text editor
AuthenticationError Traceback (most recent call last)
Cell In[7], line 5
3 openai.organization = “org-pPdfhAEkMwfc3yZcZvlzSmqG”
4 openai.api_key = os.getenv(“xxx”)
----> 5 openai.Model.list()
File ~\AppData\Roaming\Python\Python311\site-packages\openai\api_resources\abstract\listable_api_resource.py:52, in ListableAPIResource.list(cls, api_key, request_id, api_version, organization, api_base, api_type, **params)
41 @classmethod
42 def list(
43 cls,
(…)
50 **params,
51 ):
—> 52 requestor, url = cls.__prepare_list_requestor(
53 api_key,
54 api_version,
55 organization,
56 api_base,
57 api_type,
58 )
60 response, _, api_key = requestor.request(
61 “get”, url, params, request_id=request_id
62 )
63 openai_object = util.convert_to_openai_object(
…
→ 186 raise openai.error.AuthenticationError(
187 “No API key provided. You can set your API key in code using 'openai.api_key = ', or you can set the environment variable OPENAI_API_KEY=). If your API key is stored in a file, you can point the openai module at it with 'openai.api_key_path = '. You can generate API keys in the OpenAI web interface. See onboard.openai.com for details, or email support@openai.com if you have any questions.”
188 )
AuthenticationError: No API key provided. You can set your API key in code using 'openai.api_key = ', or you can set the environment variable OPENAI_API_KEY=). If your API key is stored in a file, you can point the openai module at it with 'openai.api_key_path = '. You can generate API keys in the OpenAI web interface. See , or email if you have any questions.