File size: 453 Bytes
907eb36
 
 
 
 
 
 
 
 
 
 
 
 
b2a0ae9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
title: Total Test
emoji: 🐢
colorFrom: red
colorTo: purple
sdk: gradio
sdk_version: 5.38.2
app_file: app.py
pinned: false





# ASR + LLM + TTS REST API

This is a simple RESTful API built with FastAPI.

## Endpoints

- `/asr/`: Upload a `.wav` file and get the transcription.
- `/llm/`: Send a prompt and get generated text.
- `/tts/`: Send text and get back audio path (WAV file).

## Run

```bash
pip install -r requirements.txt
python app.py
```