You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-12Lines changed: 9 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
# vector-embedding-api
2
-
Flask API server for generating text embeddings using OpenAI's "text-embedding-ada-002" model or the Sentence Transformers library.
2
+
Flask API server for generating text embeddings using [OpenAI's embedding model](https://platform.openai.com/docs/guides/embeddings) or the [SentenceTransformers](https://www.sbert.net/)library. SentenceTransformers supports over 500 models via [HuggingFace Hub](https://huggingface.co/sentence-transformers).
3
3
4
4
## Features 🎯
5
5
* POST endpoint access to text embedding models
@@ -9,11 +9,11 @@ Flask API server for generating text embeddings using OpenAI's "text-embedding-a
9
9
* Simple integration with other applications
10
10
11
11
### Installation 💻
12
-
To run this Flask server locally, follow the steps below:
12
+
To run this server locally, follow the steps below:
Before running the server, make sure you have obtained an API key from OpenAI to use their "text-embedding-ada-002" model. Additionally, you need to specify the Sentence Transformers model you want to use in the server.conf file.
32
+
Before running the server, make sure you have obtained an API key from OpenAI to use their model. You also need to set the SentenceTransformers model you want to use in the [server.conf](/server.conf) file.
0 commit comments