File size: 368 Bytes
072df7d
 
d9d6b2c
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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)