google-apis-discoveryengine_v1 0.41.0 → 0.42.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: a861b647cc66eb13779798a55ed4885b3a312a9dd3a114c2ee2f0dbf844d25f5
|
4
|
+
data.tar.gz: 92297101f649afbe5ce79ecaac1b48d4006ead2a2107b6b8bfb2b5006afd0c7b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8e63003fc3eee5b006fa983d39501620141d89d30d0783d7a043a130f0b2414ad2f5620c6565a58e1d5526d9bbebd96c79ae8a9b9d08abb7e558b33d57633ab3
|
7
|
+
data.tar.gz: d572164b4b8b06babb1227a50204a3b6244e99f14a3ec7a13ed49c6b242b771bcd8bbdf7ec0af9a0ee53a0fc2a959925c7bfaaf6dbd219378ccf513adc02e49f
|
data/CHANGELOG.md
CHANGED
@@ -10767,6 +10767,13 @@ module Google
|
|
10767
10767
|
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Query]
|
10768
10768
|
attr_accessor :query
|
10769
10769
|
|
10770
|
+
# Optional. Represents metadata related to the query config, for example LLM
|
10771
|
+
# model and version used, model parameters (temperature, grounding parameters,
|
10772
|
+
# etc.). The prefix "google." is reserved for Google-developed functionality.
|
10773
|
+
# Corresponds to the JSON property `queryConfig`
|
10774
|
+
# @return [Hash<String,String>]
|
10775
|
+
attr_accessor :query_config
|
10776
|
+
|
10770
10777
|
def initialize(**args)
|
10771
10778
|
update!(**args)
|
10772
10779
|
end
|
@@ -10776,6 +10783,7 @@ module Google
|
|
10776
10783
|
@answer = args[:answer] if args.key?(:answer)
|
10777
10784
|
@detailed_answer = args[:detailed_answer] if args.key?(:detailed_answer)
|
10778
10785
|
@query = args[:query] if args.key?(:query)
|
10786
|
+
@query_config = args[:query_config] if args.key?(:query_config)
|
10779
10787
|
end
|
10780
10788
|
end
|
10781
10789
|
|
@@ -17708,7 +17716,10 @@ module Google
|
|
17708
17716
|
# relevance and attractiveness of a search result from a user's perspective. A
|
17709
17717
|
# higher pCTR suggests that the result is more likely to satisfy the user's
|
17710
17718
|
# query and intent, making it a valuable signal for ranking. * `freshness_rank`:
|
17711
|
-
# freshness adjustment as a rank * `
|
17719
|
+
# freshness adjustment as a rank * `topicality_rank`: topicality adjustment as a
|
17720
|
+
# rank. Uses proprietary Google model to determine the keyword-based overlap
|
17721
|
+
# between the query and the document. * `base_rank`: the default rank of the
|
17722
|
+
# result
|
17712
17723
|
# Corresponds to the JSON property `rankingExpression`
|
17713
17724
|
# @return [String]
|
17714
17725
|
attr_accessor :ranking_expression
|
@@ -18939,6 +18950,13 @@ module Google
|
|
18939
18950
|
# @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaQuery]
|
18940
18951
|
attr_accessor :query
|
18941
18952
|
|
18953
|
+
# Optional. Represents metadata related to the query config, for example LLM
|
18954
|
+
# model and version used, model parameters (temperature, grounding parameters,
|
18955
|
+
# etc.). The prefix "google." is reserved for Google-developed functionality.
|
18956
|
+
# Corresponds to the JSON property `queryConfig`
|
18957
|
+
# @return [Hash<String,String>]
|
18958
|
+
attr_accessor :query_config
|
18959
|
+
|
18942
18960
|
def initialize(**args)
|
18943
18961
|
update!(**args)
|
18944
18962
|
end
|
@@ -18948,6 +18966,7 @@ module Google
|
|
18948
18966
|
@answer = args[:answer] if args.key?(:answer)
|
18949
18967
|
@detailed_answer = args[:detailed_answer] if args.key?(:detailed_answer)
|
18950
18968
|
@query = args[:query] if args.key?(:query)
|
18969
|
+
@query_config = args[:query_config] if args.key?(:query_config)
|
18951
18970
|
end
|
18952
18971
|
end
|
18953
18972
|
|
@@ -23023,7 +23042,10 @@ module Google
|
|
23023
23042
|
# relevance and attractiveness of a search result from a user's perspective. A
|
23024
23043
|
# higher pCTR suggests that the result is more likely to satisfy the user's
|
23025
23044
|
# query and intent, making it a valuable signal for ranking. * `freshness_rank`:
|
23026
|
-
# freshness adjustment as a rank * `
|
23045
|
+
# freshness adjustment as a rank * `topicality_rank`: topicality adjustment as a
|
23046
|
+
# rank. Uses proprietary Google model to determine the keyword-based overlap
|
23047
|
+
# between the query and the document. * `base_rank`: the default rank of the
|
23048
|
+
# result
|
23027
23049
|
# Corresponds to the JSON property `rankingExpression`
|
23028
23050
|
# @return [String]
|
23029
23051
|
attr_accessor :ranking_expression
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DiscoveryengineV1
|
18
18
|
# Version of the google-apis-discoveryengine_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.42.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 = "20250617"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -6898,6 +6898,7 @@ module Google
|
|
6898
6898
|
|
6899
6899
|
property :query, as: 'query', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Query, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Query::Representation
|
6900
6900
|
|
6901
|
+
hash :query_config, as: 'queryConfig'
|
6901
6902
|
end
|
6902
6903
|
end
|
6903
6904
|
|
@@ -9028,6 +9029,7 @@ module Google
|
|
9028
9029
|
|
9029
9030
|
property :query, as: 'query', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaQuery, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaQuery::Representation
|
9030
9031
|
|
9032
|
+
hash :query_config, as: 'queryConfig'
|
9031
9033
|
end
|
9032
9034
|
end
|
9033
9035
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-discoveryengine_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.42.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-discoveryengine_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.42.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|