Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 9,771 Bytes
e7abd9e e14240c e7abd9e e14240c e7abd9e 82cf5e8 e7abd9e |
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 |
# Backend - Open LLM Leaderboard π
FastAPI backend for the Open LLM Leaderboard. This service is part of a larger architecture that includes a React frontend. For complete project installation, see the [main README](../README.md).
## β¨ Features
- π REST API for LLM models leaderboard management
- π³οΈ Voting and ranking system
- π HuggingFace Hub integration
- π Caching and performance optimizations
## π Architecture
```mermaid
flowchart TD
Client(["**Frontend**<br><br>React Application"]) --> API["**API Server**<br><br>FastAPI REST Endpoints"]
subgraph Backend
API --> Core["**Core Layer**<br><br>β’ Middleware<br>β’ Cache<br>β’ Rate Limiting"]
Core --> Services["**Services Layer**<br><br>β’ Business Logic<br>β’ Data Processing"]
subgraph Services Layer
Services --> Models["**Model Service**<br><br>β’ Model Submission<br>β’ Evaluation Pipeline"]
Services --> Votes["**Vote Service**<br><br>β’ Vote Management<br>β’ Data Synchronization"]
Services --> Board["**Leaderboard Service**<br><br>β’ Rankings<br>β’ Performance Metrics"]
end
Models --> Cache["**Cache Layer**<br><br>β’ In-Memory Store<br>β’ Auto Invalidation"]
Votes --> Cache
Board --> Cache
Models --> HF["**HuggingFace Hub**<br><br>β’ Models Repository<br>β’ Datasets Access"]
Votes --> HF
Board --> HF
end
style Client fill:#f9f,stroke:#333,stroke-width:2px
style Models fill:#bbf,stroke:#333,stroke-width:2px
style Votes fill:#bbf,stroke:#333,stroke-width:2px
style Board fill:#bbf,stroke:#333,stroke-width:2px
style HF fill:#bfb,stroke:#333,stroke-width:2px
```
## π οΈ HuggingFace Datasets
The application uses several datasets on the HuggingFace Hub:
### 1. Requests Dataset (`{HF_ORGANIZATION}/requests`)
- **Operations**:
- π€ `POST /api/models/submit`: Adds a JSON file for each new model submission
- π₯ `GET /api/models/status`: Reads files to get models status
- **Format**: One JSON file per model with submission details
- **Updates**: On each new model submission
### 2. Votes Dataset (`{HF_ORGANIZATION}/votes`)
- **Operations**:
- π€ `POST /api/votes/{model_id}`: Adds a new vote
- π₯ `GET /api/votes/model/{provider}/{model}`: Reads model votes
- π₯ `GET /api/votes/user/{user_id}`: Reads user votes
- **Format**: JSONL with one vote per line
- **Sync**: Bidirectional between local cache and Hub
### 3. Contents Dataset (`{HF_ORGANIZATION}/contents`)
- **Operations**:
- π₯ `GET /api/leaderboard`: Reads raw data
- π₯ `GET /api/leaderboard/formatted`: Reads and formats data
- **Format**: Main dataset containing all scores and metrics
- **Updates**: Automatic after model evaluations
### 4. Official Providers Dataset (`{HF_ORGANIZATION}/official-providers`)
- **Operations**:
- π₯ Read-only access for highlighted models
- **Format**: List of models selected by maintainers
- **Updates**: Manual by maintainers
## π Local Development
### Prerequisites
- Python 3.9+
- [Poetry](https://python-poetry.org/docs/#installation)
### Standalone Installation (without Docker)
```bash
# Install dependencies
poetry install
# Setup configuration
cp .env.example .env
# Start development server
poetry run uvicorn app.asgi:app --host 0.0.0.0 --port 7860 --reload
```
Server will be available at http://localhost:7860
## βοΈ Configuration
| Variable | Description | Default |
| ------------ | ------------------------------------ | ----------- |
| ENVIRONMENT | Environment (development/production) | development |
| HF_TOKEN | HuggingFace authentication token | - |
| PORT | Server port | 7860 |
| LOG_LEVEL | Logging level (INFO/DEBUG/WARNING) | INFO |
| CORS_ORIGINS | Allowed CORS origins | ["*"] |
| CACHE_TTL | Cache Time To Live in seconds | 300 |
## π§ Middleware
The backend uses several middleware layers for optimal performance and security:
- **CORS Middleware**: Handles Cross-Origin Resource Sharing
- **GZIP Middleware**: Compresses responses > 500 bytes
- **Rate Limiting**: Prevents API abuse
- **Caching**: In-memory caching with automatic invalidation
## π Logging
The application uses a structured logging system with:
- Formatted console output
- Different log levels per component
- Request/Response logging
- Performance metrics
- Error tracking
## π File Structure
```
backend/
βββ app/ # Source code
β βββ api/ # Routes and endpoints
β β βββ endpoints/ # Endpoint handlers
β βββ core/ # Configurations
β βββ services/ # Business logic
β βββ utils/ # Utilities
βββ tests/ # Tests
```
## π API
Swagger documentation available at http://localhost:7860/docs
### Main Endpoints & Data Structures
#### Leaderboard
- `GET /api/leaderboard/formatted` - Formatted data with computed fields and metadata
```typescript
Response {
models: [{
id: string, // eval_name
model: {
name: string, // fullname
sha: string, // Model sha
precision: string, // e.g. "fp16", "int8"
type: string, // e.g. "fined-tuned-on-domain-specific-dataset"
weight_type: string,
architecture: string,
average_score: number,
has_chat_template: boolean
},
evaluations: {
ifeval: {
name: "IFEval",
value: number, // Raw score
normalized_score: number
},
bbh: {
name: "BBH",
value: number,
normalized_score: number
},
math: {
name: "MATH Level 5",
value: number,
normalized_score: number
},
gpqa: {
name: "GPQA",
value: number,
normalized_score: number
},
musr: {
name: "MUSR",
value: number,
normalized_score: number
},
mmlu_pro: {
name: "MMLU-PRO",
value: number,
normalized_score: number
}
},
features: {
is_not_available_on_hub: boolean,
is_merged: boolean,
is_moe: boolean,
is_flagged: boolean,
is_official_provider: boolean
},
metadata: {
upload_date: string,
submission_date: string,
generation: string,
base_model: string,
hub_license: string,
hub_hearts: number,
params_billions: number,
co2_cost: number // COβ cost in kg
}
}]
}
```
- `GET /api/leaderboard` - Raw data from the HuggingFace dataset
```typescript
Response {
models: [{
eval_name: string,
Precision: string,
Type: string,
"Weight type": string,
Architecture: string,
Model: string,
fullname: string,
"Model sha": string,
"Average β¬οΈ": number,
"Hub License": string,
"Hub β€οΈ": number,
"#Params (B)": number,
"Available on the hub": boolean,
Merged: boolean,
MoE: boolean,
Flagged: boolean,
"Chat Template": boolean,
"COβ cost (kg)": number,
"IFEval Raw": number,
IFEval: number,
"BBH Raw": number,
BBH: number,
"MATH Lvl 5 Raw": number,
"MATH Lvl 5": number,
"GPQA Raw": number,
GPQA: number,
"MUSR Raw": number,
MUSR: number,
"MMLU-PRO Raw": number,
"MMLU-PRO": number,
"Maintainer's Highlight": boolean,
"Upload To Hub Date": string,
"Submission Date": string,
Generation: string,
"Base Model": string
}]
}
```
#### Models
- `GET /api/models/status` - Get all models grouped by status
```typescript
Response {
pending: [{
name: string,
submitter: string,
revision: string,
wait_time: string,
submission_time: string,
status: "PENDING" | "EVALUATING" | "FINISHED",
precision: string
}],
evaluating: Array<Model>,
finished: Array<Model>
}
```
- `GET /api/models/pending` - Get pending models only
- `POST /api/models/submit` - Submit model
```typescript
Request {
user_id: string,
model_id: string,
base_model?: string,
precision?: string,
model_type: string
}
Response {
status: string,
message: string
}
```
- `GET /api/models/{model_id}/status` - Get model status
#### Votes
- `POST /api/votes/{model_id}` - Vote
```typescript
Request {
vote_type: "up" | "down",
user_id: string // HuggingFace username
}
Response {
success: boolean,
message: string
}
```
- `GET /api/votes/model/{provider}/{model}` - Get model votes
```typescript
Response {
total_votes: number,
up_votes: number,
down_votes: number
}
```
- `GET /api/votes/user/{user_id}` - Get user votes
```typescript
Response Array<{
model_id: string,
vote_type: string,
timestamp: string
}>
```
## π Authentication
The backend uses HuggingFace token-based authentication for secure API access. Make sure to:
1. Set your HF_TOKEN in the .env file
2. Include the token in API requests via Bearer authentication
3. Keep your token secure and never commit it to version control
## π Performance
The backend implements several optimizations:
- In-memory caching with configurable TTL (Time To Live)
- Batch processing for model evaluations
- Rate limiting for API endpoints
- Efficient database queries with proper indexing
- Automatic cache invalidation for votes
|