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/trace/{id}/unshare"
headers = {"X-Auth-Token": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text){
"message": "<string>"
}Delete public trace paths using LangWatch’s API to maintain control over evaluation and agent testing data.
import requests
url = "https://app.langwatch.ai/api/trace/{id}/unshare"
headers = {"X-Auth-Token": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text){
"message": "<string>"
}Was this page helpful?