zpn commited on
Commit
ea3f22e
β€’
1 Parent(s): 17e0e05

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -0
README.md CHANGED
@@ -2616,6 +2616,25 @@ language:
2616
  | text-embedding-ada-002 | 8191 | 60.99 | 52.7 | 55.25 | ❌ | ❌ | ❌ |
2617
 
2618
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2619
 
2620
  ## Training Details
2621
 
 
2616
  | text-embedding-ada-002 | 8191 | 60.99 | 52.7 | 55.25 | ❌ | ❌ | ❌ |
2617
 
2618
 
2619
+ ## Hosted Inference API
2620
+
2621
+ The easiest way to get started with Nomic Embed is through the Nomic Embedding API.
2622
+
2623
+ Generating embeddings with the `nomic` Python client is as easy as
2624
+
2625
+ ```python
2626
+ from nomic import embed
2627
+
2628
+ output = embed.text(
2629
+ texts=['Nomic Embedding API', '#keepAIOpen'],
2630
+ model='nomic-embed-text-v1',
2631
+ task_type='search_document'
2632
+ )
2633
+
2634
+ print(output)
2635
+ ```
2636
+
2637
+ For more information, see the [API reference](https://docs.nomic.ai/reference/endpoints/nomic-embed-text)
2638
 
2639
  ## Training Details
2640