File size: 410 Bytes
e58a657 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | import requests
response = requests.post(
"https://kaiozwald-BridgeIT.hf.space/generate-report",
json={
"tasks": [
{"task": "Build frontend using React"},
{"task": "Connect backend using FastAPI"},
{"task": "Use transformers to generate report sections"}
]
}
)
print("Status Code:", response.status_code)
print("Response Text:", response.text)
|