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: googleapis/python-aiplatform
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.114.0
Choose a base ref
...
head repository: googleapis/python-aiplatform
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.115.0
Choose a head ref
  • 13 commits
  • 55 files changed
  • 8 contributors

Commits on Sep 17, 2025

  1. feat: update list_deploy_options api for Vertex AI Model Garden custo…

    …m model to support filtering by machines that user has quota for.
    
    PiperOrigin-RevId: 808247563
    vertex-sdk-bot authored and copybara-github committed Sep 17, 2025
    Configuration menu
    Copy the full SHA
    540e9e0 View commit details
    Browse the repository at this point in the history
  2. fix: GenAI Client(evals) - Improve LiteLLM model completion response …

    …parsing
    
    PiperOrigin-RevId: 808266861
    jsondai authored and copybara-github committed Sep 17, 2025
    Configuration menu
    Copy the full SHA
    ff55a48 View commit details
    Browse the repository at this point in the history
  3. chore: Sort the converters alphabetically

    PiperOrigin-RevId: 808277563
    jaycee-li authored and copybara-github committed Sep 17, 2025
    Configuration menu
    Copy the full SHA
    c1c2fe6 View commit details
    Browse the repository at this point in the history
  4. fix: Update definition of async_add_session_to_memory to not depend o…

    …n Session
    
    This avoids issues with the generation of the schema when deploying
    
    PiperOrigin-RevId: 808304051
    yeesian authored and copybara-github committed Sep 17, 2025
    Configuration menu
    Copy the full SHA
    dc9a5da View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2025

  1. feat!: GenAI SDK client - Modify optimize_prompt to return raw and pa…

    …rsed responses.
    
    This commit changes the return structure for the `optimize_prompt` method.
    
    Previously, the method would return only the parsed response object directly.
    
    This change introduces a new response object that contains two fields:
    - `raw_text_response`: The raw, unmodified text output from the model.
    - `parsed_response`: The parsed Pydantic object. This will be `None` if parsing fails.
    
    BREAKING CHANGE: The `optimize_prompt` method no longer returns the parsed response directly. Code must be updated to access the `.raw_text_response` or `.parsed_response` attribute on the new return object.
    
    response = client.prompt_optimizer.optimize_prompt(...)
    raw_output = response.raw_text_response
    parsed_output = response.parsed_response
    if parsed_output:
      suggested_prompt = parsed_output.suggested_prompt
    PiperOrigin-RevId: 808352175
    vertex-sdk-bot authored and copybara-github committed Sep 18, 2025
    Configuration menu
    Copy the full SHA
    415cf26 View commit details
    Browse the repository at this point in the history
  2. feat: GenAI SDK client - Add experimental delete_prompt() and delete_…

    …version() methods to Prompt Management
    
    PiperOrigin-RevId: 808607739
    sararob authored and copybara-github committed Sep 18, 2025
    Configuration menu
    Copy the full SHA
    3f7f976 View commit details
    Browse the repository at this point in the history
  3. feat: GenAI SDK client -- add support for user defined labels for Rea…

    …soningEngine
    
    PiperOrigin-RevId: 808649652
    yeesian authored and copybara-github committed Sep 18, 2025
    Configuration menu
    Copy the full SHA
    002b441 View commit details
    Browse the repository at this point in the history
  4. feat: GenAI SDK client - add experimental async create_version and ge…

    …t methods to prompt management
    
    PiperOrigin-RevId: 808649974
    sararob authored and copybara-github committed Sep 18, 2025
    Configuration menu
    Copy the full SHA
    d8de037 View commit details
    Browse the repository at this point in the history
  5. docs: streamline installation section in README and add uv package in…

    …stallation command
    
    PiperOrigin-RevId: 808652100
    speedstorm1 authored and copybara-github committed Sep 18, 2025
    Configuration menu
    Copy the full SHA
    bf91a55 View commit details
    Browse the repository at this point in the history
  6. feat: Add has_template_config to MultimodalDataset.

    PiperOrigin-RevId: 808720000
    Frances Hubis Thoma authored and copybara-github committed Sep 18, 2025
    Configuration menu
    Copy the full SHA
    97a6e71 View commit details
    Browse the repository at this point in the history
  7. chore: release 1.115.0

    Release-As: 1.115.0
    PiperOrigin-RevId: 808729196
    sararob authored and copybara-github committed Sep 18, 2025
    Configuration menu
    Copy the full SHA
    bcf9ce0 View commit details
    Browse the repository at this point in the history
  8. docs: Add Agent Engine with ADK examples to README.

    PiperOrigin-RevId: 808750306
    yeesian authored and copybara-github committed Sep 18, 2025
    Configuration menu
    Copy the full SHA
    c74305b View commit details
    Browse the repository at this point in the history
  9. chore(main): release 1.115.0 (#5814)

    Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
    release-please[bot] authored Sep 18, 2025
    Configuration menu
    Copy the full SHA
    2e39d0d View commit details
    Browse the repository at this point in the history
Loading