context_management=[{"type": "type"}] in tests, not 'compaction'
Nobody has claimed this yet.
- 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
src/openai/types/responses/response_create_params.py gives us the supported string:
"""The context management entry type. Currently only 'compaction' is supported."""
It is sufficent to say that tests/api_resources/test_responses.py would fail without the right value for that key, or that the API actually able to run that test is not validating the one enum that would make something happen.
To Reproduce
- look at the code
- be astonished.
Code snippets
response = client.responses.create(
background=True,
context_management=[
{
"type": "type", # wot?
"compact_threshold": 1000,
}
],
OS
AnyOS
Python version
Python 3.12
Library version
v2.20.0
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by inspecting src/openai/types/responses/response_create_params.py and the context_management example in tests/api_resources/test_responses.py. Compare the declared supported entry type with the value used by the test, then run that test file. Done means the test uses the supported context-management value and passes.
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
- 72/100