Dummy config.json to track downloads
Browse files- config.json +77 -0
config.json
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"app_config": {
|
| 3 |
+
"locale": {
|
| 4 |
+
"default": "zh_CN",
|
| 5 |
+
"description": "Locale settings for the application",
|
| 6 |
+
"label": "语言",
|
| 7 |
+
"type": "string"
|
| 8 |
+
},
|
| 9 |
+
"server_port": {
|
| 10 |
+
"default": 7860,
|
| 11 |
+
"description": "Port number for the application, -1 for auto select",
|
| 12 |
+
"label": "服务端口",
|
| 13 |
+
"type": "integer"
|
| 14 |
+
},
|
| 15 |
+
"server_name": {
|
| 16 |
+
"default": "0.0.0.0",
|
| 17 |
+
"description": "Host address for the application",
|
| 18 |
+
"label": "服务主机",
|
| 19 |
+
"type": "string",
|
| 20 |
+
"choices": ["127.0.0.1", "0.0.0.0"]
|
| 21 |
+
},
|
| 22 |
+
"inbrowser": {
|
| 23 |
+
"default": true,
|
| 24 |
+
"description": "Flag to indicate if the application is running in browser",
|
| 25 |
+
"label": "是否在浏览器中打开",
|
| 26 |
+
"type": "boolean"
|
| 27 |
+
},
|
| 28 |
+
"synthesizer": {
|
| 29 |
+
"default": "gsv_fast",
|
| 30 |
+
"description": "Synthesizer used by app.py, 'remote' for using TTS service running on a remote host",
|
| 31 |
+
"label": "Web UI 所采用的语音合成器",
|
| 32 |
+
"type": "string",
|
| 33 |
+
"choices": ["gsv_fast", "remote"]
|
| 34 |
+
},
|
| 35 |
+
"also_enable_api": {
|
| 36 |
+
"default": true,
|
| 37 |
+
"description": "Flag to indicate if API is enabled",
|
| 38 |
+
"label": "是否启用API",
|
| 39 |
+
"type": "boolean"
|
| 40 |
+
},
|
| 41 |
+
"max_text_length": {
|
| 42 |
+
"default": -1,
|
| 43 |
+
"description": "Maximum length of text to synthesize in Web UI",
|
| 44 |
+
"label": "Max Text Length",
|
| 45 |
+
"type": "integer"
|
| 46 |
+
},
|
| 47 |
+
"is_share": {
|
| 48 |
+
"default": false,
|
| 49 |
+
"description": "Flag to indicate if sharing is enabled",
|
| 50 |
+
"label": "是否分享",
|
| 51 |
+
"type": "boolean"
|
| 52 |
+
}
|
| 53 |
+
},
|
| 54 |
+
"pure_api_config": {
|
| 55 |
+
"tts_port": {
|
| 56 |
+
"default": 7860,
|
| 57 |
+
"description": "Port number for TTS service",
|
| 58 |
+
"label": "tts服务端口",
|
| 59 |
+
"type": "integer"
|
| 60 |
+
},
|
| 61 |
+
"tts_host": {
|
| 62 |
+
"default": "0.0.0.0",
|
| 63 |
+
"description": "Host address for TTS service",
|
| 64 |
+
"label": "tts主机端口",
|
| 65 |
+
"type": "string",
|
| 66 |
+
"choices": ["127.0.0.1", "0.0.0.0"]
|
| 67 |
+
},
|
| 68 |
+
"synthesizer": {
|
| 69 |
+
"default": "gsv_fast",
|
| 70 |
+
"description": "Synthesizer used by api.py",
|
| 71 |
+
"label": "api.py 所采用的语音合成器",
|
| 72 |
+
"type": "string",
|
| 73 |
+
"choices": ["gsv_fast"]
|
| 74 |
+
}
|
| 75 |
+
}
|
| 76 |
+
}
|
| 77 |
+
|