Spaces:
Runtime error
Runtime error
File size: 461 Bytes
46f5320 c10d55e 46f5320 c10d55e 46f5320 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import requests
request = requests.post(url=
'https://tangibleai-mathtext-fastapi.hf.space/sentiment-analysis',
json={"content": "I reject it"}).json()
print(request)
request = requests.post(url=
'https://tangibleai-mathtext-fastapi.hf.space/text2int',
json={"content": "seven thousand nine hundred fifty seven"}
).json()
print(request)
|