curl --request DELETE \
--url http://localhost:8080/api/v2/config/resources/embedders/{name}{
"success": true,
"message": "<string>"
}Remove an embedder configuration.
Permanently removes the specified embedder from the system. This removes both the cached instance and the configuration, so the embedder 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 embedder does not exist.
curl --request DELETE \
--url http://localhost:8080/api/v2/config/resources/embedders/{name}{
"success": true,
"message": "<string>"
}