Spaces:
Sleeping
Sleeping
| #!/usr/bin/env python3 | |
| """ | |
| Version information for TTS WebSocket Service | |
| Major version 1.0.0 - Standalone WebSocket-only service | |
| """ | |
| __version__ = "1.0.0" | |
| __build_date__ = "2025-08-25T04:30:00" | |
| __service__ = "TTS WebSocket Service" | |
| __description__ = "Standalone WebSocket-only Text-to-Speech service without Gradio or MCP dependencies" | |
| def get_version_info(): | |
| """Get complete version information""" | |
| return { | |
| "version": __version__, | |
| "service": __service__, | |
| "description": __description__, | |
| "build_date": __build_date__, | |
| "major_features": [ | |
| "WebSocket-only TTS interface", | |
| "ZeroGPU Bark TTS integration", | |
| "FastAPI-based architecture", | |
| "Multiple voice presets", | |
| "Streaming TTS support", | |
| "No Gradio dependencies", | |
| "No MCP dependencies", | |
| "Standalone deployment ready" | |
| ] | |
| } | |
| if __name__ == "__main__": | |
| import json | |
| print(json.dumps(get_version_info(), indent=2)) |