google-apis-firebaseml_v2beta 0.28.0 → 0.30.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 105e5a4b62a1ea350a9bb288f96d692e880b2d04270beafbd22261d24b5b7b2d
|
4
|
+
data.tar.gz: c62a899632c5c886d100dce3d2b494770ccf74839c20413a8f00283e11cd15f6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 84b2c03b769a6d7d0ff70499636e1f80833a0e1cddc66c2f083af4ded6bc679e1642c93205cf6fdb633a00f183488477942edbcfbf3a20498a5e5a4b47f870e7
|
7
|
+
data.tar.gz: 408ae3892b3a64e8431dbf1e544f88d82b4509960816603975fbf7d57efb4b12342054bed2cf49fc5583743524354ca43d65030117213336a17e1fe01ee008a6
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-firebaseml_v2beta
|
2
2
|
|
3
|
+
### v0.30.0 (2025-09-07)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250903
|
6
|
+
|
7
|
+
### v0.29.0 (2025-08-17)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250812
|
10
|
+
|
3
11
|
### v0.28.0 (2025-08-10)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250731
|
@@ -1141,7 +1141,8 @@ module Google
|
|
1141
1141
|
# @return [String]
|
1142
1142
|
attr_accessor :response_id
|
1143
1143
|
|
1144
|
-
# Usage metadata about response
|
1144
|
+
# Usage metadata about the content generation request and response. This message
|
1145
|
+
# provides a detailed breakdown of token usage and other relevant metrics.
|
1145
1146
|
# Corresponds to the JSON property `usageMetadata`
|
1146
1147
|
# @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GenerateContentResponseUsageMetadata]
|
1147
1148
|
attr_accessor :usage_metadata
|
@@ -1192,67 +1193,73 @@ module Google
|
|
1192
1193
|
end
|
1193
1194
|
end
|
1194
1195
|
|
1195
|
-
# Usage metadata about response
|
1196
|
+
# Usage metadata about the content generation request and response. This message
|
1197
|
+
# provides a detailed breakdown of token usage and other relevant metrics.
|
1196
1198
|
class GoogleCloudAiplatformV1beta1GenerateContentResponseUsageMetadata
|
1197
1199
|
include Google::Apis::Core::Hashable
|
1198
1200
|
|
1199
|
-
# Output only.
|
1201
|
+
# Output only. A detailed breakdown of the token count for each modality in the
|
1202
|
+
# cached content.
|
1200
1203
|
# Corresponds to the JSON property `cacheTokensDetails`
|
1201
1204
|
# @return [Array<Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ModalityTokenCount>]
|
1202
1205
|
attr_accessor :cache_tokens_details
|
1203
1206
|
|
1204
|
-
# Output only.
|
1205
|
-
#
|
1207
|
+
# Output only. The number of tokens in the cached content that was used for this
|
1208
|
+
# request.
|
1206
1209
|
# Corresponds to the JSON property `cachedContentTokenCount`
|
1207
1210
|
# @return [Fixnum]
|
1208
1211
|
attr_accessor :cached_content_token_count
|
1209
1212
|
|
1210
|
-
#
|
1213
|
+
# The total number of tokens in the generated candidates.
|
1211
1214
|
# Corresponds to the JSON property `candidatesTokenCount`
|
1212
1215
|
# @return [Fixnum]
|
1213
1216
|
attr_accessor :candidates_token_count
|
1214
1217
|
|
1215
|
-
# Output only.
|
1218
|
+
# Output only. A detailed breakdown of the token count for each modality in the
|
1219
|
+
# generated candidates.
|
1216
1220
|
# Corresponds to the JSON property `candidatesTokensDetails`
|
1217
1221
|
# @return [Array<Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ModalityTokenCount>]
|
1218
1222
|
attr_accessor :candidates_tokens_details
|
1219
1223
|
|
1220
|
-
#
|
1221
|
-
#
|
1222
|
-
# the cached content.
|
1224
|
+
# The total number of tokens in the prompt. This includes any text, images, or
|
1225
|
+
# other media provided in the request. When `cached_content` is set, this also
|
1226
|
+
# includes the number of tokens in the cached content.
|
1223
1227
|
# Corresponds to the JSON property `promptTokenCount`
|
1224
1228
|
# @return [Fixnum]
|
1225
1229
|
attr_accessor :prompt_token_count
|
1226
1230
|
|
1227
|
-
# Output only.
|
1231
|
+
# Output only. A detailed breakdown of the token count for each modality in the
|
1232
|
+
# prompt.
|
1228
1233
|
# Corresponds to the JSON property `promptTokensDetails`
|
1229
1234
|
# @return [Array<Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ModalityTokenCount>]
|
1230
1235
|
attr_accessor :prompt_tokens_details
|
1231
1236
|
|
1232
|
-
# Output only.
|
1237
|
+
# Output only. The number of tokens that were part of the model's generated "
|
1238
|
+
# thoughts" output, if applicable.
|
1233
1239
|
# Corresponds to the JSON property `thoughtsTokenCount`
|
1234
1240
|
# @return [Fixnum]
|
1235
1241
|
attr_accessor :thoughts_token_count
|
1236
1242
|
|
1237
|
-
# Output only.
|
1243
|
+
# Output only. The number of tokens in the results from tool executions, which
|
1244
|
+
# are provided back to the model as input, if applicable.
|
1238
1245
|
# Corresponds to the JSON property `toolUsePromptTokenCount`
|
1239
1246
|
# @return [Fixnum]
|
1240
1247
|
attr_accessor :tool_use_prompt_token_count
|
1241
1248
|
|
1242
|
-
# Output only.
|
1243
|
-
#
|
1249
|
+
# Output only. A detailed breakdown by modality of the token counts from the
|
1250
|
+
# results of tool executions, which are provided back to the model as input.
|
1244
1251
|
# Corresponds to the JSON property `toolUsePromptTokensDetails`
|
1245
1252
|
# @return [Array<Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ModalityTokenCount>]
|
1246
1253
|
attr_accessor :tool_use_prompt_tokens_details
|
1247
1254
|
|
1248
|
-
#
|
1249
|
-
#
|
1255
|
+
# The total number of tokens for the entire request. This is the sum of `
|
1256
|
+
# prompt_token_count`, `candidates_token_count`, `tool_use_prompt_token_count`,
|
1257
|
+
# and `thoughts_token_count`.
|
1250
1258
|
# Corresponds to the JSON property `totalTokenCount`
|
1251
1259
|
# @return [Fixnum]
|
1252
1260
|
attr_accessor :total_token_count
|
1253
1261
|
|
1254
|
-
# Output only.
|
1255
|
-
# or Provisioned Throughput quota.
|
1262
|
+
# Output only. The traffic type for this request.
|
1256
1263
|
# Corresponds to the JSON property `trafficType`
|
1257
1264
|
# @return [String]
|
1258
1265
|
attr_accessor :traffic_type
|
@@ -1562,16 +1569,11 @@ module Google
|
|
1562
1569
|
class GoogleCloudAiplatformV1beta1GoogleMaps
|
1563
1570
|
include Google::Apis::Core::Hashable
|
1564
1571
|
|
1565
|
-
#
|
1566
|
-
#
|
1567
|
-
#
|
1568
|
-
|
1569
|
-
|
1570
|
-
|
1571
|
-
# Auth configuration to run the extension.
|
1572
|
-
# Corresponds to the JSON property `authConfig`
|
1573
|
-
# @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1AuthConfig]
|
1574
|
-
attr_accessor :auth_config
|
1572
|
+
# Optional. If true, include the widget context token in the response.
|
1573
|
+
# Corresponds to the JSON property `enableWidget`
|
1574
|
+
# @return [Boolean]
|
1575
|
+
attr_accessor :enable_widget
|
1576
|
+
alias_method :enable_widget?, :enable_widget
|
1575
1577
|
|
1576
1578
|
def initialize(**args)
|
1577
1579
|
update!(**args)
|
@@ -1579,8 +1581,7 @@ module Google
|
|
1579
1581
|
|
1580
1582
|
# Update properties of this object
|
1581
1583
|
def update!(**args)
|
1582
|
-
@
|
1583
|
-
@auth_config = args[:auth_config] if args.key?(:auth_config)
|
1584
|
+
@enable_widget = args[:enable_widget] if args.key?(:enable_widget)
|
1584
1585
|
end
|
1585
1586
|
end
|
1586
1587
|
|
@@ -1649,17 +1650,17 @@ module Google
|
|
1649
1650
|
# @return [String]
|
1650
1651
|
attr_accessor :place_id
|
1651
1652
|
|
1652
|
-
# Text of the
|
1653
|
+
# Text of the place answer.
|
1653
1654
|
# Corresponds to the JSON property `text`
|
1654
1655
|
# @return [String]
|
1655
1656
|
attr_accessor :text
|
1656
1657
|
|
1657
|
-
# Title of the
|
1658
|
+
# Title of the place.
|
1658
1659
|
# Corresponds to the JSON property `title`
|
1659
1660
|
# @return [String]
|
1660
1661
|
attr_accessor :title
|
1661
1662
|
|
1662
|
-
# URI reference of the
|
1663
|
+
# URI reference of the place.
|
1663
1664
|
# Corresponds to the JSON property `uri`
|
1664
1665
|
# @return [String]
|
1665
1666
|
attr_accessor :uri
|
@@ -1682,11 +1683,6 @@ module Google
|
|
1682
1683
|
class GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSources
|
1683
1684
|
include Google::Apis::Core::Hashable
|
1684
1685
|
|
1685
|
-
# A link where users can flag a problem with the generated answer.
|
1686
|
-
# Corresponds to the JSON property `flagContentUri`
|
1687
|
-
# @return [String]
|
1688
|
-
attr_accessor :flag_content_uri
|
1689
|
-
|
1690
1686
|
# Snippets of reviews that are used to generate the answer.
|
1691
1687
|
# Corresponds to the JSON property `reviewSnippets`
|
1692
1688
|
# @return [Array<Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet>]
|
@@ -1698,72 +1694,28 @@ module Google
|
|
1698
1694
|
|
1699
1695
|
# Update properties of this object
|
1700
1696
|
def update!(**args)
|
1701
|
-
@flag_content_uri = args[:flag_content_uri] if args.key?(:flag_content_uri)
|
1702
1697
|
@review_snippets = args[:review_snippets] if args.key?(:review_snippets)
|
1703
1698
|
end
|
1704
1699
|
end
|
1705
1700
|
|
1706
|
-
# Author attribution for a photo or review.
|
1707
|
-
class GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution
|
1708
|
-
include Google::Apis::Core::Hashable
|
1709
|
-
|
1710
|
-
# Name of the author of the Photo or Review.
|
1711
|
-
# Corresponds to the JSON property `displayName`
|
1712
|
-
# @return [String]
|
1713
|
-
attr_accessor :display_name
|
1714
|
-
|
1715
|
-
# Profile photo URI of the author of the Photo or Review.
|
1716
|
-
# Corresponds to the JSON property `photoUri`
|
1717
|
-
# @return [String]
|
1718
|
-
attr_accessor :photo_uri
|
1719
|
-
|
1720
|
-
# URI of the author of the Photo or Review.
|
1721
|
-
# Corresponds to the JSON property `uri`
|
1722
|
-
# @return [String]
|
1723
|
-
attr_accessor :uri
|
1724
|
-
|
1725
|
-
def initialize(**args)
|
1726
|
-
update!(**args)
|
1727
|
-
end
|
1728
|
-
|
1729
|
-
# Update properties of this object
|
1730
|
-
def update!(**args)
|
1731
|
-
@display_name = args[:display_name] if args.key?(:display_name)
|
1732
|
-
@photo_uri = args[:photo_uri] if args.key?(:photo_uri)
|
1733
|
-
@uri = args[:uri] if args.key?(:uri)
|
1734
|
-
end
|
1735
|
-
end
|
1736
|
-
|
1737
1701
|
# Encapsulates a review snippet.
|
1738
1702
|
class GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet
|
1739
1703
|
include Google::Apis::Core::Hashable
|
1740
1704
|
|
1741
|
-
# Author attribution for a photo or review.
|
1742
|
-
# Corresponds to the JSON property `authorAttribution`
|
1743
|
-
# @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution]
|
1744
|
-
attr_accessor :author_attribution
|
1745
|
-
|
1746
|
-
# A link where users can flag a problem with the review.
|
1747
|
-
# Corresponds to the JSON property `flagContentUri`
|
1748
|
-
# @return [String]
|
1749
|
-
attr_accessor :flag_content_uri
|
1750
|
-
|
1751
1705
|
# A link to show the review on Google Maps.
|
1752
1706
|
# Corresponds to the JSON property `googleMapsUri`
|
1753
1707
|
# @return [String]
|
1754
1708
|
attr_accessor :google_maps_uri
|
1755
1709
|
|
1756
|
-
#
|
1757
|
-
#
|
1758
|
-
# Corresponds to the JSON property `relativePublishTimeDescription`
|
1710
|
+
# Id of the review referencing the place.
|
1711
|
+
# Corresponds to the JSON property `reviewId`
|
1759
1712
|
# @return [String]
|
1760
|
-
attr_accessor :
|
1713
|
+
attr_accessor :review_id
|
1761
1714
|
|
1762
|
-
#
|
1763
|
-
#
|
1764
|
-
# Corresponds to the JSON property `review`
|
1715
|
+
# Title of the review.
|
1716
|
+
# Corresponds to the JSON property `title`
|
1765
1717
|
# @return [String]
|
1766
|
-
attr_accessor :
|
1718
|
+
attr_accessor :title
|
1767
1719
|
|
1768
1720
|
def initialize(**args)
|
1769
1721
|
update!(**args)
|
@@ -1771,11 +1723,9 @@ module Google
|
|
1771
1723
|
|
1772
1724
|
# Update properties of this object
|
1773
1725
|
def update!(**args)
|
1774
|
-
@author_attribution = args[:author_attribution] if args.key?(:author_attribution)
|
1775
|
-
@flag_content_uri = args[:flag_content_uri] if args.key?(:flag_content_uri)
|
1776
1726
|
@google_maps_uri = args[:google_maps_uri] if args.key?(:google_maps_uri)
|
1777
|
-
@
|
1778
|
-
@
|
1727
|
+
@review_id = args[:review_id] if args.key?(:review_id)
|
1728
|
+
@title = args[:title] if args.key?(:title)
|
1779
1729
|
end
|
1780
1730
|
end
|
1781
1731
|
|
@@ -1783,6 +1733,12 @@ module Google
|
|
1783
1733
|
class GoogleCloudAiplatformV1beta1GroundingChunkRetrievedContext
|
1784
1734
|
include Google::Apis::Core::Hashable
|
1785
1735
|
|
1736
|
+
# Output only. The full document name for the referenced Vertex AI Search
|
1737
|
+
# document.
|
1738
|
+
# Corresponds to the JSON property `documentName`
|
1739
|
+
# @return [String]
|
1740
|
+
attr_accessor :document_name
|
1741
|
+
|
1786
1742
|
# A RagChunk includes the content of a chunk of a RagFile, and associated
|
1787
1743
|
# metadata.
|
1788
1744
|
# Corresponds to the JSON property `ragChunk`
|
@@ -1810,6 +1766,7 @@ module Google
|
|
1810
1766
|
|
1811
1767
|
# Update properties of this object
|
1812
1768
|
def update!(**args)
|
1769
|
+
@document_name = args[:document_name] if args.key?(:document_name)
|
1813
1770
|
@rag_chunk = args[:rag_chunk] if args.key?(:rag_chunk)
|
1814
1771
|
@text = args[:text] if args.key?(:text)
|
1815
1772
|
@title = args[:title] if args.key?(:title)
|
@@ -1884,6 +1841,12 @@ module Google
|
|
1884
1841
|
# @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1SearchEntryPoint]
|
1885
1842
|
attr_accessor :search_entry_point
|
1886
1843
|
|
1844
|
+
# Optional. Output only. List of source flagging uris. This is currently
|
1845
|
+
# populated only for Google Maps grounding.
|
1846
|
+
# Corresponds to the JSON property `sourceFlaggingUris`
|
1847
|
+
# @return [Array<Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingMetadataSourceFlaggingUri>]
|
1848
|
+
attr_accessor :source_flagging_uris
|
1849
|
+
|
1887
1850
|
# Optional. Web search queries for the following-up web search.
|
1888
1851
|
# Corresponds to the JSON property `webSearchQueries`
|
1889
1852
|
# @return [Array<String>]
|
@@ -1901,10 +1864,37 @@ module Google
|
|
1901
1864
|
@retrieval_metadata = args[:retrieval_metadata] if args.key?(:retrieval_metadata)
|
1902
1865
|
@retrieval_queries = args[:retrieval_queries] if args.key?(:retrieval_queries)
|
1903
1866
|
@search_entry_point = args[:search_entry_point] if args.key?(:search_entry_point)
|
1867
|
+
@source_flagging_uris = args[:source_flagging_uris] if args.key?(:source_flagging_uris)
|
1904
1868
|
@web_search_queries = args[:web_search_queries] if args.key?(:web_search_queries)
|
1905
1869
|
end
|
1906
1870
|
end
|
1907
1871
|
|
1872
|
+
# Source content flagging uri for a place or review. This is currently populated
|
1873
|
+
# only for Google Maps grounding.
|
1874
|
+
class GoogleCloudAiplatformV1beta1GroundingMetadataSourceFlaggingUri
|
1875
|
+
include Google::Apis::Core::Hashable
|
1876
|
+
|
1877
|
+
# A link where users can flag a problem with the source (place or review).
|
1878
|
+
# Corresponds to the JSON property `flagContentUri`
|
1879
|
+
# @return [String]
|
1880
|
+
attr_accessor :flag_content_uri
|
1881
|
+
|
1882
|
+
# Id of the place or review.
|
1883
|
+
# Corresponds to the JSON property `sourceId`
|
1884
|
+
# @return [String]
|
1885
|
+
attr_accessor :source_id
|
1886
|
+
|
1887
|
+
def initialize(**args)
|
1888
|
+
update!(**args)
|
1889
|
+
end
|
1890
|
+
|
1891
|
+
# Update properties of this object
|
1892
|
+
def update!(**args)
|
1893
|
+
@flag_content_uri = args[:flag_content_uri] if args.key?(:flag_content_uri)
|
1894
|
+
@source_id = args[:source_id] if args.key?(:source_id)
|
1895
|
+
end
|
1896
|
+
end
|
1897
|
+
|
1908
1898
|
# Grounding support.
|
1909
1899
|
class GoogleCloudAiplatformV1beta1GroundingSupport
|
1910
1900
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module FirebasemlV2beta
|
18
18
|
# Version of the google-apis-firebaseml_v2beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.30.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250903"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -280,31 +280,31 @@ module Google
|
|
280
280
|
include Google::Apis::Core::JsonObjectSupport
|
281
281
|
end
|
282
282
|
|
283
|
-
class
|
283
|
+
class GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet
|
284
284
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
285
|
|
286
286
|
include Google::Apis::Core::JsonObjectSupport
|
287
287
|
end
|
288
288
|
|
289
|
-
class
|
289
|
+
class GoogleCloudAiplatformV1beta1GroundingChunkRetrievedContext
|
290
290
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
291
|
|
292
292
|
include Google::Apis::Core::JsonObjectSupport
|
293
293
|
end
|
294
294
|
|
295
|
-
class
|
295
|
+
class GoogleCloudAiplatformV1beta1GroundingChunkWeb
|
296
296
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
297
|
|
298
298
|
include Google::Apis::Core::JsonObjectSupport
|
299
299
|
end
|
300
300
|
|
301
|
-
class
|
301
|
+
class GoogleCloudAiplatformV1beta1GroundingMetadata
|
302
302
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
303
303
|
|
304
304
|
include Google::Apis::Core::JsonObjectSupport
|
305
305
|
end
|
306
306
|
|
307
|
-
class
|
307
|
+
class GoogleCloudAiplatformV1beta1GroundingMetadataSourceFlaggingUri
|
308
308
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
309
309
|
|
310
310
|
include Google::Apis::Core::JsonObjectSupport
|
@@ -973,10 +973,7 @@ module Google
|
|
973
973
|
class GoogleCloudAiplatformV1beta1GoogleMaps
|
974
974
|
# @private
|
975
975
|
class Representation < Google::Apis::Core::JsonRepresentation
|
976
|
-
property :
|
977
|
-
|
978
|
-
property :auth_config, as: 'authConfig', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1AuthConfig, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1AuthConfig::Representation
|
979
|
-
|
976
|
+
property :enable_widget, as: 'enableWidget'
|
980
977
|
end
|
981
978
|
end
|
982
979
|
|
@@ -1015,36 +1012,24 @@ module Google
|
|
1015
1012
|
class GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSources
|
1016
1013
|
# @private
|
1017
1014
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1018
|
-
property :flag_content_uri, as: 'flagContentUri'
|
1019
1015
|
collection :review_snippets, as: 'reviewSnippets', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet::Representation
|
1020
1016
|
|
1021
1017
|
end
|
1022
1018
|
end
|
1023
1019
|
|
1024
|
-
class GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution
|
1025
|
-
# @private
|
1026
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1027
|
-
property :display_name, as: 'displayName'
|
1028
|
-
property :photo_uri, as: 'photoUri'
|
1029
|
-
property :uri, as: 'uri'
|
1030
|
-
end
|
1031
|
-
end
|
1032
|
-
|
1033
1020
|
class GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet
|
1034
1021
|
# @private
|
1035
1022
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1036
|
-
property :author_attribution, as: 'authorAttribution', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution::Representation
|
1037
|
-
|
1038
|
-
property :flag_content_uri, as: 'flagContentUri'
|
1039
1023
|
property :google_maps_uri, as: 'googleMapsUri'
|
1040
|
-
property :
|
1041
|
-
property :
|
1024
|
+
property :review_id, as: 'reviewId'
|
1025
|
+
property :title, as: 'title'
|
1042
1026
|
end
|
1043
1027
|
end
|
1044
1028
|
|
1045
1029
|
class GoogleCloudAiplatformV1beta1GroundingChunkRetrievedContext
|
1046
1030
|
# @private
|
1047
1031
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1032
|
+
property :document_name, as: 'documentName'
|
1048
1033
|
property :rag_chunk, as: 'ragChunk', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1RagChunk, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1RagChunk::Representation
|
1049
1034
|
|
1050
1035
|
property :text, as: 'text'
|
@@ -1075,10 +1060,20 @@ module Google
|
|
1075
1060
|
collection :retrieval_queries, as: 'retrievalQueries'
|
1076
1061
|
property :search_entry_point, as: 'searchEntryPoint', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1SearchEntryPoint, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1SearchEntryPoint::Representation
|
1077
1062
|
|
1063
|
+
collection :source_flagging_uris, as: 'sourceFlaggingUris', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingMetadataSourceFlaggingUri, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingMetadataSourceFlaggingUri::Representation
|
1064
|
+
|
1078
1065
|
collection :web_search_queries, as: 'webSearchQueries'
|
1079
1066
|
end
|
1080
1067
|
end
|
1081
1068
|
|
1069
|
+
class GoogleCloudAiplatformV1beta1GroundingMetadataSourceFlaggingUri
|
1070
|
+
# @private
|
1071
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1072
|
+
property :flag_content_uri, as: 'flagContentUri'
|
1073
|
+
property :source_id, as: 'sourceId'
|
1074
|
+
end
|
1075
|
+
end
|
1076
|
+
|
1082
1077
|
class GoogleCloudAiplatformV1beta1GroundingSupport
|
1083
1078
|
# @private
|
1084
1079
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-firebaseml_v2beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.30.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebaseml_v2beta/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseml_v2beta/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseml_v2beta/v0.30.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebaseml_v2beta
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|