Spaces:
Running
Running
File size: 705 Bytes
3a8bfcd a2b6d64 3a8bfcd a2b6d64 3a8bfcd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
import requests
# curl -G "https://<uname>-<spacename>.hf.space/predict" \
# --data-urlencode "image_url=https://qianwen-res.oss-cn-beijing.aliyuncs.com/Qwen-VL/assets/demo.jpeg" \
# --data-urlencode "prompt=Describe this image."
url = "https://danilohssantana-qwen2-5-vl-api.hf.space/predict"
# Define the parameters
params = {
"image_url": "https://cdn.britannica.com/35/238335-050-2CB2EB8A/Lionel-Messi-Argentina-Netherlands-World-Cup-Qatar-2022.jpg",
"prompt": "describe",
}
# Send the GET request
response = requests.get(url, params=params)
if response.status_code == 200:
print("Response:", response.json())
else:
print("Error:", response.status_code, response.text)
|