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

ImportError: cannot import name 'ComputerCallOutput' from 'openai.types.responses' #2231

Open
1 task done
guunergooner opened this issue Mar 20, 2025 · 1 comment
Open
1 task done
Labels
bug Something isn't working

Comments

@guunergooner
Copy link

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

While using the openai-python SDK, I attempted to import the ComputerCallOutput data structure from openai.types.responses, but encountered the following error:

Traceback (most recent call last):
  File "/Users/gooner/Workbench/repo/github.com/browser-use/browser-use/apiserver.py", line 47, in <module>
    from openai.types.responses import ComputerCallOutput
ImportError: cannot import name 'ComputerCallOutput' from 'openai.types.responses' (/Users/gooner/Workbench/repo/github.com/browser-use/browser-use/.venv/lib/python3.11/site-packages/openai/types/responses/__init__.py)

It seems that ComputerCallOutput is not available in the openai.types.responses module, possibly due to a mismatch between the documentation and the codebase, or the data structure not being properly exposed.

To Reproduce

  • Steps to Reproduce

    • Install the openai-python SDK (e.g., via pip install openai).
    • Create a Python script with the following code:
      from openai.types.responses import ComputerCallOutput
    • Run the script and observe the error.
  • Environment
    Operating System: macOS
    Python Version: 3.11
    OpenAI SDK Version: 1.67.0

Code snippets

from openai.types.responses import ComputerCallOutput

OS

macOS

Python version

Python 3.11.11

Library version

openai 1.67.0

@guunergooner guunergooner added the bug Something isn't working label Mar 20, 2025
@Programmer-RD-AI
Copy link

Programmer-RD-AI commented Mar 22, 2025

Hi,

I've noticed that there are two instances of ComputerCallOutput in our codebase—one in src/openai/types/responses/response_input_item_param.py and the other in src/openai/types/responses/response_input_param.py. Since both definitions are identical, I've consolidated them by importing the one from response_input_param.py in our __init__.py file as follows:

from .response_input_param import ComputerCallOutput as ComputerCallOutput

I've created a PR with this change. (#2248)

Could you also clarify which documentation you were referring to? For now, you can import ComputerCallOutput directly using:

from openai.types.responses.response_input_param import ComputerCallOutput

Thanks for your feedback!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants