Spaces:
Sleeping
Sleeping
File size: 5,450 Bytes
bceb236 65d1c55 bceb236 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 | # API Documentation
The Unified Embedding API provides an OpenAI-compatible interface for dense embeddings, sparse embeddings, and document reranking.
**Base URL**
```text
http://localhost:7860/api/v1
```
For Hugging Face Spaces:
```text
https://YOUR_SPACE.hf.space/api/v1
```
---
# Authentication
Authentication is not required by default.
When using the official OpenAI SDK, an API key is still required by the client but its value is ignored.
```python
client = OpenAI(
base_url="https://YOUR_SPACE.hf.space/api/v1",
api_key="not-required"
)
```
---
# Endpoints
| Method | Endpoint | Description |
| ------ | --------------- | ------------------------------- |
| POST | `/embeddings` | Generate dense embeddings |
| POST | `/embed_sparse` | Generate sparse embeddings |
| POST | `/rerank` | Rank documents based on a query |
| GET | `/models` | List available models |
| GET | `/health` | Health check |
---
# Dense Embeddings
Generate dense vector embeddings.
## Request
**POST**
```text
/api/v1/embeddings
```
### Body
```json
{
"input": [
"Machine learning",
"Artificial Intelligence"
],
"model": "qwen3-0.6b"
}
```
| Field | Type | Required | Description |
| --------------- | ----------------- | -------- | ---------------------------------- |
| input | string | string[] | Yes | Text or list of texts |
| model | string | Yes | Configured embedding model |
| encoding_format | string | No | Currently returns float embeddings |
---
## Response
```json
{
"object": "list",
"data": [
{
"object": "embedding",
"index": 0,
"embedding": [
0.124,
-0.554,
0.873
]
}
],
"model": "qwen3-0.6b",
"usage": {
"prompt_tokens": 2,
"total_tokens": 2
}
}
```
---
## Python (OpenAI SDK)
```python
from openai import OpenAI
client = OpenAI(
base_url="https://YOUR_SPACE.hf.space/api/v1",
api_key="not-required"
)
response = client.embeddings.create(
input="Large Language Models",
model="qwen3-0.6b"
)
embedding = response.data[0].embedding
```
---
## cURL
```bash
curl -X POST \
http://localhost:7860/api/v1/embeddings \
-H "Content-Type: application/json" \
-d '{
"input":"Large Language Models",
"model":"qwen3-0.6b"
}'
```
---
# Sparse Embeddings
Generate sparse embeddings (SPLADE).
## Request
```text
POST /api/v1/embed_sparse
```
### Body
```json
{
"input": [
"Hybrid Search"
],
"model": "splade"
}
```
---
## Response
```json
{
"object":"list",
"data":[
{
"index":0,
"indices":[
24,
91,
118
],
"values":[
0.87,
0.41,
0.29
]
}
]
}
```
---
# Document Reranking
Ranks retrieved documents according to their relevance to a query.
## Request
```text
POST /api/v1/rerank
```
### Body
```json
{
"query":"What is LangGraph?",
"documents":[
"LangGraph is an orchestration framework.",
"React is a frontend library.",
"FastAPI is a Python framework."
],
"model":"bge-reranker-base",
"top_k":2
}
```
| Field | Type | Required |
| --------- | -------- | -------- |
| query | string | Yes |
| documents | string[] | Yes |
| model | string | Yes |
| top_k | integer | No |
---
## Response
```json
{
"results":[
{
"index":0,
"score":0.992,
"text":"LangGraph is an orchestration framework."
},
{
"index":2,
"score":0.843,
"text":"FastAPI is a Python framework."
}
]
}
```
---
# Available Models
Returns every configured model.
## Request
```text
GET /api/v1/models
```
## Response
```json
{
"models":[
{
"id":"qwen3-0.6b",
"type":"embeddings"
},
{
"id":"splade",
"type":"sparse-embeddings"
},
{
"id":"bge-reranker-base",
"type":"rerank"
}
]
}
```
---
# Health Check
Check server status.
## Request
```text
GET /health
```
## Response
```json
{
"status":"healthy"
}
```
---
# Error Responses
The API follows standard HTTP status codes.
| Status | Description |
| ------ | --------------------- |
| 200 | Success |
| 400 | Invalid request |
| 404 | Resource not found |
| 422 | Validation error |
| 500 | Internal server error |
Example:
```json
{
"detail":"Model 'unknown-model' is not configured."
}
```
---
# Model Configuration
Available models are defined in:
```text
config/models.yaml
```
Example:
```yaml
models:
qwen3:
name: Qwen/Qwen3-Embedding-0.6B
type: embeddings
splade:
name: prithivida/Splade_PP_en_v1
type: sparse-embeddings
reranker:
name: BAAI/bge-reranker-base
type: rerank
```
Adding a new model only requires updating this configuration file. No application code changes are needed.
---
# OpenAI Compatibility
The `/embeddings` endpoint implements the OpenAI Embeddings API specification.
Migrating from OpenAI usually requires changing only the client configuration.
```python
client = OpenAI(
base_url="https://YOUR_SPACE.hf.space/api/v1",
api_key="not-required"
)
```
Your existing embedding requests can remain unchanged.
|