openai / openai/openai-python

Empty OPENAI_BASE_URL prevents fallback to default API endpoint

Open Beginner friendly
#2,927 6 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

bug
Dominant language
Python
Stars
31.6k
Forks
5.7k
Avg merge
1d 6h
Merged PRs (30d)
96

Description

Confirm this is an issue with the Python library and not an underlying OpenAI API
  • This is an issue with the Python library
Describe the bug

I noticed a small issue in the base_url initialization logic: (https://github.com/openai/openai-python/blob/656e3cab4a18262a49b961d41293367e45ee71b9/src/openai/_client.py#L163-L166)

if base_url is None:
    base_url = os.environ.get("OPENAI_BASE_URL")
if base_url is None:
    base_url = f"https://api.openai.com/v1"

If the environment variable OPENAI_BASE_URL is defined but empty (e.g., OPENAI_BASE_URL=""), then os.environ.get("OPENAI_BASE_URL") returns an empty string. As a result:

  • base_url becomes ""
  • the second condition (if base_url is None) is never triggered
  • the intended fallback "https://api.openai.com/v1" is skipped

An empty string is not a valid base URL, so this can lead to confusing behavior.

To Reproduce
  1. export OPENAI_BASE_URL=""
  2. run the following:
from openai import OpenAI

client = OpenAI()
client.models.list()
  1. Trigger an "openai.APIConnectionError: Connection error" error
Code snippets

OS

macOS

Python version

Python 3.12.2

Library version

2.15.0

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Start in src/openai/_client.py at the base_url initialization logic linked in the issue, then reproduce the behavior with OPENAI_BASE_URL set to an empty string and client.models.list(). Done means the client uses the documented default endpoint instead of producing a connection error in this environment.

Written by the indexing model from the issue text.

Assessment

Tech stack
python
Domain
api
Issue type
Bug
Difficulty
2/5
Estimated time
1-3 hours
Activity status
Quiet
Clarity
Clearly specified
Newbie friendliness
68/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.