ThongCoding's picture
wdsa
d9d6b2c
raw
history blame
368 Bytes
import requests
url = "http://thongcoder-minecraft-ai-builder-backend.hf.space/prompt"
headers = {
"Content-Type": "application/json"
}
data = {
"prompt": "Design a small medieval gate using stone bricks and oak wood."
}
response = requests.post(url, headers=headers, json=data)
print("Status Code:", response.status_code)
print("Response:", response.text)