base repository: googleapis/python-aiplatform
base: v1.37.0
head repository: googleapis/python-aiplatform
Uh oh!
There was an error while loading. Please reload this page.
compare: v1.38.0
- 20 commits
- 151 files changed
- 10 contributors
Commits on Dec 5, 2023
PiperOrigin-RevId: 588145076
Copybara import of the project:
-- 926b309 by release-please[bot] <55107282+release-please[bot]@users.noreply..com>: chore(main): release 1.37.0 -- 5f4e31d by Yvonne Yu <[email protected]>: Update CHANGELOG.md COPYBARA_INTEGRATE_REVIEW=#2985 from googleapis:release-please--branches--main 4fab67c PiperOrigin-RevId: 588176550
feat: update the v1 service definition to add numeric_restricts.
PiperOrigin-RevId: 588189568
Commits on Dec 6, 2023
Commits on Dec 7, 2023
Configuration menu Copy the full SHA View commit details Browse the repository at this point in the history
Commits on Dec 8, 2023
feat: LLM - Added support for the
logprobs
,presence_penalty
, `fr……equency_penalty`, and `logit_bias` generation parameters PiperOrigin-RevId: 589026949
fix: fix exception message to use vertexai when project is not provided.
PiperOrigin-RevId: 589189534
Configuration menu Copy the full SHA View commit details Browse the repository at this point in the history
Commits on Dec 9, 2023
feat: support
read_index_datapoints
for private network.PiperOrigin-RevId: 589281257
Copybara import of the project:
-- 4eb7ad9 by Owl Bot <gcf-owl-bot[bot]@users.noreply..com>: feat: add data_stats to Model feat: add data_stats to ExportDataResponse feat: add filter_split to ExportDataConfig feat: add saved_query_id to ExportDataConfig feat: add annotation_schema_uri to ExportDataConfig feat: add export_use to ExportDataConfig docs: update exported_files description in ExportDataResponse PiperOrigin-RevId: 588136649 Source-Link: googleapis/googleapis@57b57f4 Source-Link: googleapis/googleapis-gen@0d91143 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMGQ5MTE0MzdiNzY0MTA4MWRkNzU3N2UxZDYwZjAwZmRlZjhlZjE0MiJ9 -- bb69077 by Owl Bot <gcf-owl-bot[bot]@users.noreply..com>: 🦉 Updates from OwlBot post-processor See https://.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md -- 08f38ab by Owl Bot <gcf-owl-bot[bot]@users.noreply..com>: feat: add Content feat: add data_stats to ExportDataResponse feat: add display_name to DeployedIndex feat: add ExportEndpointOperationMetadata to EndpointService docs: changes name from OUTPUT_ONLY to IDENTIFIER in FeatureGroup feat: add FunctionCall and FunctionResponse feat: add REBOOTING and notebook_runtime_template to PersistentResource feat: add BatchCancelPipelineJobs to PipelineService feat: add StreamGenerateContent and GenerateContentRequest to PredictionService feat: add Tool PiperOrigin-RevId: 589253340 Source-Link: googleapis/googleapis@0ed84b3 Source-Link: googleapis/googleapis-gen@b56eb45 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiYjU2ZWI0NTY5MDllOGUxMjQ5MTRlZGM2MDY0YjE0Zjg4YjFmZDI2MSJ9 -- 6bff60a by Owl Bot <gcf-owl-bot[bot]@users.noreply..com>: feat: add Content feat: add ExportUse and ExportFilterSplit to Dataset feat: add data_stats to ExportDataResponse feat: add display_name to DeployedIndex feat: add DeploymentResourcePool feat: add DeploymentResourcePoolService feat: add shared_resources to DeployedModel docs: changes name from OUTPUT_ONLY to IDENTIFIER in FeatureGroup feat: add DataStats to Model feat: add model and contents to PredictionService feat: add Tool PiperOrigin-RevId: 589254081 Source-Link: googleapis/googleapis@00931e0 Source-Link: googleapis/googleapis-gen@1393818 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMTM5MzgxODA0NTM0YzcyNDhlMjZiMGUyM2M0MThiMmUwNjdiNmJiNiJ9 -- 8273f41 by Owl Bot <gcf-owl-bot[bot]@users.noreply..com>: 🦉 Updates from OwlBot post-processor See https://.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md COPYBARA_INTEGRATE_REVIEW=#3067 from googleapis:owl-bot-copy ece01ed PiperOrigin-RevId: 589301758
Commits on Dec 11, 2023
fix:
read_index_endpoint
private endpoint support.PiperOrigin-RevId: 589880026
feat: Check if dataset exists before creation for Ray on Vertex BigQu…
…ery Write PiperOrigin-RevId: 589905230
Copybara import of the project:
-- 6a9864b by lingyinw <[email protected]>: fix: regenerate pb2 files using grpcio-tools COPYBARA_INTEGRATE_REVIEW=#3080 from lingyinw:main d7c84ac PiperOrigin-RevId: 589927080
feat: GenAI - Vertex GenAI SDK
Added the Vertex GenAI SDK. Features: * Text generation (from text and images) * Chat (stateful chat session) * Function calling * Tuning * Token counting Usage: Imports: ``` from vertexai.preview.generative_models import GenerativeModel, Image, Content, Part, Tool, FunctionDeclaration, GenerationConfig, HarmCategory, HarmBlockThreshold ``` Basic generation: ``` from vertexai.preview.generative_models import GenerativeModel model = GenerativeModel("gemini-pro") model.generate_content("Why is sky blue?") ``` Using image from local file ``` image = Image.load_from_file("image.jpg") vision_model = GenerativeModel("gemini-pro-vision") vision_model.generate_content(image) ``` Using image from GCS ``` vision_model = GenerativeModel("gemini-pro-vision") vision_model.generate_content(generative_models.Part.from_uri("gs://download.tensorflow.org/example_images/320px-Felis_catus-cat_on_snow.jpg", mime_type="image/jpeg")) ``` Using text and image: ``` vision_model.generate_content(["What is shown in this image?", image]) ``` Using video ``` vision_model.generate_content([ "What is in the video? ", Part.from_uri("gs://cloud-samples-data/video/animals.mp4", mime_type="video/mp4"), ]) ``` Chat: ``` vision_model = GenerativeModel("gemini-ultra-vision") vision_chat = vision_model.start_chat() print(vision_chat.send_message(["I like this image.", image])) print(vision_chat.send_message("What things do I like?.")) ``` PiperOrigin-RevId: 589962731
Commits on Dec 12, 2023
chore(main): release 1.38.0 (#3066)
* chore(main): release 1.38.0 * Update CHANGELOG.md --------- Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply..com> Co-authored-by: sasha-gitg <[email protected]>
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.37.0...v1.38.0
Uh oh!
There was an error while loading. Please reload this page.