-
Notifications
You must be signed in to change notification settings - Fork 354
Comparing changes
Open a pull request
base repository: googleapis/python-aiplatform
base: v1.41.0
head repository: googleapis/python-aiplatform
compare: v1.42.0
Commits on Feb 8, 2024
-
fix: add google-auth as a direct dependency
chore: remove deprecated constraints-3.7.txt file Fixes #3274 PiperOrigin-RevId: 605363132
Configuration menu - View commit details
-
Copy full SHA for ecc6454 - Browse repository at this point
Copy the full SHA ecc6454View commit details
Commits on Feb 9, 2024
-
feat: GenAI - Release the GenerativeModel to GA
PiperOrigin-RevId: 605495995
Configuration menu - View commit details
-
Copy full SHA for c7e3f07 - Browse repository at this point
Copy the full SHA c7e3f07View commit details -
chore: Add compat types and services for FS 2.0.
PiperOrigin-RevId: 605697285
Configuration menu - View commit details
-
Copy full SHA for 716f3e1 - Browse repository at this point
Copy the full SHA 716f3e1View commit details -
feat: LVM - Added support for Images from GCS uri for multimodal embe…
…ddings PiperOrigin-RevId: 605748060
Configuration menu - View commit details
-
Copy full SHA for 90d95d7 - Browse repository at this point
Copy the full SHA 90d95d7View commit details
Commits on Feb 10, 2024
-
docs: Fix incorrect field in log_time_series_metrics_sample
PiperOrigin-RevId: 605759888
Configuration menu - View commit details
-
Copy full SHA for f249353 - Browse repository at this point
Copy the full SHA f249353View commit details
Commits on Feb 12, 2024
-
feat: LLM - Add newly supported model
text-bison@002
, update pipeli……ne template version and prediction row limit for pipeline-based LLM Evaluation SDK PiperOrigin-RevId: 606317770
Configuration menu - View commit details
-
Copy full SHA for 35e57b3 - Browse repository at this point
Copy the full SHA 35e57b3View commit details -
Copybara import of the project:
-- b230f56 by Kevin James <KevinJames@thekev.in>: refactor: migrate off pkg_resources pkg_resources has been deprecated in favour of the builtin `importlib.*` packages. Note that for python3.7 support, we need the `importlib-metadata` backport library; once that version is dropped, the conditional dependency pin and imports can be removed. See the PyPA docs[1] for more info. 1: https://setuptools.pypa.io/en/latest/pkg_resources.html -- b6b6d0b by Kevin James <KevinJames@thekev.in>: chore: respond to pr review COPYBARA_INTEGRATE_REVIEW=#3298 from TheKevJames:kjames/nuke-pkg-resources b6b6d0b PiperOrigin-RevId: 606318888
Configuration menu - View commit details
-
Copy full SHA for 32c7197 - Browse repository at this point
Copy the full SHA 32c7197View commit details
Commits on Feb 13, 2024
-
feat: LVM - Add GCS URI support for Imagen Models (
imagetext
, `imag……egeneration`) PiperOrigin-RevId: 606401323
Configuration menu - View commit details
-
Copy full SHA for 4109ea8 - Browse repository at this point
Copy the full SHA 4109ea8View commit details -
feat: Add metadata in model.predict output for LLMs
PiperOrigin-RevId: 606420971
Configuration menu - View commit details
-
Copy full SHA for 4661e58 - Browse repository at this point
Copy the full SHA 4661e58View commit details -
chore: LLM - Removed the model launch stage limitations
Model garden models can have various launch stages: GA, public review, private preview. Previously, the `ModelGardenModel` base class required a model interface class to be marked as preview to be able to use preview models. This resulted in maintenance issues and unnecessary proliferations of classes, because each class had to be duplicated up to 3 times to be able to accommodate models in different launch stages. For example, some people with a private preview model had wither change their model launch stage or create a special private preview version of the model interface class just to work around the loading restrictions. The launch stage restriction has confused some of our users. Some user change `text-bison` to `text-bison-32k` and the code starts throwing error. With this change, the model interface classes no longer reject preview models. The breaking change guarantees now apply separately to the model interface classes and models. A preview class can change when going to GA. A preview model can change when going to GA. PiperOrigin-RevId: 606430510
Configuration menu - View commit details
-
Copy full SHA for f821e45 - Browse repository at this point
Copy the full SHA f821e45View commit details -
feat: GenAI - GAPIC - Added support for Grounding
feat: Add Retrieval feat: Add GoogleSearchRetrieval feat: Add VertexAiSearch feat: Add Tool.retrieval feat: Add Tool.google_search_retrieval feat: Add Candidate.grounding_metadata PiperOrigin-RevId: 606432042
Configuration menu - View commit details
-
Copy full SHA for 310ee49 - Browse repository at this point
Copy the full SHA 310ee49View commit details -
feat: support custom image for Ray cluster creation
PiperOrigin-RevId: 606689613
Configuration menu - View commit details
-
Copy full SHA for d727189 - Browse repository at this point
Copy the full SHA d727189View commit details -
fix: remove usage of distutils
Partially fixes #2931 distutils is deprecated in Python 3.12 (https://docs.python.org/3/whatsnew/3.10.html#distutils-deprecated) PiperOrigin-RevId: 606697684
Configuration menu - View commit details
-
Copy full SHA for e35ab64 - Browse repository at this point
Copy the full SHA e35ab64View commit details -
feat: LVM - Added support for Videos from GCS uri for multimodal embe…
…ddings PiperOrigin-RevId: 606757856
Configuration menu - View commit details
-
Copy full SHA for f3bd3bf - Browse repository at this point
Copy the full SHA f3bd3bfView commit details
Commits on Feb 14, 2024
-
chore: Add compat clients for Feature Store 2.0.
PiperOrigin-RevId: 606798884
Configuration menu - View commit details
-
Copy full SHA for 6398ba2 - Browse repository at this point
Copy the full SHA 6398ba2View commit details -
PiperOrigin-RevId: 606818072
Configuration menu - View commit details
-
Copy full SHA for 14b41b5 - Browse repository at this point
Copy the full SHA 14b41b5View commit details -
fix: Add restricts and crowding tag to
MatchingEngineIndexEndpoint
……query response. PiperOrigin-RevId: 607012218
Configuration menu - View commit details
-
Copy full SHA for 83cb52d - Browse repository at this point
Copy the full SHA 83cb52dView commit details -
Copybara import of the project:
-- f6e8a6a by Simon Hessner <simon.hessner@nlpatent.com>: Bugfix: 0 is now considered a valid step number in log_time_series_metrics Previously, when log_time_series_metrics is called without a step value it defaults to None. The function internally checked `if not step` and in this case, determined a step number. The problem is that 0 is falsy and therefore the function turns step=0 into step=1 which is a problem if the function is later called with step=1 (in that case the first logged values are overwritten) Checking for `if step is None` fixes the problem. COPYBARA_INTEGRATE_REVIEW=#3199 from simonhessner:fix-step-number 722383c PiperOrigin-RevId: 607078093
Configuration menu - View commit details
-
Copy full SHA for fc214f5 - Browse repository at this point
Copy the full SHA fc214f5View commit details
Commits on Feb 15, 2024
-
chore: Bump google-api-core to support rest transport
PiperOrigin-RevId: 607132991
Configuration menu - View commit details
-
Copy full SHA for e7828d9 - Browse repository at this point
Copy the full SHA e7828d9View commit details -
chore: GenAI - De-duplicated unit test mocks
PiperOrigin-RevId: 607139237
Configuration menu - View commit details
-
Copy full SHA for dd80b69 - Browse repository at this point
Copy the full SHA dd80b69View commit details -
feat: GenAI - Added support for Grounding
PiperOrigin-RevId: 607165697
Configuration menu - View commit details
-
Copy full SHA for 0c3e294 - Browse repository at this point
Copy the full SHA 0c3e294View commit details -
feat: GenAI - Added the `GenerativeModel.start_chat(response_validati…
…on: bool = True)` parameter The error messages are now more informative. The use of the `raise_on_blocked` parameter has been deprecated. Use `response_validation` instead. PiperOrigin-RevId: 607188491
Configuration menu - View commit details
-
Copy full SHA for 94f7cd9 - Browse repository at this point
Copy the full SHA 94f7cd9View commit details -
feat: GenAI - Added
to_dict()
methods to response and content classesAlso fixed couple of existing methods that were broken. PiperOrigin-RevId: 607215896
Configuration menu - View commit details
-
Copy full SHA for a78748e - Browse repository at this point
Copy the full SHA a78748eView commit details -
chore(main): release 1.42.0 (#3288)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for c00219f - Browse repository at this point
Copy the full SHA c00219fView 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 v1.41.0...v1.42.0