Spaces:
Sleeping
Sleeping
Upload README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# BGE-M3 Multilingual Embedding Server
|
| 2 |
|
| 3 |
A high-performance, robust, and production-ready embedding server utilizing the **BGE-M3** model. This server is designed to provide dense, multilingual embeddings with features like batch processing, automatic GPU/CPU detection, and strict security guards.
|
|
@@ -100,9 +109,9 @@ You can deploy the server easily using Docker and Docker Compose. This is the re
|
|
| 100 |
docker-compose up --build -d
|
| 101 |
```
|
| 102 |
|
| 103 |
-
This will start the server on the port defined in your `.env` (default `
|
| 104 |
# Note: After building the image if u want to run the image without code just use this command
|
| 105 |
-
# docker run -d --restart unless-stopped --name embed-server -p
|
| 106 |
# here vector-embedding-server-embed-server:latest is the image name which is build
|
| 107 |
# .env should have the Configuration specified in the .env.example file
|
| 108 |
|
|
@@ -134,7 +143,7 @@ The server logs will confirm if `cuda` is being used.
|
|
| 134 |
|
| 135 |
After building the image, run the container using:
|
| 136 |
```
|
| 137 |
-
docker run -d --restart unless-stopped --name embed-server -p
|
| 138 |
```
|
| 139 |
# Requirements
|
| 140 |
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: BGE-M3 Multilingual Embedding Server
|
| 3 |
+
emoji: 🚀
|
| 4 |
+
colorFrom: blue
|
| 5 |
+
colorTo: indigo
|
| 6 |
+
sdk: docker
|
| 7 |
+
pinned: false
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
# BGE-M3 Multilingual Embedding Server
|
| 11 |
|
| 12 |
A high-performance, robust, and production-ready embedding server utilizing the **BGE-M3** model. This server is designed to provide dense, multilingual embeddings with features like batch processing, automatic GPU/CPU detection, and strict security guards.
|
|
|
|
| 109 |
docker-compose up --build -d
|
| 110 |
```
|
| 111 |
|
| 112 |
+
This will start the server on the port defined in your `.env` (default `7860`).
|
| 113 |
# Note: After building the image if u want to run the image without code just use this command
|
| 114 |
+
# docker run -d --restart unless-stopped --name embed-server -p 7860:7860 --env-file .env vector-embedding-server-embed-server:latest
|
| 115 |
# here vector-embedding-server-embed-server:latest is the image name which is build
|
| 116 |
# .env should have the Configuration specified in the .env.example file
|
| 117 |
|
|
|
|
| 143 |
|
| 144 |
After building the image, run the container using:
|
| 145 |
```
|
| 146 |
+
docker run -d --restart unless-stopped --name embed-server -p 7860:7860 --env-file .env vector-embedding-server-embed-server:latest
|
| 147 |
```
|
| 148 |
# Requirements
|
| 149 |
|