Pavithiran commited on
Commit
2d38cde
·
verified ·
1 Parent(s): 1d8d969

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -3
README.md CHANGED
@@ -1,3 +1,17 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Sentence Embeddings Model
2
+
3
+ This model uses `SentenceTransformer` with the `all-MiniLM-L6-v2` pre-trained model to generate sentence embeddings.
4
+
5
+ ## API Endpoint
6
+
7
+ **POST** `/models/{model_id}`
8
+
9
+ ### Request Format
10
+
11
+ ```json
12
+ {
13
+ "inputs": {
14
+ "source_sentence": "string",
15
+ "sentences": ["string", "string", ...]
16
+ }
17
+ }