Skip to content

Commit 85be2a0

Browse files
authored
Release 8.13.1
1 parent 8c476aa commit 85be2a0

File tree

37 files changed

+135
-54
lines changed

37 files changed

+135
-54
lines changed

docs/examples/00fea15cbca83be9d5f1a024ff2ec708.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// inference/put-inference.asciidoc:276
1+
// inference/put-inference.asciidoc:381
22

33
[source, python]
44
----

docs/examples/0e5db64154a722a5cbdb84b588ce2ce8.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// mapping/types/numeric.asciidoc:275
1+
// mapping/types/numeric.asciidoc:287
22

33
[source, python]
44
----

docs/examples/10c3fe2265bb34964bd1005f9da66773.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// inference/put-inference.asciidoc:371
1+
// inference/put-inference.asciidoc:488
22

33
[source, python]
44
----

docs/examples/13ecdf99114098c76b050397d9c3d4e6.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// inference/post-inference.asciidoc:72
1+
// inference/post-inference.asciidoc:197
22

33
[source, python]
44
----

docs/examples/1aa91d3d48140d6367b6cabca8737b8f.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// docs/bulk.asciidoc:634
1+
// docs/bulk.asciidoc:632
22

33
[source, python]
44
----

docs/examples/316cd43feb3b86396483903af1a048b1.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// aggregations/bucket/datehistogram-aggregation.asciidoc:781
1+
// aggregations/bucket/datehistogram-aggregation.asciidoc:782
22

33
[source, python]
44
----

docs/examples/36063ff9a318dba7bb0be3a230655dc8.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// mapping/types/numeric.asciidoc:247
1+
// mapping/types/numeric.asciidoc:259
22

33
[source, python]
44
----

docs/examples/3d1ff6097e2359f927c88c2ccdb36252.asciidoc

-7
This file was deleted.

docs/examples/4e3414fc712b16311f9e433dd366f49d.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// inference/delete-inference.asciidoc:51
1+
// inference/delete-inference.asciidoc:55
22

33
[source, python]
44
----

docs/examples/51b40610ae05730b4c6afd25647d7ae0.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// aggregations/bucket/datehistogram-aggregation.asciidoc:488
1+
// aggregations/bucket/datehistogram-aggregation.asciidoc:489
22

33
[source, python]
44
----

docs/examples/5203560189ccab7122c03500147701ef.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// aggregations/bucket/datehistogram-aggregation.asciidoc:568
1+
// aggregations/bucket/datehistogram-aggregation.asciidoc:569
22

33
[source, python]
44
----
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// inference/put-inference.asciidoc:529
2+
3+
[source, python]
4+
----
5+
resp = client.inference.put_model(
6+
task_type="completion",
7+
inference_id="openai-completion",
8+
body={
9+
"service": "openai",
10+
"service_settings": {
11+
"api_key": "<api_key>",
12+
"model_id": "gpt-3.5-turbo",
13+
},
14+
},
15+
)
16+
print(resp)
17+
----
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
// inference/put-inference.asciidoc:552
2+
3+
[source, python]
4+
----
5+
resp = client.inference.put_model(
6+
task_type="text_embedding",
7+
inference_id="azure_openai_embeddings",
8+
body={
9+
"service": "azureopenai",
10+
"service_settings": {
11+
"api_key": "<api_key>",
12+
"resource_name": "<resource_name>",
13+
"deployment_id": "<deployment_id>",
14+
"api_version": "2024-02-01",
15+
},
16+
},
17+
)
18+
print(resp)
19+
----
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// inference/put-inference.asciidoc:353
2+
3+
[source, python]
4+
----
5+
resp = client.inference.put_model(
6+
task_type="rerank",
7+
inference_id="cohere-rerank",
8+
body={
9+
"service": "cohere",
10+
"service_settings": {
11+
"api_key": "<API-KEY>",
12+
"model_id": "rerank-english-v3.0",
13+
},
14+
"task_settings": {"top_n": 10, "return_documents": True},
15+
},
16+
)
17+
print(resp)
18+
----

docs/examples/8cd00a3aba7c3c158277bc032aac2830.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// docs/bulk.asciidoc:612
1+
// docs/bulk.asciidoc:610
22

33
[source, python]
44
----

docs/examples/8e286a205a1f84f888a6d99f2620c80e.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// setup/logging-config.asciidoc:235
1+
// setup/logging-config.asciidoc:242
22

33
[source, python]
44
----

docs/examples/9a02bd47c000a3d9a8911233c37c890f.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// aggregations/bucket/datehistogram-aggregation.asciidoc:366
1+
// aggregations/bucket/datehistogram-aggregation.asciidoc:367
22

33
[source, python]
44
----

docs/examples/46884e00674f82e7a7bc8b418d1777de.asciidoc docs/examples/9a203aae3e1412d919546276fb52a5ca.asciidoc

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// inference/put-inference.asciidoc:252
1+
// inference/put-inference.asciidoc:335
22

33
[source, python]
44
----
@@ -9,10 +9,9 @@ resp = client.inference.put_model(
99
"service": "cohere",
1010
"service_settings": {
1111
"api_key": "<api_key>",
12-
"model": "embed-english-light-v3.0",
13-
"embedding_type": "int8",
12+
"model_id": "embed-english-light-v3.0",
13+
"embedding_type": "byte",
1414
},
15-
"task_settings": {},
1615
},
1716
)
1817
print(resp)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// inference/put-inference.asciidoc:513
2+
3+
[source, python]
4+
----
5+
resp = client.inference.put_model(
6+
task_type="text_embedding",
7+
inference_id="openai-embeddings",
8+
body={
9+
"service": "openai",
10+
"service_settings": {
11+
"api_key": "<api_key>",
12+
"model_id": "text-embedding-ada-002",
13+
},
14+
},
15+
)
16+
print(resp)
17+
----

docs/examples/a4a3c3cd09efa75168dab90105afb2e9.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// inference/get-inference.asciidoc:68
1+
// inference/get-inference.asciidoc:73
22

33
[source, python]
44
----

docs/examples/a84ffbaa4ffa68b22f6fe42d3b4f8dd5.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// aggregations/bucket/datehistogram-aggregation.asciidoc:588
1+
// aggregations/bucket/datehistogram-aggregation.asciidoc:589
22

33
[source, python]
44
----

docs/examples/ae9ccfaa146731ab9176df90670db1c2.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// docs/bulk.asciidoc:501
1+
// docs/bulk.asciidoc:499
22

33
[source, python]
44
----
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// inference/post-inference.asciidoc:102
2+
3+
[source, python]
4+
----
5+
resp = client.inference.inference(
6+
task_type="completion",
7+
inference_id="openai_chat_completions",
8+
body={"input": "What is Elastic?"},
9+
)
10+
print(resp)
11+
----

docs/examples/ba59a3b9a0a2694704b2bf9c6ad4a8cf.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// aggregations/bucket/datehistogram-aggregation.asciidoc:610
1+
// aggregations/bucket/datehistogram-aggregation.asciidoc:611
22

33
[source, python]
44
----

docs/examples/bfdad8a928ea30d7cf60d0a0a6bc6e2e.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// docs/bulk.asciidoc:713
1+
// docs/bulk.asciidoc:711
22

33
[source, python]
44
----

docs/examples/c0f4cbcb104747f38acdbc9a30bd13bf.asciidoc

-15
This file was deleted.

docs/examples/c9c396b94bb88098477e2b08b55a12ee.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// docs/bulk.asciidoc:766
1+
// docs/bulk.asciidoc:764
22

33
[source, python]
44
----

docs/examples/4ea91a3ff42de540bb4c9ef268d607a6.asciidoc docs/examples/cedb56a71cc743d80263ce352bb21720.asciidoc

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// inference/put-inference.asciidoc:301
1+
// inference/put-inference.asciidoc:406
22

33
[source, python]
44
----
@@ -8,7 +8,6 @@ resp = client.inference.put_model(
88
body={
99
"service": "elser",
1010
"service_settings": {"num_allocations": 1, "num_threads": 1},
11-
"task_settings": {},
1211
},
1312
)
1413
print(resp)

docs/examples/da3cecc36a7313385d32c7f52ccfb7e3.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// aggregations/bucket/datehistogram-aggregation.asciidoc:815
1+
// aggregations/bucket/datehistogram-aggregation.asciidoc:816
22

33
[source, python]
44
----

docs/examples/e6b972611c0ec8ab4c240f33f323d85b.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// aggregations/bucket/datehistogram-aggregation.asciidoc:417
1+
// aggregations/bucket/datehistogram-aggregation.asciidoc:418
22

33
[source, python]
44
----

docs/examples/ecc57597f6b791d1151ad79d9f4ce67b.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// aggregations/bucket/datehistogram-aggregation.asciidoc:642
1+
// aggregations/bucket/datehistogram-aggregation.asciidoc:643
22

33
[source, python]
44
----

docs/examples/eec051555c8050d017d3fe38ea59e3a0.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// search/search.asciidoc:956
1+
// search/search.asciidoc:907
22

33
[source, python]
44
----

docs/examples/eee6110831c08b9c1b3f56b24656e95b.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// inference/put-inference.asciidoc:341
1+
// inference/put-inference.asciidoc:445
22

33
[source, python]
44
----

docs/examples/ef779b87b3b0fb6e6bae9c8875e3a1cf.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// aggregations/bucket/datehistogram-aggregation.asciidoc:698
1+
// aggregations/bucket/datehistogram-aggregation.asciidoc:699
22

33
[source, python]
44
----
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// inference/post-inference.asciidoc:133
2+
3+
[source, python]
4+
----
5+
resp = client.inference.inference(
6+
task_type="rerank",
7+
inference_id="cohere_rerank",
8+
body={
9+
"input": ["luke", "like", "leia", "chewy", "r2d2", "star", "wars"],
10+
"query": "star wars main character",
11+
},
12+
)
13+
print(resp)
14+
----

docs/guide/release-notes.asciidoc

+9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[[release-notes]]
22
== Release notes
33

4+
* <<rn-8-13-1>>
45
* <<rn-8-13-0>>
56
* <<rn-8-12-1>>
67
* <<rn-8-12-0>>
@@ -36,6 +37,14 @@
3637
* <<rn-8-1-0>>
3738
* <<rn-8-0-0>>
3839

40+
[discrete]
41+
[[rn-8-13-1]]
42+
=== 8.13.1 (2024-05-03)
43+
44+
- Added ``force_synthetic_source`` to the Get API
45+
- Added ``wait_for_completion`` to the Create trained model API
46+
- Added ``typed_keys`` to the Query API key information API
47+
3948
[discrete]
4049
[[rn-8-13-0]]
4150
=== 8.13.0 (2024-03-22)

elasticsearch/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
# specific language governing permissions and limitations
1616
# under the License.
1717

18-
__versionstr__ = "8.13.0"
18+
__versionstr__ = "8.13.1"

0 commit comments

Comments
 (0)