Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: when api_key is None or "", the request should not contain 'Authorizat… #2266

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 8 additions & 10 deletions src/openai/_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,7 @@ def __init__(
"""
if api_key is None:
api_key = os.environ.get("OPENAI_API_KEY")
if api_key is None:
raise OpenAIError(
"The api_key client option must be set either by passing api_key to the client or by setting the OPENAI_API_KEY environment variable"
)

self.api_key = api_key

if organization is None:
Expand Down Expand Up @@ -170,7 +167,9 @@ def qs(self) -> Querystring:
@override
def auth_headers(self) -> dict[str, str]:
api_key = self.api_key
return {"Authorization": f"Bearer {api_key}"}
if api_key :
return {"Authorization": f"Bearer {api_key}"}
return {}

@property
@override
Expand Down Expand Up @@ -341,10 +340,7 @@ def __init__(
"""
if api_key is None:
api_key = os.environ.get("OPENAI_API_KEY")
if api_key is None:
raise OpenAIError(
"The api_key client option must be set either by passing api_key to the client or by setting the OPENAI_API_KEY environment variable"
)

self.api_key = api_key

if organization is None:
Expand Down Expand Up @@ -401,7 +397,9 @@ def qs(self) -> Querystring:
@override
def auth_headers(self) -> dict[str, str]:
api_key = self.api_key
return {"Authorization": f"Bearer {api_key}"}
if api_key :
return {"Authorization": f"Bearer {api_key}"}
return {}

@property
@override
Expand Down