Skip to content

Commit b56472c

Browse files
committed
Full repo push
1 parent 10af4db commit b56472c

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
![Orpheus-FASTAPI Banner](https://lex-au.github.io/Orpheus-FastAPI/Banner.png)
2+
13
# Orpheus-FASTAPI
24

35
[![GitHub](https://img.shields.io/github/license/Lex-au/Orpheus-FastAPI)](https://github.com/Lex-au/Orpheus-FastAPI/blob/main/LICENSE.txt)
@@ -6,6 +8,18 @@ High-performance Text-to-Speech server with OpenAI-compatible API, 8 voices, emo
68

79
[GitHub Repository](https://github.com/Lex-au/Orpheus-FastAPI)
810

11+
## Voice Demos
12+
13+
Listen to sample outputs with different voices and emotions:
14+
- [Default Test Sample](https://lex-au.github.io/Orpheus-FastAPI/DefaultTest.mp3) - Standard neutral tone
15+
- [Leah Happy Sample](https://lex-au.github.io/Orpheus-FastAPI/LeahHappy.mp3) - Cheerful, upbeat demo
16+
- [Tara Sad Sample](https://lex-au.github.io/Orpheus-FastAPI/TaraSad.mp3) - Emotional, melancholic demo
17+
- [Zac Contemplative Sample](https://lex-au.github.io/Orpheus-FastAPI/ZacContemplative.mp3) - Thoughtful, measured tone
18+
19+
## User Interface
20+
21+
![Web User Interface](https://lex-au.github.io/Orpheus-FastAPI/WebUI.png)
22+
923
## Features
1024

1125
- **OpenAI API Compatible**: Drop-in replacement for OpenAI's `/v1/audio/speech` endpoint
@@ -86,10 +100,14 @@ Or with specific host/port:
86100
uvicorn app:app --host 0.0.0.0 --port 5005 --reload
87101
```
88102

103+
![Terminal Output](https://lex-au.github.io/Orpheus-FastAPI/terminal.png)
104+
89105
Access:
90106
- Web interface: http://localhost:5005/ (or http://127.0.0.1:5005/)
91107
- API documentation: http://localhost:5005/docs (or http://127.0.0.1:5005/docs)
92108

109+
![API Documentation](https://lex-au.github.io/Orpheus-FastAPI/docs.png)
110+
93111
## API Usage
94112

95113
### OpenAI-Compatible Endpoint

app.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Orpheus-FASTAPI by Lex-au
2+
# https://github.com/Lex-au/Orpheus-FastAPI
3+
# Description: Main FastAPI server for Orpheus Text-to-Speech
4+
15
import os
26
import time
37
from datetime import datetime

0 commit comments

Comments
 (0)