Commit fa66f3e 1 parent 914c63c commit fa66f3e Copy full SHA for fa66f3e
File tree 3 files changed +425
-0
lines changed
3 files changed +425
-0
lines changed Original file line number Diff line number Diff line change 171
171
tokenization_extra_require = ["sentencepiece >= 0.2.0" ]
172
172
tokenization_testing_extra_require = tokenization_extra_require + ["nltk" ]
173
173
174
+ search_extra_require = ["google-cloud-discoveryengine" ]
175
+
174
176
full_extra_require = list (
175
177
set (
176
178
tensorboard_extra_require
188
190
+ preview_extra_require
189
191
+ ray_extra_require
190
192
+ evaluation_extra_require
193
+ + search_extra_require
191
194
)
192
195
)
193
196
testing_extra_require = (
276
279
"langchain" : langchain_extra_require ,
277
280
"langchain_testing" : langchain_testing_extra_require ,
278
281
"tokenization" : tokenization_extra_require ,
282
+ "search" : search_extra_require ,
279
283
},
280
284
python_requires = ">=3.8" ,
281
285
classifiers = [
Original file line number Diff line number Diff line change
1
+ # Copyright 2024 Google LLC
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+ #
15
+ """Classes for working with Vertex AI Search."""
16
+
17
+ # We just want to re-export certain classes
18
+ # pylint: disable=g-multiple-import,g-importing-member
19
+ from vertexai .preview .search ._search import (
20
+ App ,
21
+ DataType ,
22
+ DataSource ,
23
+ DataStore ,
24
+ IndustryVertical ,
25
+ TargetSite ,
26
+ InlineSource ,
27
+ GcsSource ,
28
+ BigQuerySource ,
29
+ SpannerSource ,
30
+ FirestoreSource ,
31
+ BigtableOptions ,
32
+ BigtableSource ,
33
+ AlloyDbSource ,
34
+ FhirStoreSource ,
35
+ ReconciliationMode ,
36
+ SearchTier ,
37
+ SearchAddOn ,
38
+ )
39
+
40
+ __all__ = [
41
+ "App" ,
42
+ "DataType" ,
43
+ "DataSource" ,
44
+ "DataStore" ,
45
+ "IndustryVertical" ,
46
+ "TargetSite" ,
47
+ "InlineSource" ,
48
+ "GcsSource" ,
49
+ "BigQuerySource" ,
50
+ "SpannerSource" ,
51
+ "FirestoreSource" ,
52
+ "BigtableOptions" ,
53
+ "BigtableSource" ,
54
+ "AlloyDbSource" ,
55
+ "FhirStoreSource" ,
56
+ "ReconciliationMode" ,
57
+ "SearchTier" ,
58
+ "SearchAddOn" ,
59
+ ]
You can’t perform that action at this time.
0 commit comments