curl --request DELETE \
--url http://localhost:8080/api/v2/config/resources/language_models/{name}{
"success": true,
"message": "<string>"
}Remove a language model configuration.
Permanently removes the specified language model from the system. This removes both the cached instance and the configuration, so the model cannot be used until it is added again. The change is persisted to the configuration file.
This operation is useful for:
Returns 404 if the language model does not exist.
curl --request DELETE \
--url http://localhost:8080/api/v2/config/resources/language_models/{name}{
"success": true,
"message": "<string>"
}