forked from comfyanonymous/ComfyUI
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathbasic_api_example.py
160 lines (146 loc) · 5.83 KB
/
basic_api_example.py
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
# This sample shows how to execute a ComfyUI workflow, saving an image file to the location you specify.
# It does not require the server to be run. It runs ComfyUI embedded, as a library. No process is started.
#
# This script does not need to run within a ComfyUI directory. Instead, this can be used inside your own
# Python application or located elsewhere. It should **not** be in the Git repository directory.
#
# First, you will need to install ComfyUI. Follow the **Manual Install (Windows, Linux, macOS)** instructions in the
# README.md. If you are an experienced developer, instead run `pip install git+https://github.com/hiddenswitch/ComfyUI.git`
#
# Now you should develop your workflow. Start ComfyUI as normal; navigate to "Settings" in the menu, and check "Enable
# Dev mode Options". Then click "Save (API Format)". Copy and paste the contents of this file here:
_PROMPT_FROM_WEB_UI = {
"3": {
"class_type": "KSampler",
"inputs": {
"cfg": 8,
"denoise": 1,
"latent_image": [
"5",
0
],
"model": [
"4",
0
],
"negative": [
"7",
0
],
"positive": [
"6",
0
],
"sampler_name": "euler",
"scheduler": "normal",
"seed": 8566257,
"steps": 20
}
},
"4": {
"class_type": "CheckpointLoaderSimple",
"inputs": {
"ckpt_name": "v1-5-pruned-emaonly.safetensors"
}
},
"5": {
"class_type": "EmptyLatentImage",
"inputs": {
"batch_size": 1,
"height": 512,
"width": 512
}
},
"6": {
"class_type": "CLIPTextEncode",
"inputs": {
"clip": [
"4",
1
],
"text": "masterpiece best quality girl"
}
},
"7": {
"class_type": "CLIPTextEncode",
"inputs": {
"clip": [
"4",
1
],
"text": "bad hands"
}
},
"8": {
"class_type": "VAEDecode",
"inputs": {
"samples": [
"3",
0
],
"vae": [
"4",
2
]
}
},
"9": {
"class_type": "SaveImage",
"inputs": {
"filename_prefix": "ComfyUI",
"images": [
"8",
0
]
}
}
}
# Observe this is an ordinary dictionary. The JSON that was saved from the workflow is compatible with Python syntax.
#
# Now, QUIT AND CLOSE YOUR COMFYUI SERVER. You don't need it anymore. This script will handle starting and stopping
# the server for you. Actually, it will create an object that does the same thing that pressing Queue Prompt does.
#
# We'll now write the entrypoint of our script. This is an `async def main()` because async helps us start and stop the
# code object that will run your workflow, just like pressing the Queue Prompt button.
async def main():
import copy
# Let's make some changes to the prompt. First we'll change the input text:
prompt_dict = copy.deepcopy(_PROMPT_FROM_WEB_UI)
prompt_dict["6"]["inputs"]["text"] = "masterpiece best quality man"
# Let's set the seed for our KSampler node:
prompt_dict["3"]["inputs"]["seed"] = 5
# Now we will validate the prompt. This Prompt class contains everything we need to validate the prompt.
from comfy.api.components.schema.prompt import Prompt
prompt = Prompt.validate(prompt_dict)
# Your prompt is ready to be processed.
# You should **not** be running the ComfyUI application (the thing you start with /main.py). You don't need it. You
# are not making any HTTP requests, you are not running a server, you are not connecting to anything, you are not
# executing the main.py from the ComfyUI git repository, you don't even need that Git repository located anywhere.
from comfy.cli_args_types import Configuration
# Let's specify some settings. Suppose this is the structure of your directories:
# C:/Users/comfyanonymous/Documents/models
# C:/Users/comfyanonymous/Documents/models/checkpoints
# C:/Users/comfyanonymous/Documents/models/loras
# C:/Users/comfyanonymous/Documents/outputs
# Then your "current working directory" (`cwd`) should be set to "C:/Users/comfyanonymous/Documents":
# configuration.cwd = "C:/Users/comfyanonymous/Documents/"
# Or, if your models directory is located in the same directory as this script:
# configuration.cwd = os.path.dirname(__file__)
configuration = Configuration()
from comfy.client.embedded_comfy_client import EmbeddedComfyClient
async with EmbeddedComfyClient(configuration=configuration) as client:
# This will run your prompt
outputs = await client.queue_prompt(prompt)
# At this point, your prompt is finished and all the outputs, like saving images, have been completed.
# Now the outputs will contain the same thing that the Web UI expresses: a file path for each output.
# Let's find the node ID of the first SaveImage node. This will work when you change your workflow JSON from
# the example above.
save_image_node_id = next(key for key in prompt if prompt[key].class_type == "SaveImage")
# Now let's print the absolute path to the image.
print(outputs[save_image_node_id]["images"][0]["abs_path"])
# At this point, all the models have been unloaded from VRAM, and everything has been cleaned up.
# Now let's make this script runnable:
import asyncio
if __name__ == "__main__":
# Since our main function is async, it must be run as async too.
asyncio.run(main())