Deployments APIs
Modify Deployment
PATCH
Authorizations
Headers
The deployment saved name. E.g. test-deployment-1
Example:
"test-deployment"
Body
application/json
Name of the deployment
Example:
"test-deployment"
Name of the saved model to use
Example:
"Test Model"
Response
200 - application/json
Successful Response
Example:
"Deployment details updated successfully"
Example:
{
"name": "test-deployment",
"model_saved_name": "Test Model",
"input_guardrails_policy": {
"additional_config": { "pii_redaction": true },
"block": [
"topic_detector",
"nsfw",
"toxicity",
"pii",
"injection_attack",
"keyword_detector",
"system_prompt",
"policy_violation",
"bias",
"copyright_ip"
],
"policy_name": "test-input",
"enabled": true
},
"output_guardrails_policy": {
"additional_config": {
"relevancy": false,
"hallucination": false,
"adherence": false
},
"block": [
"topic_detector",
"nsfw",
"toxicity",
"pii",
"injection_attack",
"keyword_detector",
"system_prompt",
"policy_violation",
"bias",
"copyright_ip",
"hallucination",
"adherence",
"relevancy"
],
"policy_name": "test-output",
"enabled": true
},
"updated_at": "2024-12-23T04:43:59.005032+00:00",
"deployment_id": 1234567890,
"created_at": "2024-12-23T04:43:59.005032+00:00"
}