Jerich commited on
Commit
c10c930
Β·
verified Β·
1 Parent(s): aef3d4f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +18 -9
README.md CHANGED
@@ -1,13 +1,22 @@
1
  ---
2
- title: Talklas Translator
3
- emoji: 🌍
4
- colorFrom: green
5
- colorTo: blue
6
  sdk: docker
7
- app_file: app.py
8
- pinned: false
9
- license: mit
10
  ---
11
 
12
- # Talklas Translator
13
- A speech-to-speech translation system for Philippine languages and English, built with MMS, Whisper, NLLB, and Gradio.
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ title: Minimal FastAPI Test
3
+ emoji: πŸš€
4
+ colorFrom: blue
5
+ colorTo: green
6
  sdk: docker
7
+ app_port: 8000
8
+ health_check_path: /health
 
9
  ---
10
 
11
+ # Minimal FastAPI Test
12
+
13
+ This is a minimal FastAPI app to test deployment on Hugging Face Spaces. It includes the following endpoints:
14
+
15
+ - `/`: Returns a simple health check response.
16
+ - `/health`: Health check endpoint for Hugging Face Spaces.
17
+ - `/ping`: Returns a "pong" message.
18
+ - `/echo`: Echoes back the text sent in a POST request.
19
+
20
+ ## Deployment
21
+
22
+ This app uses a `Dockerfile` to deploy a FastAPI app with Uvicorn. The health check path is set to `/health` to ensure Hugging Face Spaces can verify the app is running.