{"modelId":"stability.stable-diffusion-xl-v1","contentType":"application/json","accept":"application/json","body":"{\"text_prompts\":[{\"text\":\"this is where you place your input text\",\"weight\":1}],\"cfg_scale\":10,\"seed\":0,\"steps\":50,\"width\":512,\"height\":512}"}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
1
2
3
4
5
6
其中,body 的参数含义如下:
class="table-box">
参数
值
含义
作用
text_prompts
[{ "text": "this is where you place your input text", "weight": 1 }]
import json
import boto3
import base64
import os
from PIL import Image
import io
session = boto3.Session()
bedrock = session.client(service_name='bedrock-runtime')#creates a Bedrock client
bedrock_model_id ="stability.stable-diffusion-xl-v1"# set the foundation model
prompt ="a beautiful mountain landscape"# the prompt to send to the model
seed =10
body = json.dumps({"text_prompts":[{"text": prompt}],"seed": seed,"cfg_scale":10,"steps":30,})# build the request payload# send the payload to Bedrock
response = bedrock.invoke_model(
body=body, modelId=bedrock_model_id, accept='application/json', contentType='application/json')# read the response
response_body = json.loads(response.get('body').read())
base64_image_data = response_body.get("artifacts")[0]["base64"]print(f"{base64_image_data[0:80]}...")# Convert base64 image data to an image and save it to a file
image_data = base64.b64decode(base64_image_data)
os.makedirs("data", exist_ok=True)
image = Image.open(io.BytesIO(image_data))
image.save('data/sd_generated_image.jpg')
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}"> class="hide-preCode-box">
评论记录:
回复评论: