elasticsearch 8.18.0__py3-none-any.whl → 9.0.1__py3-none-any.whl

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.
Files changed (107) hide show
  1. elasticsearch/_async/client/__init__.py +62 -277
  2. elasticsearch/_async/client/_base.py +1 -1
  3. elasticsearch/_async/client/async_search.py +6 -10
  4. elasticsearch/_async/client/autoscaling.py +4 -4
  5. elasticsearch/_async/client/cat.py +26 -33
  6. elasticsearch/_async/client/ccr.py +13 -13
  7. elasticsearch/_async/client/cluster.py +20 -20
  8. elasticsearch/_async/client/connector.py +44 -30
  9. elasticsearch/_async/client/dangling_indices.py +3 -3
  10. elasticsearch/_async/client/enrich.py +5 -5
  11. elasticsearch/_async/client/eql.py +4 -4
  12. elasticsearch/_async/client/esql.py +7 -11
  13. elasticsearch/_async/client/features.py +2 -2
  14. elasticsearch/_async/client/fleet.py +18 -20
  15. elasticsearch/_async/client/graph.py +1 -1
  16. elasticsearch/_async/client/ilm.py +18 -11
  17. elasticsearch/_async/client/indices.py +75 -163
  18. elasticsearch/_async/client/inference.py +132 -25
  19. elasticsearch/_async/client/ingest.py +12 -12
  20. elasticsearch/_async/client/license.py +7 -7
  21. elasticsearch/_async/client/logstash.py +3 -3
  22. elasticsearch/_async/client/migration.py +3 -3
  23. elasticsearch/_async/client/ml.py +80 -85
  24. elasticsearch/_async/client/monitoring.py +1 -1
  25. elasticsearch/_async/client/nodes.py +8 -8
  26. elasticsearch/_async/client/query_rules.py +8 -8
  27. elasticsearch/_async/client/rollup.py +8 -8
  28. elasticsearch/_async/client/search_application.py +10 -10
  29. elasticsearch/_async/client/searchable_snapshots.py +4 -4
  30. elasticsearch/_async/client/security.py +71 -68
  31. elasticsearch/_async/client/shutdown.py +3 -3
  32. elasticsearch/_async/client/simulate.py +1 -1
  33. elasticsearch/_async/client/slm.py +9 -9
  34. elasticsearch/_async/client/snapshot.py +280 -130
  35. elasticsearch/_async/client/sql.py +6 -6
  36. elasticsearch/_async/client/ssl.py +1 -1
  37. elasticsearch/_async/client/synonyms.py +7 -7
  38. elasticsearch/_async/client/tasks.py +3 -3
  39. elasticsearch/_async/client/text_structure.py +4 -4
  40. elasticsearch/_async/client/transform.py +11 -11
  41. elasticsearch/_async/client/watcher.py +14 -14
  42. elasticsearch/_async/client/xpack.py +2 -2
  43. elasticsearch/_sync/client/__init__.py +62 -277
  44. elasticsearch/_sync/client/_base.py +1 -1
  45. elasticsearch/_sync/client/async_search.py +6 -10
  46. elasticsearch/_sync/client/autoscaling.py +4 -4
  47. elasticsearch/_sync/client/cat.py +26 -33
  48. elasticsearch/_sync/client/ccr.py +13 -13
  49. elasticsearch/_sync/client/cluster.py +20 -20
  50. elasticsearch/_sync/client/connector.py +44 -30
  51. elasticsearch/_sync/client/dangling_indices.py +3 -3
  52. elasticsearch/_sync/client/enrich.py +5 -5
  53. elasticsearch/_sync/client/eql.py +4 -4
  54. elasticsearch/_sync/client/esql.py +7 -11
  55. elasticsearch/_sync/client/features.py +2 -2
  56. elasticsearch/_sync/client/fleet.py +18 -20
  57. elasticsearch/_sync/client/graph.py +1 -1
  58. elasticsearch/_sync/client/ilm.py +18 -11
  59. elasticsearch/_sync/client/indices.py +75 -163
  60. elasticsearch/_sync/client/inference.py +132 -25
  61. elasticsearch/_sync/client/ingest.py +12 -12
  62. elasticsearch/_sync/client/license.py +7 -7
  63. elasticsearch/_sync/client/logstash.py +3 -3
  64. elasticsearch/_sync/client/migration.py +3 -3
  65. elasticsearch/_sync/client/ml.py +80 -85
  66. elasticsearch/_sync/client/monitoring.py +1 -1
  67. elasticsearch/_sync/client/nodes.py +8 -8
  68. elasticsearch/_sync/client/query_rules.py +8 -8
  69. elasticsearch/_sync/client/rollup.py +8 -8
  70. elasticsearch/_sync/client/search_application.py +10 -10
  71. elasticsearch/_sync/client/searchable_snapshots.py +4 -4
  72. elasticsearch/_sync/client/security.py +71 -68
  73. elasticsearch/_sync/client/shutdown.py +3 -3
  74. elasticsearch/_sync/client/simulate.py +1 -1
  75. elasticsearch/_sync/client/slm.py +9 -9
  76. elasticsearch/_sync/client/snapshot.py +280 -130
  77. elasticsearch/_sync/client/sql.py +6 -6
  78. elasticsearch/_sync/client/ssl.py +1 -1
  79. elasticsearch/_sync/client/synonyms.py +7 -7
  80. elasticsearch/_sync/client/tasks.py +3 -3
  81. elasticsearch/_sync/client/text_structure.py +4 -4
  82. elasticsearch/_sync/client/transform.py +11 -11
  83. elasticsearch/_sync/client/utils.py +0 -37
  84. elasticsearch/_sync/client/watcher.py +14 -14
  85. elasticsearch/_sync/client/xpack.py +2 -2
  86. elasticsearch/_version.py +1 -1
  87. elasticsearch/dsl/_async/search.py +7 -3
  88. elasticsearch/dsl/_sync/search.py +7 -3
  89. elasticsearch/dsl/aggs.py +11 -7
  90. elasticsearch/dsl/faceted_search_base.py +4 -4
  91. elasticsearch/dsl/field.py +139 -1
  92. elasticsearch/dsl/query.py +7 -1
  93. elasticsearch/dsl/search_base.py +16 -3
  94. elasticsearch/dsl/types.py +66 -84
  95. elasticsearch/dsl/wrappers.py +25 -0
  96. elasticsearch/exceptions.py +2 -0
  97. elasticsearch/helpers/vectorstore/_async/strategies.py +12 -12
  98. elasticsearch/helpers/vectorstore/_sync/strategies.py +12 -12
  99. {elasticsearch-8.18.0.dist-info → elasticsearch-9.0.1.dist-info}/METADATA +17 -29
  100. elasticsearch-9.0.1.dist-info/RECORD +162 -0
  101. elasticsearch-9.0.1.dist-info/licenses/LICENSE.txt +175 -0
  102. elasticsearch-9.0.1.dist-info/licenses/NOTICE.txt +559 -0
  103. elasticsearch/transport.py +0 -57
  104. elasticsearch-8.18.0.dist-info/RECORD +0 -161
  105. {elasticsearch-8.18.0.dist-info → elasticsearch-9.0.1.dist-info}/WHEEL +0 -0
  106. {elasticsearch-8.18.0.dist-info → elasticsearch-9.0.1.dist-info}/licenses/LICENSE +0 -0
  107. {elasticsearch-8.18.0.dist-info → elasticsearch-9.0.1.dist-info}/licenses/NOTICE +0 -0
@@ -96,7 +96,7 @@ class AsyncRetrievalStrategy(ABC):
96
96
 
97
97
 
98
98
  class AsyncSparseVectorStrategy(AsyncRetrievalStrategy):
99
- """Sparse retrieval strategy using the `text_expansion` processor."""
99
+ """Sparse retrieval strategy using the `sparse_vector` processor."""
100
100
 
101
101
  def __init__(self, model_id: str = ".elser_model_2"):
102
102
  self.model_id = model_id
@@ -127,11 +127,10 @@ class AsyncSparseVectorStrategy(AsyncRetrievalStrategy):
127
127
  "bool": {
128
128
  "must": [
129
129
  {
130
- "text_expansion": {
131
- f"{vector_field}.{self._tokens_field}": {
132
- "model_id": self.model_id,
133
- "model_text": query,
134
- }
130
+ "sparse_vector": {
131
+ "field": f"{vector_field}.{self._tokens_field}",
132
+ "inference_id": self.model_id,
133
+ "query": query,
135
134
  }
136
135
  }
137
136
  ],
@@ -150,7 +149,7 @@ class AsyncSparseVectorStrategy(AsyncRetrievalStrategy):
150
149
  mappings: Dict[str, Any] = {
151
150
  "properties": {
152
151
  vector_field: {
153
- "properties": {self._tokens_field: {"type": "rank_features"}}
152
+ "properties": {self._tokens_field: {"type": "sparse_vector"}}
154
153
  }
155
154
  }
156
155
  }
@@ -172,11 +171,12 @@ class AsyncSparseVectorStrategy(AsyncRetrievalStrategy):
172
171
  {
173
172
  "inference": {
174
173
  "model_id": self.model_id,
175
- "target_field": vector_field,
176
- "field_map": {text_field: "text_field"},
177
- "inference_config": {
178
- "text_expansion": {"results_field": self._tokens_field}
179
- },
174
+ "input_output": [
175
+ {
176
+ "input_field": text_field,
177
+ "output_field": f"{vector_field}.{self._tokens_field}",
178
+ },
179
+ ],
180
180
  }
181
181
  }
182
182
  ],
@@ -96,7 +96,7 @@ class RetrievalStrategy(ABC):
96
96
 
97
97
 
98
98
  class SparseVectorStrategy(RetrievalStrategy):
99
- """Sparse retrieval strategy using the `text_expansion` processor."""
99
+ """Sparse retrieval strategy using the `sparse_vector` processor."""
100
100
 
101
101
  def __init__(self, model_id: str = ".elser_model_2"):
102
102
  self.model_id = model_id
@@ -127,11 +127,10 @@ class SparseVectorStrategy(RetrievalStrategy):
127
127
  "bool": {
128
128
  "must": [
129
129
  {
130
- "text_expansion": {
131
- f"{vector_field}.{self._tokens_field}": {
132
- "model_id": self.model_id,
133
- "model_text": query,
134
- }
130
+ "sparse_vector": {
131
+ "field": f"{vector_field}.{self._tokens_field}",
132
+ "inference_id": self.model_id,
133
+ "query": query,
135
134
  }
136
135
  }
137
136
  ],
@@ -150,7 +149,7 @@ class SparseVectorStrategy(RetrievalStrategy):
150
149
  mappings: Dict[str, Any] = {
151
150
  "properties": {
152
151
  vector_field: {
153
- "properties": {self._tokens_field: {"type": "rank_features"}}
152
+ "properties": {self._tokens_field: {"type": "sparse_vector"}}
154
153
  }
155
154
  }
156
155
  }
@@ -172,11 +171,12 @@ class SparseVectorStrategy(RetrievalStrategy):
172
171
  {
173
172
  "inference": {
174
173
  "model_id": self.model_id,
175
- "target_field": vector_field,
176
- "field_map": {text_field: "text_field"},
177
- "inference_config": {
178
- "text_expansion": {"results_field": self._tokens_field}
179
- },
174
+ "input_output": [
175
+ {
176
+ "input_field": text_field,
177
+ "output_field": f"{vector_field}.{self._tokens_field}",
178
+ },
179
+ ],
180
180
  }
181
181
  }
182
182
  ],
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: elasticsearch
3
- Version: 8.18.0
3
+ Version: 9.0.1
4
4
  Summary: Python client for Elasticsearch
5
5
  Project-URL: Documentation, https://elasticsearch-py.readthedocs.io/
6
6
  Project-URL: Homepage, https://github.com/elastic/elasticsearch-py
@@ -10,7 +10,9 @@ Author-email: Elastic Client Library Maintainers <client-libs@elastic.co>
10
10
  Maintainer-email: Elastic Client Library Maintainers <client-libs@elastic.co>
11
11
  License-Expression: Apache-2.0
12
12
  License-File: LICENSE
13
+ License-File: LICENSE.txt
13
14
  License-File: NOTICE
15
+ License-File: NOTICE.txt
14
16
  Keywords: REST,client,elastic,elasticsearch,index,kibana,mapping,search
15
17
  Classifier: Development Status :: 5 - Production/Stable
16
18
  Classifier: Intended Audience :: Developers
@@ -142,24 +144,23 @@ of the getting started documentation.
142
144
 
143
145
  ## Compatibility
144
146
 
145
- Language clients are forward compatible; meaning that the clients support
146
- communicating with greater or equal minor versions of Elasticsearch without
147
- breaking. It does not mean that the clients automatically support new features
148
- of newer Elasticsearch versions; it is only possible after a release of a new
149
- client version. For example, a 8.12 client version won't automatically support
150
- the new features of the 8.13 version of Elasticsearch, the 8.13 client version
151
- is required for that. Elasticsearch language clients are only backwards
152
- compatible with default distributions and without guarantees made.
147
+ Language clients are _forward compatible:_ each client version works with equivalent and later minor versions of Elasticsearch without breaking.
153
148
 
154
- | Elasticsearch Version | Elasticsearch-Python Branch | Supported |
155
- | --------------------- | ------------------------ | --------- |
156
- | main | main | |
157
- | 8.x | 8.x | 8.x |
158
- | 7.x | 7.x | 7.17 |
149
+ Compatibility does not imply full feature parity. New Elasticsearch features are supported only in equivalent client versions. For example, an 8.12 client fully supports Elasticsearch 8.12 features and works with 8.13 without breaking; however, it does not support new Elasticsearch 8.13 features. An 8.13 client fully supports Elasticsearch 8.13 features.
159
150
 
151
+ | Elasticsearch version | elasticsearch-py branch |
152
+ | --- | --- |
153
+ | main | main |
154
+ | 9.x | 9.x |
155
+ | 9.x | 8.x |
156
+ | 8.x | 8.x |
160
157
 
161
- If you have a need to have multiple versions installed at the same time older
162
- versions are also released as ``elasticsearch7`` and ``elasticsearch8``.
158
+ Elasticsearch language clients are also _backward compatible_ across minor versions &mdash; with default distributions and without guarantees.
159
+
160
+ > [!TIP]
161
+ > To upgrade to a new major version, first upgrade Elasticsearch, then upgrade the Python Elasticsearch client.
162
+
163
+ If you need to work with multiple client versions, note that older versions are also released as `elasticsearch7` and `elasticsearch8`.
163
164
 
164
165
 
165
166
  ## Documentation
@@ -170,19 +171,6 @@ Documentation for the client is [available on elastic.co] and [Read the Docs].
170
171
  [Read the Docs]: https://elasticsearch-py.readthedocs.io
171
172
 
172
173
 
173
- ## Feedback 🗣️
174
-
175
- The engineering team here at Elastic is looking for developers to participate in
176
- research and feedback sessions to learn more about how you use our Python client and
177
- what improvements we can make to their design and your workflow. If you're interested in
178
- sharing your insights into developer experience and language client design, please fill
179
- out this [short form]. Depending on the number of responses we get, we may either
180
- contact you for a 1:1 conversation or a focus group with other developers who use the
181
- same client. Thank you in advance - your feedback is crucial to improving the user
182
- experience for all Elasticsearch developers!
183
-
184
- [short form]: https://forms.gle/bYZwDQXijfhfwshn9
185
-
186
174
  ## License
187
175
 
188
176
  This software is licensed under the [Apache License 2.0](./LICENSE). See [NOTICE](./NOTICE).
@@ -0,0 +1,162 @@
1
+ elasticsearch/__init__.py,sha256=KicjUPfCZzRi4nTg2vJa1CklY168gVI6WwQsF2qsoXM,3325
2
+ elasticsearch/_otel.py,sha256=Oidt86g9XzeVrwMsJeV7dGLsyquVMJWfhcRlz43RlGo,4188
3
+ elasticsearch/_utils.py,sha256=Vr_aNG5ddxInE1PgDpCXMYpXBTNUFM9nYrgbw-cjeCc,1419
4
+ elasticsearch/_version.py,sha256=6sO54joUgHkwsVOLxckSbDqohr8dVpQsprRUqOzzOOo,813
5
+ elasticsearch/client.py,sha256=D7XS3Fa57GEbBVIaJLQdzbA12_pdmRXCscdnwnXjn4U,5498
6
+ elasticsearch/compat.py,sha256=hL3mtqVxWwxeiFbNGADva5XruAwK-A6xcu-vrpnDXFs,2657
7
+ elasticsearch/exceptions.py,sha256=oIO4Nnasth_XXXqYgg1sOv2zAHa3Ba0yB_5StFPWK9Y,4271
8
+ elasticsearch/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ elasticsearch/serializer.py,sha256=vLhhlU6fAjHXB-z2E5ieBe_XKWx4A0o-lbJY9Bknt70,8059
10
+ elasticsearch/_async/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
11
+ elasticsearch/_async/helpers.py,sha256=Q5LIXoyjoHeShBUltwLIkGc3WqmqAYHW2ddLjzNpYQU,22801
12
+ elasticsearch/_async/client/__init__.py,sha256=cdRfsOS2bHtDc0tbTHWWOujMCUh55O_p59o-hTBJvcA,351800
13
+ elasticsearch/_async/client/_base.py,sha256=q-efl19moyBufyiX2WYRLfBkrcmT3TUVKPf_Kqs5NqA,15494
14
+ elasticsearch/_async/client/async_search.py,sha256=JW7meOSt9BCLTJwYuoXQqHalkf-tch-ZHxuA87A1ec8,30600
15
+ elasticsearch/_async/client/autoscaling.py,sha256=-bzLJVXk1yMB522fQHu2gQTvk7pgUBKcRjYrARGJZmo,11275
16
+ elasticsearch/_async/client/cat.py,sha256=xfbyygwsGMv3tCUSYtHBjWQr1n9uWA11L5GwNKS7uSw,132075
17
+ elasticsearch/_async/client/ccr.py,sha256=9ETmgiYrotkEKXMQxJla8M4_knhEGvGEcW1avBJH-Vs,49930
18
+ elasticsearch/_async/client/cluster.py,sha256=TaJVnIN8pwnSE5J1E9fCRY8qVFVU_Cc9ic1p2IHWTgI,61138
19
+ elasticsearch/_async/client/connector.py,sha256=SOIE1MTBAAfDMdjBAY9NOX9XUgqSzZtkQZvjmB4P9aI,79155
20
+ elasticsearch/_async/client/dangling_indices.py,sha256=5lMSqcF6qaG7ux9qsOcDFOxZaGadNrzkKx0hEgXmEJk,8536
21
+ elasticsearch/_async/client/enrich.py,sha256=lvGscbUEpR4HemcJNZwKwvnyOwcWPDmM4WFejp76I14,11309
22
+ elasticsearch/_async/client/eql.py,sha256=W3qx_b3tszfCeJJH3ea6NPjFHPbqvaejEMbI6UgjSf0,15324
23
+ elasticsearch/_async/client/esql.py,sha256=73YozMhhnbiR7Ai7o8B-L280k5DHrgVQow789tkpb2w,22741
24
+ elasticsearch/_async/client/features.py,sha256=kJWyyNK8UynTYSh6Xw0K2xE-0Z-RCJKZ1lmS9nP0gNk,6202
25
+ elasticsearch/_async/client/fleet.py,sha256=t8nokMSpxSXyP_1j1LUexdbAJQ7aFmb_LY4L2y2-aog,31102
26
+ elasticsearch/_async/client/graph.py,sha256=6GhE9XelFc5PRvh2x-6BnQ5v0E7Drz0ZNoMyXBOeSEc,5139
27
+ elasticsearch/_async/client/ilm.py,sha256=-Y0GkOKzGxp9EnXV_8bV2l25giwjG9ZSjkYlQQSVFss,28647
28
+ elasticsearch/_async/client/indices.py,sha256=Kpx6bEcV7X9HQGYkjpkyK6V_Vu8R3s3iQNHKAZXaZss,278346
29
+ elasticsearch/_async/client/inference.py,sha256=SCHYetySNOE46R6aoCHTb0hnalMVaI_jGTl1eLUiKHI,109105
30
+ elasticsearch/_async/client/ingest.py,sha256=XtdqDNXpTDAnZtmzBUTeYbIVSBGJSMtL1MbMYCutwPk,32484
31
+ elasticsearch/_async/client/license.py,sha256=mKaNGglbQMXDPjoGIN96tsY8ttUKrhea86MRtLvPZg0,16747
32
+ elasticsearch/_async/client/logstash.py,sha256=hPIRBmdTt-QLM0Hkb7IkMCW3UL49Ng-p3fMD3Bo98Ss,6543
33
+ elasticsearch/_async/client/migration.py,sha256=K2fMkjMQ97UAYcMciLkPI4nfoNGt_uR90eTjQhF5h0o,6419
34
+ elasticsearch/_async/client/ml.py,sha256=1KcA4WBMP2hUwELVBRmuxnVQDnrJfeJrADKlSa3n51M,268475
35
+ elasticsearch/_async/client/monitoring.py,sha256=xiHKDeFwLEUAbz4QQkQcSlxSZCQLLdW8Mj1jYrqHlYc,3853
36
+ elasticsearch/_async/client/nodes.py,sha256=wK7U7zAY-F4NDPH667iQ0yP1RUBsekEBu9jsSzVG0cA,24051
37
+ elasticsearch/_async/client/query_rules.py,sha256=Kc2iQ2gLY2k5zCLO_FblULFisV0-OQteWPXKvVFGR50,19455
38
+ elasticsearch/_async/client/rollup.py,sha256=qxMIzum4tXEB-le_zkAQ1D3HdMQYC4iW2V69pTzX4r4,29148
39
+ elasticsearch/_async/client/search_application.py,sha256=A6rBq6OeDvWkuDPe52x9Ix-QN6QogQUEyX3aC1YnAjs,22177
40
+ elasticsearch/_async/client/searchable_snapshots.py,sha256=_HyYjE_43GQfM-8ffjyL8K3kV8xMsNUiQx3FgaS8btE,12718
41
+ elasticsearch/_async/client/security.py,sha256=-nOk__dsh8Uyl8Z8Cdj1yZUJmyFq3WCxNpWPcdd-MIs,222591
42
+ elasticsearch/_async/client/shutdown.py,sha256=qb-__6SIPhuvhg_FQFTslS_tmYMzkzWBkqbj8RXUG0k,13261
43
+ elasticsearch/_async/client/simulate.py,sha256=APtHQjXhk7tJaWIuLeR1q6rCJXly9deHyTMuqAt6Vek,7351
44
+ elasticsearch/_async/client/slm.py,sha256=5G8b2zRQvjB2f67woW8FvxYKxHchMEVM1MUklJEoB5Y,24386
45
+ elasticsearch/_async/client/snapshot.py,sha256=fTGFX7iVEdvC_xIuq-dA-2XcgnlfwNjuOrxkqC4EEr4,76579
46
+ elasticsearch/_async/client/sql.py,sha256=VgN_zHMmBERlyMdiCc_EZFPYfBnb6I1QOhG_JvjA9Ak,20130
47
+ elasticsearch/_async/client/ssl.py,sha256=0RfIoBeJA2onEtiXxjV4H0g0iZIMUvIwAmViuDE1clQ,3779
48
+ elasticsearch/_async/client/synonyms.py,sha256=DrbrbfM6yr2kDhk_lHE4-uuh1MQVD8ietCogC-AOARM,16330
49
+ elasticsearch/_async/client/tasks.py,sha256=cbcQmrYcnBFebm98NX-HpmR5iiFkBTRPnxl1vyWs6bo,13694
50
+ elasticsearch/_async/client/text_structure.py,sha256=pxQKoX3zKGcNQCUiSGu4IIm2Mz0s0YSVx9It_Qf_ixk,40677
51
+ elasticsearch/_async/client/transform.py,sha256=4SQGW06bhWlAr7HeIQvpdFz1y6bFAWe5Vc5cWUumhY4,44430
52
+ elasticsearch/_async/client/utils.py,sha256=h64qW1YcQZoJdEpDiYqkgnD3Q_0r2Y_ltUiNpNzpekI,1449
53
+ elasticsearch/_async/client/watcher.py,sha256=l1KZcf7vw6maXJ6I71xSEPgV6EicezHQkRjqS1Q80wc,38056
54
+ elasticsearch/_async/client/xpack.py,sha256=hRZToaH7B7JLqVauZcT9s7prFYpTpTR3_f_Lnci-QwY,5140
55
+ elasticsearch/_sync/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
56
+ elasticsearch/_sync/client/__init__.py,sha256=P3EdFIQcuKGBrnc6JkvKMaqENAk2Oc3vYSXBbTm_4Xc,351181
57
+ elasticsearch/_sync/client/_base.py,sha256=H3CZjE4sUUxVXCXSNsyIwBFuUJv8JS9Y5fujRqlqHjg,15424
58
+ elasticsearch/_sync/client/async_search.py,sha256=fqdMKjdiezqJTu8IYNq82Si3sSojKH2aOlVDidtrctI,30552
59
+ elasticsearch/_sync/client/autoscaling.py,sha256=lYfz7jJY4EqEhQ0oHRO_kQC7g7rvCXCAaGmQSavMMxg,11227
60
+ elasticsearch/_sync/client/cat.py,sha256=SDfiVG8jtHxr9pf_2RIqTahGePpbPPzU4EICWwHZXkM,131763
61
+ elasticsearch/_sync/client/ccr.py,sha256=yA5S-Sh1WW-mrUbChb2NPhISbIZi22rJEneGPhlSFHs,49774
62
+ elasticsearch/_sync/client/cluster.py,sha256=NsQmITZxMcYpwqVS2AnD__pEqFbiwdKKqzPJ30lC4R8,60946
63
+ elasticsearch/_sync/client/connector.py,sha256=vNIi6Gfs16OZPMmalgRupRM1EzwHeCOfs6-BYJpdoBg,78795
64
+ elasticsearch/_sync/client/dangling_indices.py,sha256=XLbWVshsPitTEhUH5l5f2LmdpnxP1eWDrcA-_eWCeTE,8500
65
+ elasticsearch/_sync/client/enrich.py,sha256=sVQPzarkrGW_9zKcT5GQdjhtaefv5bn2iTyBip2DCJc,11249
66
+ elasticsearch/_sync/client/eql.py,sha256=nhrTQlcLgT9OviP8Pks_f9Trs2ju0l-1_1_n_eX2I24,15276
67
+ elasticsearch/_sync/client/esql.py,sha256=JLaSQdaMjOheW3wci6ByI4lMb_P1YeezXDei0FUdvjQ,22681
68
+ elasticsearch/_sync/client/features.py,sha256=3kewhf6BYSTH3-4S1wfe-DpEVmbIh8jxRhQlRL4oj2M,6178
69
+ elasticsearch/_sync/client/fleet.py,sha256=mvnKv3aYnSMa6WnqVXvQmF0a_uSjny3mreOZ7ra4Sfk,31066
70
+ elasticsearch/_sync/client/graph.py,sha256=G2YHBr0fhQDVq2U9AaLs2PSiVGnSbAelgkKEZJHKe5E,5127
71
+ elasticsearch/_sync/client/ilm.py,sha256=ns2Ke1eX-o1j7KrNDEPblZkyKLkxVQQByJAg_LtSU-Y,28515
72
+ elasticsearch/_sync/client/indices.py,sha256=VkA6yC9b7pGPU9d0-40LarFHXMn12g8dHBqj-KFpHxQ,277590
73
+ elasticsearch/_sync/client/inference.py,sha256=wfBJs6Ohj8FuxG0sv7pXewpLVKnP5hGGueLN2U1TCLY,108805
74
+ elasticsearch/_sync/client/ingest.py,sha256=XsKRkakMQwxMq9_tWbSu9al40NMZmvd1kXJBQTj--Pw,32340
75
+ elasticsearch/_sync/client/license.py,sha256=rhqk3rBSoTmqopFp7rGRFcQhWM6L32VifwEvkZiRNhI,16663
76
+ elasticsearch/_sync/client/logstash.py,sha256=ajugUoJk7iUnggPGE6LzszbM3rJFIPj6_QeCqy8hKSo,6507
77
+ elasticsearch/_sync/client/migration.py,sha256=NmjJ3g2lUw5Ym22sPJQznPQqPQuJQERJRIEy72hb-mo,6383
78
+ elasticsearch/_sync/client/ml.py,sha256=ycBqIzucTwa3iRAtbC3nRtDXqexMxdTH9hEJA4ezYGI,267599
79
+ elasticsearch/_sync/client/monitoring.py,sha256=cYUvFJ-Oizo-oV0DcWj-0KZmaW-C1VYzmarNIbnINb4,3841
80
+ elasticsearch/_sync/client/nodes.py,sha256=lLHbiNIgcvjzgbontj54mNu0wtSi79R1-MLSiBFtuYI,23967
81
+ elasticsearch/_sync/client/query_rules.py,sha256=uN1NhoJ7rwg_-fxZMO2LvH-RmooAo8HERKOX1DIVwAY,19359
82
+ elasticsearch/_sync/client/rollup.py,sha256=tlsi7X3s2Q2VBIBYSsGukjsGR1-ihuHnoM1sW-ev-kE,29052
83
+ elasticsearch/_sync/client/search_application.py,sha256=r4dzspXaos-fvzg0TikFcSCzvpWXliu-pD9YvcCB00o,22057
84
+ elasticsearch/_sync/client/searchable_snapshots.py,sha256=W8iTPsUB3UmrmnOYE49EeTG4dMz5Oksk9UTxXSP1mXk,12670
85
+ elasticsearch/_sync/client/security.py,sha256=Cj_yy0ot1k5__I7rC-GPUuO__653fLKAMTYovpZXRCI,221823
86
+ elasticsearch/_sync/client/shutdown.py,sha256=RhE6j80lEni6dqkxI7l7wes3mA5QXJLAGeKWenF4XcE,13225
87
+ elasticsearch/_sync/client/simulate.py,sha256=ddDWO4TE4xDj6prmUsiOepTQxSQBG6PWHzJaHjH2ECg,7339
88
+ elasticsearch/_sync/client/slm.py,sha256=MfxM5T_0cuiaip6dYQspSxNua-fcWHLptmjHolvlkGU,24278
89
+ elasticsearch/_sync/client/snapshot.py,sha256=xQKROkf6Yy81qT2MBHWEh3Hf8WJUw4Ndcom2RHb1FYg,76423
90
+ elasticsearch/_sync/client/sql.py,sha256=jOQjOpRFOkEgoI6Uo9DCc5dCSlKMi34XragNjvsW7VA,20058
91
+ elasticsearch/_sync/client/ssl.py,sha256=16GXY22cJ7gZ5mzcrKqBEMeVYXjnQlYuNULfRuEkFJk,3767
92
+ elasticsearch/_sync/client/synonyms.py,sha256=9IhJqMJD5OhL1b7W526m4E7W4LyUsTpUS7NmzedH5LI,16246
93
+ elasticsearch/_sync/client/tasks.py,sha256=07ftfAtJmIc32ooz-R7fMe_Rii-nyER8OUbwlMJsAvE,13658
94
+ elasticsearch/_sync/client/text_structure.py,sha256=tGj93vxw8QaDhLTG-b-a25JNYyggidp8rUZ3i2Oc74s,40629
95
+ elasticsearch/_sync/client/transform.py,sha256=IeYxrx_i76HWApUenw_zTbFdlxRUOH3E_DDj0ahVVQQ,44298
96
+ elasticsearch/_sync/client/utils.py,sha256=DxEShkaJzeycquaEVLbYXo00DmAqsVlBk8hyEtObxew,17187
97
+ elasticsearch/_sync/client/watcher.py,sha256=rqOdCTH7EjVwpwbLixl0W_JESe5BEz3_Dw8UxnmJzq8,37900
98
+ elasticsearch/_sync/client/xpack.py,sha256=0xrYsLnw3fusUDozeFMB7JQWTXoT2NgpMkrCq7BxbE4,5116
99
+ elasticsearch/dsl/__init__.py,sha256=IKzYnYwF2Xb4_xTRN_upDOHpYJgIP3iWXXmd7O_2lDc,4296
100
+ elasticsearch/dsl/aggs.py,sha256=Iwx0y6vT0znNJEb7qwcBLMmSOf2muwZzdOAWCyZ_YqU,131379
101
+ elasticsearch/dsl/analysis.py,sha256=8-P6Cgh7CIgmbL6ZnhSl27NKVSjvqTcyn_VKnwZ6LDM,10308
102
+ elasticsearch/dsl/async_connections.py,sha256=K57MB_Gbu6s4Bn_1pzy5iA32ur8imfKP7yC4XlSI11s,1451
103
+ elasticsearch/dsl/connections.py,sha256=WxgUdq6PsQ6-ESG1pW6fab--VMm_IwlhH-J50XqeBZw,5176
104
+ elasticsearch/dsl/document.py,sha256=VzUvFqntLx_uWxIhOlK9WwXXa63Bwrp0a_Ja4rCKOF8,957
105
+ elasticsearch/dsl/document_base.py,sha256=r045luNNySLO-Jrv6wec43yKlQM_pEXcjvde4_7cMLk,15999
106
+ elasticsearch/dsl/exceptions.py,sha256=bmQh4tjfFzSzlYr-Wtn5fdq6dTa3zcgtUEz3jlsYI38,1043
107
+ elasticsearch/dsl/faceted_search.py,sha256=0NY9_yMlZ1FJWhmHtjx2I5eLlS8V0jBNAJdkp__ljg8,1094
108
+ elasticsearch/dsl/faceted_search_base.py,sha256=BlZzt8jY3P4rrKe30Szw2aZE2q36OVtOWwyJZPghYao,15354
109
+ elasticsearch/dsl/field.py,sha256=uAgaJKpgaQMKHB7grSCYoFHE4GwpG4YamqQcBFEKUts,157423
110
+ elasticsearch/dsl/function.py,sha256=OavCMAUpDf1snQfVaaAL7wa_2HEQzhWVMo3Xuu-dV94,5127
111
+ elasticsearch/dsl/index.py,sha256=r7qdWevIWAgXTEz2iIKdwhyRF1B3nFchVuNdguSXtUc,991
112
+ elasticsearch/dsl/index_base.py,sha256=7YysvCWcAf0JEAFaZGsZPJML-CUG3QkqSd8D89PBOlE,6355
113
+ elasticsearch/dsl/mapping.py,sha256=d5GU7ZZ89-aLO_PjXzHzmavUUZVBIvaC-hok06V-Ff0,892
114
+ elasticsearch/dsl/mapping_base.py,sha256=uDhpyxxyORxcFkEju5DVq8nxrU57a_1pS_1A0C-iuh4,7480
115
+ elasticsearch/dsl/query.py,sha256=vvSaD_Z5--jwdBKU7WoupAWf-wEiaDfNcMq9-wFtzcQ,103745
116
+ elasticsearch/dsl/search.py,sha256=KzDfCPWWgSwMB79PQxyAHUhsL4lubfnCW9HpR0juDxs,991
117
+ elasticsearch/dsl/search_base.py,sha256=ApVSfUAtU0gf0RjRdz2jVY97FeXj6rh_IDjaIYrSkBU,34963
118
+ elasticsearch/dsl/serializer.py,sha256=hpo3aa94WhKY5iKyNyrE9TCe1A7JjF6tIiuyEBFhveE,1189
119
+ elasticsearch/dsl/types.py,sha256=qxej6f7bfTP6SNOM0EdMxxdOwpNw8i7pD00V_vYgRps,202406
120
+ elasticsearch/dsl/update_by_query.py,sha256=adLSefH6YeGbdcmLMTC4IXqzqVFY63lSeEXsI45wj4Y,920
121
+ elasticsearch/dsl/update_by_query_base.py,sha256=3jZROLNL3fLcaqeDLk82waBSNTdv7w6L38hxjQV-ybU,4939
122
+ elasticsearch/dsl/utils.py,sha256=WRupAUt432wZuyS49IpF2f6m0Ux79P9RthkG2FM4pFw,22977
123
+ elasticsearch/dsl/wrappers.py,sha256=W1EW5H9uRAOewFLzYRQeMnZp358-w7_1XujmNFKsQb8,4099
124
+ elasticsearch/dsl/_async/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
125
+ elasticsearch/dsl/_async/document.py,sha256=knCXN_hRKFldUF6dC8kGr-AcTwZCXhcvgSqbkpeMCVE,19347
126
+ elasticsearch/dsl/_async/faceted_search.py,sha256=6I6ZNCfYHKSWwqfXv7b1Mb9gYark76XtWcpukTign9Q,1743
127
+ elasticsearch/dsl/_async/index.py,sha256=ci8i3NxqOb_irt0GYHhvb2POEu-maKQgL6ox3GLOZlw,22765
128
+ elasticsearch/dsl/_async/mapping.py,sha256=5MmAuBXh17EvTKpyLi24B1aFiJwvspYMfJim8Omx1ks,1759
129
+ elasticsearch/dsl/_async/search.py,sha256=I8sQdoUM8Vhz40TJmD5ILxWaANdOlOxTt7RbN-A2mQE,8227
130
+ elasticsearch/dsl/_async/update_by_query.py,sha256=YsqNb03V8Zyq52_wdJOFC5At5ujvlTcwtU85m3PlbhA,1641
131
+ elasticsearch/dsl/_sync/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
132
+ elasticsearch/dsl/_sync/document.py,sha256=vHRIU1lEyY13SRnsVjg9DKWRXllC4m_Ee2tZpKrp-20,18940
133
+ elasticsearch/dsl/_sync/faceted_search.py,sha256=HVBXlwZQ3ld150RkGCXyxeZ3dHAwZDQTCCJQqJpGxog,1694
134
+ elasticsearch/dsl/_sync/index.py,sha256=DpUmWTUXDRqRlVHN9eeCMLvb0Xvx0-bGa4XHtb12RLQ,21635
135
+ elasticsearch/dsl/_sync/mapping.py,sha256=yRRE3lMj5DNkDson2fA2ZHVuotjNwZws7qcUoakKhlQ,1682
136
+ elasticsearch/dsl/_sync/search.py,sha256=nAm5XPN8TBW1f-vqFyUTKf9dSvt9w708lxdgMSJJ9IU,7881
137
+ elasticsearch/dsl/_sync/update_by_query.py,sha256=pUnHuLne_r2u3hh0OtZvM-TnP-Jf_UOuAmGwWopGPZU,1570
138
+ elasticsearch/dsl/response/__init__.py,sha256=WOmfs3vb_KzM9kRfxsw0z4lZvf4OFP-vpY-4hSiiPYk,13786
139
+ elasticsearch/dsl/response/aggs.py,sha256=Unqp-acPQjqGbCTs1j0UhXQJjWuzjikySz__5BCIx_E,3394
140
+ elasticsearch/dsl/response/hit.py,sha256=SCMeVQz4gsID4xgp3iGcpBw_XY5nbSDQ8B_RyDwgUnU,2111
141
+ elasticsearch/helpers/__init__.py,sha256=7X10XwdP_fP1QTHGcOxGbCvl2oBevkz_DjhjXCh_59I,1470
142
+ elasticsearch/helpers/actions.py,sha256=A4IVl8TrCdqk2mnZ_KQggeMolDEHBaesk2qDygE8skE,32378
143
+ elasticsearch/helpers/errors.py,sha256=5khkK4zbXsk4ry8HDmGfyzlmZI9KSKP-MivCgcPoO5U,1506
144
+ elasticsearch/helpers/vectorstore/__init__.py,sha256=znQOANiaSZOJco_dkBf06wpFMKwK0OoDcNkkS8NMWKE,2192
145
+ elasticsearch/helpers/vectorstore/_utils.py,sha256=xJwCFq7sqUBeq143tfnfm3i4e-ta88s85wKZmPZwJWg,3985
146
+ elasticsearch/helpers/vectorstore/_async/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
147
+ elasticsearch/helpers/vectorstore/_async/_utils.py,sha256=wYlPKvAT4bflJjULLB2LMjJroAgX6tjoDGBPT6V1gj8,1608
148
+ elasticsearch/helpers/vectorstore/_async/embedding_service.py,sha256=Qv4HsPC4k6J00K4ajhJPFlET6fOTV-l74iDCr4dpZgc,3655
149
+ elasticsearch/helpers/vectorstore/_async/strategies.py,sha256=30s8zxn-mbImS_wGnAVUDU7fBsdTenyv8gbf0XoqZFg,16177
150
+ elasticsearch/helpers/vectorstore/_async/vectorstore.py,sha256=U9xOnjLjJmLeT8dltKWYvsDD4jkmyH0ybfxR0Bn6-_Y,16707
151
+ elasticsearch/helpers/vectorstore/_sync/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
152
+ elasticsearch/helpers/vectorstore/_sync/_utils.py,sha256=5pdvNS5XC3wqShjliW9Njl9tVuyI9WMy0cxc5-97K-c,1569
153
+ elasticsearch/helpers/vectorstore/_sync/embedding_service.py,sha256=sAw_WKUcmyqOOJRqnNesZCzn7ZyA91v4NvvQszHIWJ8,3582
154
+ elasticsearch/helpers/vectorstore/_sync/strategies.py,sha256=3ngdKfLNatqiwCjpAW51dT3Bx6gfT97ALD-gDAy6kxE,16075
155
+ elasticsearch/helpers/vectorstore/_sync/vectorstore.py,sha256=HZiEyrXL2i-3P5f9sYUPUYTcIDdEBTnATwQqtdfikZs,16523
156
+ elasticsearch-9.0.1.dist-info/METADATA,sha256=kIjpJDn_3_mRb5R7NkXW0dsi5qwkISFrzQz6nEXGTto,8473
157
+ elasticsearch-9.0.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
158
+ elasticsearch-9.0.1.dist-info/licenses/LICENSE,sha256=XfKg2H1sVi8OoRxoisUlMqoo10TKvHmU_wU39ks7MyA,10143
159
+ elasticsearch-9.0.1.dist-info/licenses/LICENSE.txt,sha256=4JFueU7Hi11OhqseKJyD5W5ufZ6ZkGDsMWH7CLOHg6Y,10142
160
+ elasticsearch-9.0.1.dist-info/licenses/NOTICE,sha256=t4IjKAJ_G-0hYaL4AH16CVS_xDel8UXrJVK6x7JDaGA,61
161
+ elasticsearch-9.0.1.dist-info/licenses/NOTICE.txt,sha256=2dshATdruN4hzPj9pypOzZ8uLqIPnQDK5LynrVu-d4Y,28246
162
+ elasticsearch-9.0.1.dist-info/RECORD,,
@@ -0,0 +1,175 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use thes
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.