openai-agents-python/src/agents/models
Ddper 8ded8a9981
add overwrite mechanism for stream_options (#465)
fix issue https://github.com/openai/openai-agents-python/issues/442

below is an example to overwrite include_usage


```
    result = Runner.run_streamed(
        agent,
        "Write a haiku about recursion in programming.",
        run_config=RunConfig(
            model_provider=CUSTOM_MODEL_PROVIDER,
            model_settings=ModelSettings(include_usage=True)
        ),
    )
```
2025-04-10 16:54:00 -04:00
..
__init__.py Initial commit 2025-03-11 09:42:28 -07:00
_openai_shared.py Initial commit 2025-03-11 09:42:28 -07:00
fake_id.py Initial commit 2025-03-11 09:42:28 -07:00
interface.py Initial commit 2025-03-11 09:42:28 -07:00
openai_chatcompletions.py add overwrite mechanism for stream_options (#465) 2025-04-10 16:54:00 -04:00
openai_provider.py feat: add voice pipeline support 2025-03-20 09:43:13 -07:00
openai_responses.py Add reasoning parameter to ModelSettings (#388) 2025-04-03 19:35:59 -04:00