Spaces:
Build error
Build error
File size: 1,069 Bytes
f1f433f |
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 |
import json
from voicevox_engine.dev.core import mock as core
from voicevox_engine.dev.synthesis_engine.mock import MockSynthesisEngine
from voicevox_engine.setting import USER_SETTING_PATH, SettingLoader
if __name__ == "__main__":
import run
app = run.generate_app(
synthesis_engines={"mock": MockSynthesisEngine(speakers=core.metas())},
latest_core_version="mock",
setting_loader=SettingLoader(USER_SETTING_PATH),
)
with open("docs/api/index.html", "w") as f:
f.write(
"""<!DOCTYPE html>
<html lang="ja">
<head>
<title>voicevox_engine API Document</title>
<meta charset="utf-8">
<link rel="shortcut icon" href="https://voicevox.hiroshiba.jp/favicon-32x32.png">
</head>
<body>
<div id="redoc-container"></div>
<script src="https://cdn.jsdelivr.net/npm/redoc/bundles/redoc.standalone.js"></script>
<script>
Redoc.init(%s, {"hideHostname": true}, document.getElementById("redoc-container"));
</script>
</body>
</html>"""
% json.dumps(app.openapi())
)
|