from requests import post
url = "https://api.keywordsai.co/api/run-evaluations/"
body = {
"evals_to_run": ["Conciseness"], # replace this with the name of your own eval
"evaluation_identifier":"test_eval"
}
api_key = "YOUR_API_KEY"
headers = {
"Authorization": f"Bearer {api_key}",
}
response = post(url, json=body, headers=headers)
print(response.json())