hanxiao commited on
Commit
583f9d8
·
verified ·
1 Parent(s): eaf97ea

add Elastic Inference Service usage

Browse files
Files changed (1) hide show
  1. README.md +20 -0
README.md CHANGED
@@ -83,6 +83,26 @@ The following Python packages are required:
83
 
84
  </details>
85
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
  <details>
87
  <summary>via <a href="https://sbert.net/">sentence-transformers</a></summary>
88
 
 
83
 
84
  </details>
85
 
86
+ <details open>
87
+ <summary>via <a href="https://www.elastic.co/docs/explore-analyze/elastic-inference/eis">Elastic Inference Service</a></summary>
88
+
89
+ The fastest way to use v5-text in production. Elastic Inference Service (EIS) provides managed embedding inference with built-in scaling, so you can generate embeddings directly within your Elastic deployment.
90
+
91
+ ```bash
92
+ PUT _inference/text_embedding/jina-v5
93
+ {
94
+ "service": "elastic",
95
+ "service_settings": {
96
+ "model_id": "jina-embeddings-v5-text-small"
97
+ }
98
+ }
99
+ ```
100
+
101
+ See the [Elastic Inference Service documentation](https://www.elastic.co/docs/explore-analyze/elastic-inference/eis) for setup details.
102
+
103
+ </details>
104
+
105
+
106
  <details>
107
  <summary>via <a href="https://sbert.net/">sentence-transformers</a></summary>
108