To submit a drawing task, you need to use the following POST request:
POST /prompt
Request parameters:
string
A task ID generated by the client to identify the task initiatorjson
JSON data containing drawing parameters{
"client_id": "unique_client_id",
"prompt": {
"width": 768,
"height": 512,
"text": "A beautiful landscape"
}
}
After submitting the task, you can receive real-time updates via WebSocket. Connect to the following address:
ws://<your_server>:<port>/ws?client_id=unique_client_id
Once connected, you will receive information about the task execution status, progress, etc.
Below is an example code using Python and WebSocket client library to submit a drawing request and receive results:
import websocket
import json
import uuid
server_address = "127.0.0.1:8188"
client_id = str(uuid.uuid4())
def queue_prompt(prompt):
p = {"client_id": client_id, "prompt": prompt}
data = json.dumps(p).encode('utf-8')
req = urllib.request.Request(f"http://{server_address}/prompt", data=data)
response = urllib.request.urlopen(req)
return json.loads(response.read())
def on_message(ws, message):
print(f"Received: {message}")
ws = websocket.WebSocketApp(f"ws://{server_address}/ws?client_id={client_id}",
on_message=on_message)
ws.run_forever()
# Submit drawing request
prompt_data = {
"width": 768,
"height": 512,
"text": "A beautiful landscape"
}
queue_prompt(prompt_data)