-
Notifications
You must be signed in to change notification settings - Fork 0
Comparing changes
Open a pull request
base repository: rodrich/python-docs-samples
base: main
head repository: GoogleCloudPlatform/python-docs-samples
compare: main
- 13 commits
- 66 files changed
- 14 contributors
Commits on Nov 7, 2025
-
fix(speech): add streaming input limit for speech transcription examp…
…le (GoogleCloudPlatform#13301) * Enforce 25Kb limit for infinite transcription Current implementation breaks when a new stream is created, even under 5 min limit. This is due to the missing logic to handle 25KB stream size limit [1] Updated the 'generator' function to yield data as soon as API limit is reached. [1] - GoogleCloudPlatform#12053 * nit: Update speech/microphone/transcribe_streaming_infinite_v2.py Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> --------- Co-authored-by: Jennifer Davis <[email protected]> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 40470a6 - Browse repository at this point
Copy the full SHA 40470a6View commit details
Commits on Nov 10, 2025
-
chore(deps): bump fastmcp from 2.8.0 to 2.13.0 in /run/mcp-server (Go…
…ogleCloudPlatform#13625) Bumps [fastmcp](https://github.com/jlowin/fastmcp) from 2.8.0 to 2.13.0. - [Release notes](https://github.com/jlowin/fastmcp/releases) - [Changelog](https://github.com/jlowin/fastmcp/blob/main/docs/changelog.mdx) - [Commits](jlowin/fastmcp@v2.8.0...v2.13.0) --- updated-dependencies: - dependency-name: fastmcp dependency-version: 2.13.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 930ad03 - Browse repository at this point
Copy the full SHA 930ad03View commit details
Commits on Nov 11, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 19d89b8 - Browse repository at this point
Copy the full SHA 19d89b8View commit details -
fix(appengine): update all app engine samples to latest Python (Googl…
…eCloudPlatform#13612) * fix(appengine): update all app engine samples to latest Python Python 3.9 is EOL, new deployments will error, with the message saying to update to the latest Python runtime. b/452455170 * cgi dropped in py313, make this sample use py312 for now * cloudsql binary not installing on py313, try latest version just in case * bump sqlalchemy to avoid import typing error * mail package also uses cgi, pull back to py312
Configuration menu - View commit details
-
Copy full SHA for c4187f6 - Browse repository at this point
Copy the full SHA c4187f6View commit details
Commits on Nov 13, 2025
-
feat(genai): Adding live samples (GoogleCloudPlatform#13598)
* Adding samples * Live samples updates * adding mocking * changing region in test_live_conversation_audio_with_audio * removing rag memory corpus * mocking live_conversation_audio_with_audio * fixing mock live_conversation_audio_with_audio --------- Co-authored-by: Guiners <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 4cd0939 - Browse repository at this point
Copy the full SHA 4cd0939View commit details
Commits on Nov 17, 2025
-
Configuration menu - View commit details
-
Copy full SHA for d3c7155 - Browse repository at this point
Copy the full SHA d3c7155View commit details
Commits on Nov 20, 2025
-
Configuration menu - View commit details
-
Copy full SHA for eff0040 - Browse repository at this point
Copy the full SHA eff0040View commit details
Commits on Dec 3, 2025
-
feat: add code samples for preference tuning (GoogleCloudPlatform#13644)
* feat: add code samples for preference tuning * update region tag * update requirement and add test * update test * add new line --------- Co-authored-by: James Su <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 800a114 - Browse repository at this point
Copy the full SHA 800a114View commit details
Commits on Dec 12, 2025
-
chore(deps): bump urllib3 (GoogleCloudPlatform#13666)
Bumps [urllib3](https://github.com/urllib3/urllib3) from 2.5.0 to 2.6.0. - [Release notes](https://github.com/urllib3/urllib3/releases) - [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst) - [Commits](urllib3/urllib3@2.5.0...2.6.0) --- updated-dependencies: - dependency-name: urllib3 dependency-version: 2.6.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 6cbd328 - Browse repository at this point
Copy the full SHA 6cbd328View commit details -
chore(genai): Update tools_google_search_with_txt.py to include examp…
…le for exclude… (GoogleCloudPlatform#13600) * Update tools_google_search_with_txt.py to include example for exclude_domains * Update genai/tools/tools_google_search_with_txt.py Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> * Update genai/tools/tools_google_search_with_txt.py * Update requirements * Update genai/tools/requirements.txt Co-authored-by: Katie McLaughlin <[email protected]> --------- Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: Holt Skinner <[email protected]> Co-authored-by: Katie McLaughlin <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e1fe831 - Browse repository at this point
Copy the full SHA e1fe831View commit details
Commits on Dec 13, 2025
-
feat: Custom Credential Supplier Documentation (GoogleCloudPlatform#1…
…3634) * Included changes for python script for custom credential suppliers. * Made some test and format changes. * Scripts now read from a file instead of env variables. Changed readmes as well. * Added license header to pod.yaml. * fix: Update Dockerfile this updates to a more modern version of python and leverages the benefits of Docker's Layer caching. requirements.txt will rarely change so this way the depedency layer is cached and only rebuilt if you explictly change requirements.txt. * fix: clarify comments * fix: refactor main to seprate concerns simplify testing need to refactor testing based on this separation. * fix: update testing to match refactored main. * fix: update version to test * fix: use latest python * fix: last line * fix: address issues introduced in gitignore file * fix: cleanup README documentation. * fix: refine the README instructions. * fix: Apply suggestion from @gemini-code-assist[bot] Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> * fix: starting region tag * fix: address whitespace linting issue * fix: address linting * Now using the storage library instead of calling the storage endpoint. * Removed unnecessary comments. * Formatting changes. * Changed default scopes. * Fixed PR Build run fixes. --------- Co-authored-by: Jennifer Davis <[email protected]> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for a1cc7a4 - Browse repository at this point
Copy the full SHA a1cc7a4View commit details
Commits on Dec 15, 2025
-
chore(deps): bump django in /appengine/standard_python3/django (Googl…
…eCloudPlatform#13660) Bumps [django](https://github.com/django/django) from 5.1.8 to 5.1.15. - [Commits](django/django@5.1.8...5.1.15) --- updated-dependencies: - dependency-name: django dependency-version: 5.1.15 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for aaa3218 - Browse repository at this point
Copy the full SHA aaa3218View commit details -
fix: enable dialog_cx dependency updates to be tested/merged (GoogleC…
…loudPlatform#13670) * chore(deps): bump werkzeug from 3.0.6 to 3.1.4 in /dialogflow-cx Bumps [werkzeug](https://github.com/pallets/werkzeug) from 3.0.6 to 3.1.4. - [Release notes](https://github.com/pallets/werkzeug/releases) - [Changelog](https://github.com/pallets/werkzeug/blob/main/CHANGES.rst) - [Commits](pallets/werkzeug@3.0.6...3.1.4) --- updated-dependencies: - dependency-name: werkzeug dependency-version: 3.1.4 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * fix: validated in 3.10 --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 04df049 - Browse repository at this point
Copy the full SHA 04df049View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff main...main