Spaces:
Runtime error
Runtime error
File size: 257 Bytes
d994b45 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import requests
from pprint import pprint
response = requests.post(
"https://api.sapling.ai/api/v1/aidetect",
json={
"key": "60L9BPSVPIIOEZM0CD1DQWRBPJIUR7SB",
"text": "This is sample text."
}
)
pprint(response.json()['score']) |