fastwhisper/conf/config.json
2025-11-05 14:37:45 +08:00

43 lines
1.0 KiB
JSON

{
"filesroot":"$[workdir]$/files",
"logger":{
"name":"fastwhisper",
"levelname":"info",
"logfile":"$[workdir]$/logs/fastwhisper.log"
},
"website":{
"paths":[
["$[workdir]$/wwwroot",""]
],
"client_max_size":10000,
"host":"0.0.0.0",
"port":9925,
"coding":"utf-8",
"indexes":[
"index.html",
"index.dspy"
"index.ui"
],
"startswiths":[
{
"leading":"/idfile",
"registerfunction":"idfile"
},{
"leading": "/v1/transcribe",
"registerfunction": "transcribe"
},{
"leading": "/v1/status",
"registerfunction": "get_status"
}
],
"processors":[
[".tmpl","tmpl"],
[".app","app"],
[".ui","bui"],
[".dspy","dspy"]
],
"session_max_time":3000,
"session_issue_time":2500,
}
}