Update README.md
Browse files
README.md
CHANGED
@@ -2614,6 +2614,27 @@ model-index:
|
|
2614 |
|
2615 |
If you would like to finetune a model on more data, you can use this model as an initialization
|
2616 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2617 |
|
2618 |
## Training Details
|
2619 |
|
|
|
2614 |
|
2615 |
If you would like to finetune a model on more data, you can use this model as an initialization
|
2616 |
|
2617 |
+
## Hosted Inference API
|
2618 |
+
|
2619 |
+
The easiest way to get started with Nomic Embed is through the Nomic Embedding API.
|
2620 |
+
|
2621 |
+
Generating embeddings with the `nomic` Python client is as easy as
|
2622 |
+
|
2623 |
+
```python
|
2624 |
+
from nomic import embed
|
2625 |
+
|
2626 |
+
output = embed.text(
|
2627 |
+
texts=['Nomic Embedding API', '#keepAIOpen'],
|
2628 |
+
model='nomic-embed-text-v1',
|
2629 |
+
task_type='search_document'
|
2630 |
+
)
|
2631 |
+
|
2632 |
+
print(output)
|
2633 |
+
```
|
2634 |
+
|
2635 |
+
For more information, see the [API reference](https://docs.nomic.ai/reference/endpoints/nomic-embed-text)
|
2636 |
+
|
2637 |
+
|
2638 |
|
2639 |
## Training Details
|
2640 |
|