Spaces:
Running
Running
File size: 1,085 Bytes
da4afb2 1950d4b |
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 |
---
title: Rsvp Server
emoji: π
colorFrom: gray
colorTo: blue
sdk: docker
pinned: false
license: mit
---
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
# RSVP Server
A Flask API server that provides natural language processing capabilities for RSVP applications.
## Features
- POS (Part of Speech) tagging
- Named Entity Recognition
- Token grouping for RSVP reading
## Deployment on Hugging Face Spaces
This application is designed to be deployed on Hugging Face Spaces:
1. Create a new Space on Hugging Face
2. Choose "Docker" as the template
3. Upload all files to the repository
4. The Dockerfile will handle the setup and dependencies
5. The application will be deployed using Uvicorn, a high-performance ASGI server
## API Endpoints
### Health Check
```
GET /health
```
### POS Tagging
```
POST /pos-tag
Content-Type: application/json
{
"text": "Your text to analyze"
}
```
## Local Development
Build and run the Docker container:
```bash
docker build -t rsvp-server .
docker run -p 5000:5000 rsvp-server
```
|