File size: 831 Bytes
17f1f54
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
title: SignBridge AI
emoji: 🤟
colorFrom: indigo
colorTo: blue
sdk: docker
pinned: false
---

# SignBridge AI: Live AI Sign Language Generation

This is the backend API for SignBridge, providing real-time text-to-sign skeletal animation generation.

## How to use

The API is built with FastAPI. You can interact with it via POST requests to `/translate`.

### Endpoint: `/translate`

**POST Request:**
```json
{
  "text": "today weather rain"
}
```

**Response:**
```json
{
  "skeletons": null,
  "video_url": "http://127.0.0.1:8000/static/gen_abc123.mp4",
  "text_processed": "today weather rain"
}
```

## Deployment Notes

- This space requires `best.ckpt` to be placed in the `weights/` directory before building.
- The model runs on CPU by default for stability in free-tier spaces.
- Uses FFmpeg for video processing.