Text_emotion / calling_script.py
tensorgirl's picture
Create calling_script.py
75a6600 verified
raw
history blame contribute delete
286 Bytes
import requests
import json
from pydantic import BaseModel
class Item(BaseModel):
text: str = "I miss you"
url = "https://tensorgirl-text-emotion.hf.space/classify/"
input_data = Item(text='I miss you')
response = requests.post(url, json = input_data.dict())
print(response.text)