Testing / test_hate.py
Propvia's picture
adding tests
72724ba
raw
history blame contribute delete
342 Bytes
import requests
url = "https://Propvia-Testing.hf.space/hate"
payload = {"text": "You are a loser! I hate you!"}
response = requests.post(url, json=payload)
data = response.json()
print("Status:", response.status_code)
try:
print("JSON:", response.json())
except Exception:
print("Raw text:", response.text)
print(data['label'])