trashchenkov commited on
Commit
12d9788
·
verified ·
1 Parent(s): f295387

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -116,10 +116,13 @@ def infer(
116
  else:
117
  cn_image = Image.new("RGB", (width, height), (255, 255, 255))
118
 
 
 
 
 
119
  try:
120
  generator = torch.Generator(device=device).manual_seed(seed)
121
  # Вызываем пайплайн StableDiffusionControlNetPipeline.
122
- # Первый позиционный аргумент — prompt, второй — изображение для управления (control image).
123
  output = pipe(
124
  prompt=prompt,
125
  image=cn_image,
 
116
  else:
117
  cn_image = Image.new("RGB", (width, height), (255, 255, 255))
118
 
119
+ # Если включён IP‑adapter, проверяем, что изображение для него загружено.
120
+ if use_ip_adapter and ip_adapter_image is None:
121
+ raise gr.Error("IP-adapter включён, но изображение для него не загружено.")
122
+
123
  try:
124
  generator = torch.Generator(device=device).manual_seed(seed)
125
  # Вызываем пайплайн StableDiffusionControlNetPipeline.
 
126
  output = pipe(
127
  prompt=prompt,
128
  image=cn_image,