import requests
response = requests.post(
"https://api.星高算力/v1/images/generations",
headers={"Authorization": "Bearer YOUR_API_KEY"},
json={'model': 'dola-seedream-5-0-pro-260628',
'prompt': 'A minimal red circle centered on a white background',
'size': '1024x1024',
'n': 1},
)
print(response.json())