当前位置:   article > 正文

Stable Diffusion v3.0 api使用教程_stable diffusion api key

stable diffusion api key

Stable Diffusion v3.0 api使用教程

在这里插入图片描述

今天Stable Diffusion v3.0的api终于可以使用, 效果真的出奇的好.

我这里测试了下给予Python环境的调用, 效果也是非常的好.

第一步, 注册API Key

如果想使用Stable Diffusion v3.0的API, 就要先注册并生成一个秘钥, 网址如下:
https://platform.stability.ai/account/keys

在下面的界面中点击"Create API Key"按钮, 就会生成红色框中的API Key, 然后点击蓝色框中复制按钮, 就可以保存下来.
在这里插入图片描述

第二步, 运行代码

import requests

response = requests.post(
    f"https://api.stability.ai/v2beta/stable-image/generate/sd3",
    headers={
        "authorization": f"Bearer Your API Key",
        "accept": "image/*"
    },
    files={"none": ''},
    data={
        "prompt": "An blue ship with golden wings",
        "output_format": "jpeg",
    },
)

if response.status_code == 200:
    with open("./blue_ship_with_golden_wings.jpeg", 'wb') as file:
        file.write(response.content)
else:
    raise Exception(str(response.json()))


from PIL import Image

input_image = Image.open("./blue_ship_with_golden_wings.jpeg").convert("RGB")
display(input_image)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26

将上面的"Your API Key"替换为你刚才生成的, 然后自定义prompt字段就可以生成你的图像

我这里是在Jupyter环境下运行的, 所以直接可以看到如下效果.
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/490323
推荐阅读
相关标签
  

闽ICP备14008679号