Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: openai/openai-agents-python
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.0.13
Choose a base ref
...
head repository: openai/openai-agents-python
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 5 commits
  • 9 files changed
  • 4 contributors

Commits on Apr 24, 2025

  1. Configuration menu
    Copy the full SHA
    8fd7773 View commit details
    Browse the repository at this point in the history
  2. Make the TTS voices type exportable (#577)

    When using the voice agent in typed code, it is suboptimal and error
    prone to type the TTS voice variables in your code independently.
    
    With this commit we are making the type exportable so that developers
    can just use that and be future-proof.
    
    Example of usage in code:
    
    ```
    DEFAULT_TTS_VOICE: TTSModelSettings.TTSVoice = "alloy"
    
    ...
    
    tts_voice: TTSModelSettings.TTSVoice = DEFAULT_TTS_VOICE 
    
    ...
    
    output = await VoicePipeline(
      workflow=workflow,
      config=VoicePipelineConfig(
      tts_settings=TTSModelSettings(
        buffer_size=512,
        transform_data=transform_data,
        voice=tts_voice,
        instructions=tts_instructions,
      ))
    ).run(audio_input)
    ```
    
    ---------
    
    Co-authored-by: Rohan Mehta <rm@openai.com>
    mangiucugna and rm-openai authored Apr 24, 2025
    Configuration menu
    Copy the full SHA
    aa197e1 View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2025

  1. docs: add FutureAGI to tracing documentation (#592)

    Hi Team! 
    
    This PR adds FutureAGI to the tracing documentation as one of the
    automatic tracing processors for OpenAI agents SDK.
    
    
    ![image](https://github.com/user-attachments/assets/4de3aadc-5efa-4712-8b02-decdedf8f8ef)
    NVJKKartik authored Apr 25, 2025
    Configuration menu
    Copy the full SHA
    4187fba View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2025

  1. Update litellm version (#626)

    Addresses #614
    pakrym-oai authored Apr 29, 2025
    Configuration menu
    Copy the full SHA
    db0ee9d View commit details
    Browse the repository at this point in the history

Commits on Apr 30, 2025

  1. 0.0.14 release (#635)

    pakrym-oai authored Apr 30, 2025
    Configuration menu
    Copy the full SHA
    f976349 View commit details
    Browse the repository at this point in the history
Loading