Ship reliable, testable agents – not guesses. Better Agents adds simulations, evaluations, and standards on top of any framework. Explore Better Agents
import requests
url = "https://app.langwatch.ai/api/prompts/{id}"
headers = {"X-Auth-Token": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text){
"success": true
}Delete prompts programmatically using LangWatch to manage versioning and maintain clean evaluation pipelines.
import requests
url = "https://app.langwatch.ai/api/prompts/{id}"
headers = {"X-Auth-Token": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text){
"success": true
}Was this page helpful?