importrequestsresponse=requests.post(f"https://api.stability.ai/v2beta/stable-image/generate/ultra",headers={"authorization":f"sk-f2iOAkResIloOY3yE6xk2LlQbVrtQi3EczZDjA3n9ns7bmeR","accept":"image/*"},files={"none":''},data={"prompt":"A little cat is in a bedroom with a bed, TV, and sofa","output_format":"webp",},)ifresponse.status_code==200:withopen("./cat01.webp",'wb')asfile:file.write(response.content)else:raiseException(str(response.json()))