google-apis-firebaseml_v2beta 0.29.0 → 0.31.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: b497e1d6b09a09fb8c2d9ee6db0a2433b8647d2eef4f75f77395dee2cbfc0ef3
|
4
|
+
data.tar.gz: 20ea37c59e7c36194f4f48ccbfa880a8a20f81ea4fb5d0a776c166118bee4c0a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b0466284ebbd853771d79f438ebaf2259ebacab33dee7143ed5569c36ac502f594a71c2ec81ec9070fff3211e732a8a8c2db254455088c705841f22186c01cba
|
7
|
+
data.tar.gz: 0c066df9f58ffcd68f63021a70214ce5200c16591b1f2ad76e5536dbd302a4f0052ff4b2f265196cc78712ecb8c1c5914cca471725789d7bfd21e90d1dc49df7
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-firebaseml_v2beta
|
2
2
|
|
3
|
+
### v0.31.0 (2025-09-14)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250909
|
6
|
+
|
7
|
+
### v0.30.0 (2025-09-07)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250903
|
10
|
+
|
3
11
|
### v0.29.0 (2025-08-17)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250812
|
@@ -877,7 +877,7 @@ module Google
|
|
877
877
|
# @return [String]
|
878
878
|
attr_accessor :id
|
879
879
|
|
880
|
-
#
|
880
|
+
# Optional. The name of the function to call. Matches [FunctionDeclaration.name].
|
881
881
|
# Corresponds to the JSON property `name`
|
882
882
|
# @return [String]
|
883
883
|
attr_accessor :name
|
@@ -1130,7 +1130,9 @@ module Google
|
|
1130
1130
|
# @return [String]
|
1131
1131
|
attr_accessor :model_version
|
1132
1132
|
|
1133
|
-
# Content filter results for a prompt sent in the request.
|
1133
|
+
# Content filter results for a prompt sent in the request. Note: This is sent
|
1134
|
+
# only in the first stream chunk and only if no candidates were generated due to
|
1135
|
+
# content violations.
|
1134
1136
|
# Corresponds to the JSON property `promptFeedback`
|
1135
1137
|
# @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GenerateContentResponsePromptFeedback]
|
1136
1138
|
attr_accessor :prompt_feedback
|
@@ -1141,7 +1143,8 @@ module Google
|
|
1141
1143
|
# @return [String]
|
1142
1144
|
attr_accessor :response_id
|
1143
1145
|
|
1144
|
-
# Usage metadata about response
|
1146
|
+
# Usage metadata about the content generation request and response. This message
|
1147
|
+
# provides a detailed breakdown of token usage and other relevant metrics.
|
1145
1148
|
# Corresponds to the JSON property `usageMetadata`
|
1146
1149
|
# @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GenerateContentResponseUsageMetadata]
|
1147
1150
|
attr_accessor :usage_metadata
|
@@ -1161,21 +1164,25 @@ module Google
|
|
1161
1164
|
end
|
1162
1165
|
end
|
1163
1166
|
|
1164
|
-
# Content filter results for a prompt sent in the request.
|
1167
|
+
# Content filter results for a prompt sent in the request. Note: This is sent
|
1168
|
+
# only in the first stream chunk and only if no candidates were generated due to
|
1169
|
+
# content violations.
|
1165
1170
|
class GoogleCloudAiplatformV1beta1GenerateContentResponsePromptFeedback
|
1166
1171
|
include Google::Apis::Core::Hashable
|
1167
1172
|
|
1168
|
-
# Output only.
|
1173
|
+
# Output only. The reason why the prompt was blocked.
|
1169
1174
|
# Corresponds to the JSON property `blockReason`
|
1170
1175
|
# @return [String]
|
1171
1176
|
attr_accessor :block_reason
|
1172
1177
|
|
1173
|
-
# Output only. A readable
|
1178
|
+
# Output only. A readable message that explains the reason why the prompt was
|
1179
|
+
# blocked.
|
1174
1180
|
# Corresponds to the JSON property `blockReasonMessage`
|
1175
1181
|
# @return [String]
|
1176
1182
|
attr_accessor :block_reason_message
|
1177
1183
|
|
1178
|
-
# Output only.
|
1184
|
+
# Output only. A list of safety ratings for the prompt. There is one rating per
|
1185
|
+
# category.
|
1179
1186
|
# Corresponds to the JSON property `safetyRatings`
|
1180
1187
|
# @return [Array<Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1SafetyRating>]
|
1181
1188
|
attr_accessor :safety_ratings
|
@@ -1192,67 +1199,73 @@ module Google
|
|
1192
1199
|
end
|
1193
1200
|
end
|
1194
1201
|
|
1195
|
-
# Usage metadata about response
|
1202
|
+
# Usage metadata about the content generation request and response. This message
|
1203
|
+
# provides a detailed breakdown of token usage and other relevant metrics.
|
1196
1204
|
class GoogleCloudAiplatformV1beta1GenerateContentResponseUsageMetadata
|
1197
1205
|
include Google::Apis::Core::Hashable
|
1198
1206
|
|
1199
|
-
# Output only.
|
1207
|
+
# Output only. A detailed breakdown of the token count for each modality in the
|
1208
|
+
# cached content.
|
1200
1209
|
# Corresponds to the JSON property `cacheTokensDetails`
|
1201
1210
|
# @return [Array<Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ModalityTokenCount>]
|
1202
1211
|
attr_accessor :cache_tokens_details
|
1203
1212
|
|
1204
|
-
# Output only.
|
1205
|
-
#
|
1213
|
+
# Output only. The number of tokens in the cached content that was used for this
|
1214
|
+
# request.
|
1206
1215
|
# Corresponds to the JSON property `cachedContentTokenCount`
|
1207
1216
|
# @return [Fixnum]
|
1208
1217
|
attr_accessor :cached_content_token_count
|
1209
1218
|
|
1210
|
-
#
|
1219
|
+
# The total number of tokens in the generated candidates.
|
1211
1220
|
# Corresponds to the JSON property `candidatesTokenCount`
|
1212
1221
|
# @return [Fixnum]
|
1213
1222
|
attr_accessor :candidates_token_count
|
1214
1223
|
|
1215
|
-
# Output only.
|
1224
|
+
# Output only. A detailed breakdown of the token count for each modality in the
|
1225
|
+
# generated candidates.
|
1216
1226
|
# Corresponds to the JSON property `candidatesTokensDetails`
|
1217
1227
|
# @return [Array<Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ModalityTokenCount>]
|
1218
1228
|
attr_accessor :candidates_tokens_details
|
1219
1229
|
|
1220
|
-
#
|
1221
|
-
#
|
1222
|
-
# the cached content.
|
1230
|
+
# The total number of tokens in the prompt. This includes any text, images, or
|
1231
|
+
# other media provided in the request. When `cached_content` is set, this also
|
1232
|
+
# includes the number of tokens in the cached content.
|
1223
1233
|
# Corresponds to the JSON property `promptTokenCount`
|
1224
1234
|
# @return [Fixnum]
|
1225
1235
|
attr_accessor :prompt_token_count
|
1226
1236
|
|
1227
|
-
# Output only.
|
1237
|
+
# Output only. A detailed breakdown of the token count for each modality in the
|
1238
|
+
# prompt.
|
1228
1239
|
# Corresponds to the JSON property `promptTokensDetails`
|
1229
1240
|
# @return [Array<Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ModalityTokenCount>]
|
1230
1241
|
attr_accessor :prompt_tokens_details
|
1231
1242
|
|
1232
|
-
# Output only.
|
1243
|
+
# Output only. The number of tokens that were part of the model's generated "
|
1244
|
+
# thoughts" output, if applicable.
|
1233
1245
|
# Corresponds to the JSON property `thoughtsTokenCount`
|
1234
1246
|
# @return [Fixnum]
|
1235
1247
|
attr_accessor :thoughts_token_count
|
1236
1248
|
|
1237
|
-
# Output only.
|
1249
|
+
# Output only. The number of tokens in the results from tool executions, which
|
1250
|
+
# are provided back to the model as input, if applicable.
|
1238
1251
|
# Corresponds to the JSON property `toolUsePromptTokenCount`
|
1239
1252
|
# @return [Fixnum]
|
1240
1253
|
attr_accessor :tool_use_prompt_token_count
|
1241
1254
|
|
1242
|
-
# Output only.
|
1243
|
-
#
|
1255
|
+
# Output only. A detailed breakdown by modality of the token counts from the
|
1256
|
+
# results of tool executions, which are provided back to the model as input.
|
1244
1257
|
# Corresponds to the JSON property `toolUsePromptTokensDetails`
|
1245
1258
|
# @return [Array<Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1ModalityTokenCount>]
|
1246
1259
|
attr_accessor :tool_use_prompt_tokens_details
|
1247
1260
|
|
1248
|
-
#
|
1249
|
-
#
|
1261
|
+
# The total number of tokens for the entire request. This is the sum of `
|
1262
|
+
# prompt_token_count`, `candidates_token_count`, `tool_use_prompt_token_count`,
|
1263
|
+
# and `thoughts_token_count`.
|
1250
1264
|
# Corresponds to the JSON property `totalTokenCount`
|
1251
1265
|
# @return [Fixnum]
|
1252
1266
|
attr_accessor :total_token_count
|
1253
1267
|
|
1254
|
-
# Output only.
|
1255
|
-
# or Provisioned Throughput quota.
|
1268
|
+
# Output only. The traffic type for this request.
|
1256
1269
|
# Corresponds to the JSON property `trafficType`
|
1257
1270
|
# @return [String]
|
1258
1271
|
attr_accessor :traffic_type
|
@@ -1562,12 +1575,19 @@ module Google
|
|
1562
1575
|
class GoogleCloudAiplatformV1beta1GoogleMaps
|
1563
1576
|
include Google::Apis::Core::Hashable
|
1564
1577
|
|
1578
|
+
# Optional. If true, include the widget context token in the response.
|
1579
|
+
# Corresponds to the JSON property `enableWidget`
|
1580
|
+
# @return [Boolean]
|
1581
|
+
attr_accessor :enable_widget
|
1582
|
+
alias_method :enable_widget?, :enable_widget
|
1583
|
+
|
1565
1584
|
def initialize(**args)
|
1566
1585
|
update!(**args)
|
1567
1586
|
end
|
1568
1587
|
|
1569
1588
|
# Update properties of this object
|
1570
1589
|
def update!(**args)
|
1590
|
+
@enable_widget = args[:enable_widget] if args.key?(:enable_widget)
|
1571
1591
|
end
|
1572
1592
|
end
|
1573
1593
|
|
@@ -1636,17 +1656,17 @@ module Google
|
|
1636
1656
|
# @return [String]
|
1637
1657
|
attr_accessor :place_id
|
1638
1658
|
|
1639
|
-
# Text of the
|
1659
|
+
# Text of the place answer.
|
1640
1660
|
# Corresponds to the JSON property `text`
|
1641
1661
|
# @return [String]
|
1642
1662
|
attr_accessor :text
|
1643
1663
|
|
1644
|
-
# Title of the
|
1664
|
+
# Title of the place.
|
1645
1665
|
# Corresponds to the JSON property `title`
|
1646
1666
|
# @return [String]
|
1647
1667
|
attr_accessor :title
|
1648
1668
|
|
1649
|
-
# URI reference of the
|
1669
|
+
# URI reference of the place.
|
1650
1670
|
# Corresponds to the JSON property `uri`
|
1651
1671
|
# @return [String]
|
1652
1672
|
attr_accessor :uri
|
@@ -1669,11 +1689,6 @@ module Google
|
|
1669
1689
|
class GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSources
|
1670
1690
|
include Google::Apis::Core::Hashable
|
1671
1691
|
|
1672
|
-
# A link where users can flag a problem with the generated answer.
|
1673
|
-
# Corresponds to the JSON property `flagContentUri`
|
1674
|
-
# @return [String]
|
1675
|
-
attr_accessor :flag_content_uri
|
1676
|
-
|
1677
1692
|
# Snippets of reviews that are used to generate the answer.
|
1678
1693
|
# Corresponds to the JSON property `reviewSnippets`
|
1679
1694
|
# @return [Array<Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet>]
|
@@ -1685,72 +1700,28 @@ module Google
|
|
1685
1700
|
|
1686
1701
|
# Update properties of this object
|
1687
1702
|
def update!(**args)
|
1688
|
-
@flag_content_uri = args[:flag_content_uri] if args.key?(:flag_content_uri)
|
1689
1703
|
@review_snippets = args[:review_snippets] if args.key?(:review_snippets)
|
1690
1704
|
end
|
1691
1705
|
end
|
1692
1706
|
|
1693
|
-
# Author attribution for a photo or review.
|
1694
|
-
class GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution
|
1695
|
-
include Google::Apis::Core::Hashable
|
1696
|
-
|
1697
|
-
# Name of the author of the Photo or Review.
|
1698
|
-
# Corresponds to the JSON property `displayName`
|
1699
|
-
# @return [String]
|
1700
|
-
attr_accessor :display_name
|
1701
|
-
|
1702
|
-
# Profile photo URI of the author of the Photo or Review.
|
1703
|
-
# Corresponds to the JSON property `photoUri`
|
1704
|
-
# @return [String]
|
1705
|
-
attr_accessor :photo_uri
|
1706
|
-
|
1707
|
-
# URI of the author of the Photo or Review.
|
1708
|
-
# Corresponds to the JSON property `uri`
|
1709
|
-
# @return [String]
|
1710
|
-
attr_accessor :uri
|
1711
|
-
|
1712
|
-
def initialize(**args)
|
1713
|
-
update!(**args)
|
1714
|
-
end
|
1715
|
-
|
1716
|
-
# Update properties of this object
|
1717
|
-
def update!(**args)
|
1718
|
-
@display_name = args[:display_name] if args.key?(:display_name)
|
1719
|
-
@photo_uri = args[:photo_uri] if args.key?(:photo_uri)
|
1720
|
-
@uri = args[:uri] if args.key?(:uri)
|
1721
|
-
end
|
1722
|
-
end
|
1723
|
-
|
1724
1707
|
# Encapsulates a review snippet.
|
1725
1708
|
class GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet
|
1726
1709
|
include Google::Apis::Core::Hashable
|
1727
1710
|
|
1728
|
-
# Author attribution for a photo or review.
|
1729
|
-
# Corresponds to the JSON property `authorAttribution`
|
1730
|
-
# @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution]
|
1731
|
-
attr_accessor :author_attribution
|
1732
|
-
|
1733
|
-
# A link where users can flag a problem with the review.
|
1734
|
-
# Corresponds to the JSON property `flagContentUri`
|
1735
|
-
# @return [String]
|
1736
|
-
attr_accessor :flag_content_uri
|
1737
|
-
|
1738
1711
|
# A link to show the review on Google Maps.
|
1739
1712
|
# Corresponds to the JSON property `googleMapsUri`
|
1740
1713
|
# @return [String]
|
1741
1714
|
attr_accessor :google_maps_uri
|
1742
1715
|
|
1743
|
-
#
|
1744
|
-
#
|
1745
|
-
# Corresponds to the JSON property `relativePublishTimeDescription`
|
1716
|
+
# Id of the review referencing the place.
|
1717
|
+
# Corresponds to the JSON property `reviewId`
|
1746
1718
|
# @return [String]
|
1747
|
-
attr_accessor :
|
1719
|
+
attr_accessor :review_id
|
1748
1720
|
|
1749
|
-
#
|
1750
|
-
#
|
1751
|
-
# Corresponds to the JSON property `review`
|
1721
|
+
# Title of the review.
|
1722
|
+
# Corresponds to the JSON property `title`
|
1752
1723
|
# @return [String]
|
1753
|
-
attr_accessor :
|
1724
|
+
attr_accessor :title
|
1754
1725
|
|
1755
1726
|
def initialize(**args)
|
1756
1727
|
update!(**args)
|
@@ -1758,11 +1729,9 @@ module Google
|
|
1758
1729
|
|
1759
1730
|
# Update properties of this object
|
1760
1731
|
def update!(**args)
|
1761
|
-
@author_attribution = args[:author_attribution] if args.key?(:author_attribution)
|
1762
|
-
@flag_content_uri = args[:flag_content_uri] if args.key?(:flag_content_uri)
|
1763
1732
|
@google_maps_uri = args[:google_maps_uri] if args.key?(:google_maps_uri)
|
1764
|
-
@
|
1765
|
-
@
|
1733
|
+
@review_id = args[:review_id] if args.key?(:review_id)
|
1734
|
+
@title = args[:title] if args.key?(:title)
|
1766
1735
|
end
|
1767
1736
|
end
|
1768
1737
|
|
@@ -1878,6 +1847,12 @@ module Google
|
|
1878
1847
|
# @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1SearchEntryPoint]
|
1879
1848
|
attr_accessor :search_entry_point
|
1880
1849
|
|
1850
|
+
# Optional. Output only. List of source flagging uris. This is currently
|
1851
|
+
# populated only for Google Maps grounding.
|
1852
|
+
# Corresponds to the JSON property `sourceFlaggingUris`
|
1853
|
+
# @return [Array<Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingMetadataSourceFlaggingUri>]
|
1854
|
+
attr_accessor :source_flagging_uris
|
1855
|
+
|
1881
1856
|
# Optional. Web search queries for the following-up web search.
|
1882
1857
|
# Corresponds to the JSON property `webSearchQueries`
|
1883
1858
|
# @return [Array<String>]
|
@@ -1895,10 +1870,37 @@ module Google
|
|
1895
1870
|
@retrieval_metadata = args[:retrieval_metadata] if args.key?(:retrieval_metadata)
|
1896
1871
|
@retrieval_queries = args[:retrieval_queries] if args.key?(:retrieval_queries)
|
1897
1872
|
@search_entry_point = args[:search_entry_point] if args.key?(:search_entry_point)
|
1873
|
+
@source_flagging_uris = args[:source_flagging_uris] if args.key?(:source_flagging_uris)
|
1898
1874
|
@web_search_queries = args[:web_search_queries] if args.key?(:web_search_queries)
|
1899
1875
|
end
|
1900
1876
|
end
|
1901
1877
|
|
1878
|
+
# Source content flagging uri for a place or review. This is currently populated
|
1879
|
+
# only for Google Maps grounding.
|
1880
|
+
class GoogleCloudAiplatformV1beta1GroundingMetadataSourceFlaggingUri
|
1881
|
+
include Google::Apis::Core::Hashable
|
1882
|
+
|
1883
|
+
# A link where users can flag a problem with the source (place or review).
|
1884
|
+
# Corresponds to the JSON property `flagContentUri`
|
1885
|
+
# @return [String]
|
1886
|
+
attr_accessor :flag_content_uri
|
1887
|
+
|
1888
|
+
# Id of the place or review.
|
1889
|
+
# Corresponds to the JSON property `sourceId`
|
1890
|
+
# @return [String]
|
1891
|
+
attr_accessor :source_id
|
1892
|
+
|
1893
|
+
def initialize(**args)
|
1894
|
+
update!(**args)
|
1895
|
+
end
|
1896
|
+
|
1897
|
+
# Update properties of this object
|
1898
|
+
def update!(**args)
|
1899
|
+
@flag_content_uri = args[:flag_content_uri] if args.key?(:flag_content_uri)
|
1900
|
+
@source_id = args[:source_id] if args.key?(:source_id)
|
1901
|
+
end
|
1902
|
+
end
|
1903
|
+
|
1902
1904
|
# Grounding support.
|
1903
1905
|
class GoogleCloudAiplatformV1beta1GroundingSupport
|
1904
1906
|
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.31.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 = "20250909"
|
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,6 +973,7 @@ module Google
|
|
973
973
|
class GoogleCloudAiplatformV1beta1GoogleMaps
|
974
974
|
# @private
|
975
975
|
class Representation < Google::Apis::Core::JsonRepresentation
|
976
|
+
property :enable_widget, as: 'enableWidget'
|
976
977
|
end
|
977
978
|
end
|
978
979
|
|
@@ -1011,30 +1012,17 @@ module Google
|
|
1011
1012
|
class GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSources
|
1012
1013
|
# @private
|
1013
1014
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1014
|
-
property :flag_content_uri, as: 'flagContentUri'
|
1015
1015
|
collection :review_snippets, as: 'reviewSnippets', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet::Representation
|
1016
1016
|
|
1017
1017
|
end
|
1018
1018
|
end
|
1019
1019
|
|
1020
|
-
class GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution
|
1021
|
-
# @private
|
1022
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1023
|
-
property :display_name, as: 'displayName'
|
1024
|
-
property :photo_uri, as: 'photoUri'
|
1025
|
-
property :uri, as: 'uri'
|
1026
|
-
end
|
1027
|
-
end
|
1028
|
-
|
1029
1020
|
class GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet
|
1030
1021
|
# @private
|
1031
1022
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1032
|
-
property :author_attribution, as: 'authorAttribution', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution::Representation
|
1033
|
-
|
1034
|
-
property :flag_content_uri, as: 'flagContentUri'
|
1035
1023
|
property :google_maps_uri, as: 'googleMapsUri'
|
1036
|
-
property :
|
1037
|
-
property :
|
1024
|
+
property :review_id, as: 'reviewId'
|
1025
|
+
property :title, as: 'title'
|
1038
1026
|
end
|
1039
1027
|
end
|
1040
1028
|
|
@@ -1072,10 +1060,20 @@ module Google
|
|
1072
1060
|
collection :retrieval_queries, as: 'retrievalQueries'
|
1073
1061
|
property :search_entry_point, as: 'searchEntryPoint', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1SearchEntryPoint, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1SearchEntryPoint::Representation
|
1074
1062
|
|
1063
|
+
collection :source_flagging_uris, as: 'sourceFlaggingUris', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingMetadataSourceFlaggingUri, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1GroundingMetadataSourceFlaggingUri::Representation
|
1064
|
+
|
1075
1065
|
collection :web_search_queries, as: 'webSearchQueries'
|
1076
1066
|
end
|
1077
1067
|
end
|
1078
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
|
+
|
1079
1077
|
class GoogleCloudAiplatformV1beta1GroundingSupport
|
1080
1078
|
# @private
|
1081
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.31.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.31.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:
|