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/annotations/{id}"
headers = {"X-Auth-Token": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text){
"status": "<string>",
"message": "<string>"
}Delete annotations as part of maintaining clean evaluation datasets and agent testing pipelines.
import requests
url = "https://app.langwatch.ai/api/annotations/{id}"
headers = {"X-Auth-Token": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text){
"status": "<string>",
"message": "<string>"
}Was this page helpful?