Spaces:
Running
Running
File size: 13,486 Bytes
f5ec497 |
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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 |
{% extends "base.html" %}
{% block title %}TTSFM API Documentation{% endblock %}
{% block extra_css %}
<style>
.code-block {
background-color: #f8f9fa;
border: 1px solid #e9ecef;
border-radius: 0.375rem;
padding: 1rem;
margin: 1rem 0;
overflow-x: auto;
}
.endpoint-card {
border-left: 4px solid #007bff;
margin-bottom: 2rem;
}
.method-badge {
font-size: 0.75rem;
padding: 0.25rem 0.5rem;
border-radius: 0.25rem;
font-weight: bold;
margin-right: 0.5rem;
}
.method-get { background-color: #28a745; color: white; }
.method-post { background-color: #007bff; color: white; }
.method-put { background-color: #ffc107; color: black; }
.method-delete { background-color: #dc3545; color: white; }
.response-example {
background-color: #f1f3f4;
border-radius: 0.375rem;
padding: 1rem;
margin-top: 1rem;
}
.toc {
position: sticky;
top: 2rem;
max-height: calc(100vh - 4rem);
overflow-y: auto;
}
.toc a {
color: #6c757d;
text-decoration: none;
display: block;
padding: 0.25rem 0;
border-left: 2px solid transparent;
padding-left: 1rem;
}
.toc a:hover, .toc a.active {
color: #007bff;
border-left-color: #007bff;
}
</style>
{% endblock %}
{% block content %}
<div class="container py-5">
<div class="row">
<div class="col-12 text-center mb-5">
<h1 class="display-4 fw-bold">
<i class="fas fa-book me-3"></i>API Documentation
</h1>
<p class="lead text-muted">
Complete reference for the TTSFM Text-to-Speech API
</p>
</div>
</div>
<div class="row">
<!-- Table of Contents -->
<div class="col-lg-3">
<div class="toc">
<h5 class="fw-bold mb-3">Contents</h5>
<a href="#overview">Overview</a>
<a href="#authentication">Authentication</a>
<a href="#text-validation">Text Validation</a>
<a href="#endpoints">API Endpoints</a>
<a href="#voices">Voices</a>
<a href="#formats">Audio Formats</a>
<a href="#generate">Generate Speech</a>
<a href="#batch">Batch Processing</a>
<a href="#status">Status & Health</a>
<a href="#errors">Error Handling</a>
<a href="#examples">Code Examples</a>
<a href="#python-package">Python Package</a>
</div>
</div>
<!-- Documentation Content -->
<div class="col-lg-9">
<!-- Overview -->
<section id="overview" class="mb-5">
<h2 class="fw-bold mb-3">Overview</h2>
<p>
The TTSFM API provides a modern, OpenAI-compatible interface for text-to-speech generation.
It supports multiple voices, audio formats, and includes advanced features like text length
validation and batch processing.
</p>
<div class="alert alert-info">
<i class="fas fa-info-circle me-2"></i>
<strong>Base URL:</strong> <code>{{ request.url_root }}api/</code>
</div>
<h4>Key Features</h4>
<ul>
<li>11 different voice options</li>
<li>Multiple audio formats (MP3, WAV, OPUS, etc.)</li>
<li>Text length validation (4096 character limit)</li>
<li>Automatic text splitting for long content</li>
<li>Batch processing capabilities</li>
<li>Real-time status monitoring</li>
</ul>
</section>
<!-- Authentication -->
<section id="authentication" class="mb-5">
<h2 class="fw-bold mb-3">Authentication</h2>
<p>
Currently, the API supports optional API key authentication. If configured,
include your API key in the request headers.
</p>
<div class="code-block">
<pre><code>Authorization: Bearer YOUR_API_KEY</code></pre>
</div>
</section>
<!-- Text Validation -->
<section id="text-validation" class="mb-5">
<h2 class="fw-bold mb-3">Text Length Validation</h2>
<p>
TTSFM includes built-in text length validation to ensure compatibility with TTS models.
The default maximum length is 4096 characters, but this can be customized.
</p>
<div class="alert alert-warning">
<i class="fas fa-exclamation-triangle me-2"></i>
<strong>Important:</strong> Text exceeding the maximum length will be rejected unless
validation is disabled or the text is split into chunks.
</div>
<h4>Validation Options</h4>
<ul>
<li><code>max_length</code>: Maximum allowed characters (default: 4096)</li>
<li><code>validate_length</code>: Enable/disable validation (default: true)</li>
<li><code>preserve_words</code>: Avoid splitting words when chunking (default: true)</li>
</ul>
</section>
<!-- API Endpoints -->
<section id="endpoints" class="mb-5">
<h2 class="fw-bold mb-3">API Endpoints</h2>
<!-- Voices Endpoint -->
<div class="card endpoint-card" id="voices">
<div class="card-body">
<h4 class="card-title">
<span class="method-badge method-get">GET</span>
/api/voices
</h4>
<p class="card-text">Get list of available voices.</p>
<h6>Response Example:</h6>
<div class="response-example">
<pre><code>{
"voices": [
{
"id": "alloy",
"name": "Alloy",
"description": "Alloy voice"
},
{
"id": "echo",
"name": "Echo",
"description": "Echo voice"
}
],
"count": 6
}</code></pre>
</div>
</div>
</div>
<!-- Formats Endpoint -->
<div class="card endpoint-card" id="formats">
<div class="card-body">
<h4 class="card-title">
<span class="method-badge method-get">GET</span>
/api/formats
</h4>
<p class="card-text">Get list of supported audio formats.</p>
<h6>Response Example:</h6>
<div class="response-example">
<pre><code>{
"formats": [
{
"id": "mp3",
"name": "MP3",
"mime_type": "audio/mp3",
"description": "MP3 audio format"
}
],
"count": 6
}</code></pre>
</div>
</div>
</div>
<!-- Text Validation Endpoint -->
<div class="card endpoint-card">
<div class="card-body">
<h4 class="card-title">
<span class="method-badge method-post">POST</span>
/api/validate-text
</h4>
<p class="card-text">Validate text length and get splitting suggestions.</p>
<h6>Request Body:</h6>
<div class="code-block">
<pre><code>{
"text": "Your text to validate",
"max_length": 4096
}</code></pre>
</div>
<h6>Response Example:</h6>
<div class="response-example">
<pre><code>{
"text_length": 5000,
"max_length": 4096,
"is_valid": false,
"needs_splitting": true,
"suggested_chunks": 2,
"chunk_preview": [
"First chunk preview...",
"Second chunk preview..."
]
}</code></pre>
</div>
</div>
</div>
<!-- Generate Speech Endpoint -->
<div class="card endpoint-card" id="generate">
<div class="card-body">
<h4 class="card-title">
<span class="method-badge method-post">POST</span>
/api/generate
</h4>
<p class="card-text">Generate speech from text.</p>
<h6>Request Body:</h6>
<div class="code-block">
<pre><code>{
"text": "Hello, world!",
"voice": "alloy",
"format": "mp3",
"instructions": "Speak cheerfully",
"max_length": 4096,
"validate_length": true
}</code></pre>
</div>
<h6>Parameters:</h6>
<ul>
<li><code>text</code> (required): Text to convert to speech</li>
<li><code>voice</code> (optional): Voice ID (default: "alloy")</li>
<li><code>format</code> (optional): Audio format (default: "mp3")</li>
<li><code>instructions</code> (optional): Voice modulation instructions</li>
<li><code>max_length</code> (optional): Maximum text length (default: 4096)</li>
<li><code>validate_length</code> (optional): Enable validation (default: true)</li>
</ul>
<h6>Response:</h6>
<p>Returns audio file with appropriate Content-Type header.</p>
</div>
</div>
<!-- Batch Processing Endpoint -->
<div class="card endpoint-card" id="batch">
<div class="card-body">
<h4 class="card-title">
<span class="method-badge method-post">POST</span>
/api/generate-batch
</h4>
<p class="card-text">Generate speech from long text by automatically splitting into chunks.</p>
<h6>Request Body:</h6>
<div class="code-block">
<pre><code>{
"text": "Very long text that exceeds the limit...",
"voice": "alloy",
"format": "mp3",
"max_length": 4096,
"preserve_words": true
}</code></pre>
</div>
<h6>Response Example:</h6>
<div class="response-example">
<pre><code>{
"total_chunks": 3,
"successful_chunks": 3,
"results": [
{
"chunk_index": 1,
"chunk_text": "First chunk text...",
"audio_data": "base64_encoded_audio",
"content_type": "audio/mp3",
"size": 12345,
"format": "mp3"
}
]
}</code></pre>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
{% endblock %}
{% block extra_js %}
<script>
// Smooth scrolling for TOC links
document.querySelectorAll('.toc a').forEach(link => {
link.addEventListener('click', function(e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({ behavior: 'smooth' });
// Update active link
document.querySelectorAll('.toc a').forEach(l => l.classList.remove('active'));
this.classList.add('active');
}
});
});
// Highlight current section in TOC
window.addEventListener('scroll', function() {
const sections = document.querySelectorAll('section[id]');
const scrollPos = window.scrollY + 100;
sections.forEach(section => {
const top = section.offsetTop;
const bottom = top + section.offsetHeight;
const id = section.getAttribute('id');
const link = document.querySelector(`.toc a[href="#${id}"]`);
if (scrollPos >= top && scrollPos < bottom) {
document.querySelectorAll('.toc a').forEach(l => l.classList.remove('active'));
if (link) link.classList.add('active');
}
});
});
</script>
{% endblock %}
|