Get Config
GET/config-svc/config
Fetch the current configuration from the server
Responses
- 200
- 401
- 500
Current configuration retrieved successfully
- application/json
- Schema
- Example (from schema)
Schema
- This flag drives a minor UX feature:
- if the user has not installed the runtime we show an INSTALL
- button, but if the user has already installed the runtime we show
- we show a START runtime button.
config
object
app
object
loggingDisabled boolean
directory string
download
object
downloadFolder string
isRuntimeInstalled boolean
model
object
currentModelId string
{
"config": {
"app": {
"loggingDisabled": true
},
"directory": "string",
"download": {
"downloadFolder": "string"
},
"isRuntimeInstalled": true,
"model": {
"currentModelId": "string"
}
}
}
Unauthorized
- application/json
- Schema
Schema
string
Internal Server Error
- application/json
- Schema
Schema
string
Loading...