File size: 10,264 Bytes
6242a59 |
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 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 |
import io
import json
import threading
from uuid import uuid4
from zipfile import ZipFile
from pathlib import Path
from typing import Optional
from gradio.routes import App
from PIL import Image
from fastapi.responses import StreamingResponse
from modules import shared, progress
from .db import TaskStatus, task_manager
from .models import (
Txt2ImgApiTaskArgs,
Img2ImgApiTaskArgs,
QueueTaskResponse,
QueueStatusResponse,
HistoryResponse,
TaskModel,
)
from .task_runner import TaskRunner
from .helpers import log
from .task_helpers import encode_image_to_base64, img2img_image_args_by_mode
def regsiter_apis(app: App, task_runner: TaskRunner):
log.info("[AgentScheduler] Registering APIs")
@app.post("/agent-scheduler/v1/queue/txt2img", response_model=QueueTaskResponse)
def queue_txt2img(body: Txt2ImgApiTaskArgs):
task_id = str(uuid4())
args = body.dict()
checkpoint = args.pop("checkpoint", None)
task_runner.register_api_task(
task_id,
api_task_id=None,
is_img2img=False,
args=args,
checkpoint=checkpoint,
)
task_runner.execute_pending_tasks_threading()
return QueueTaskResponse(task_id=task_id)
@app.post("/agent-scheduler/v1/queue/img2img", response_model=QueueTaskResponse)
def queue_img2img(body: Img2ImgApiTaskArgs):
task_id = str(uuid4())
args = body.dict()
checkpoint = args.pop("checkpoint", None)
task_runner.register_api_task(
task_id,
api_task_id=None,
is_img2img=True,
args=args,
checkpoint=checkpoint,
)
task_runner.execute_pending_tasks_threading()
return QueueTaskResponse(task_id=task_id)
def format_task_args(task):
task_args = TaskRunner.instance.parse_task_args(task, deserialization=False)
named_args = task_args.named_args
named_args["checkpoint"] = task_args.checkpoint
# remove unused args to reduce payload size
named_args.pop("alwayson_scripts", None)
named_args.pop("script_args", None)
named_args.pop("init_images", None)
for image_args in img2img_image_args_by_mode.values():
for keys in image_args:
named_args.pop(keys[0], None)
return named_args
@app.get("/agent-scheduler/v1/queue", response_model=QueueStatusResponse)
def queue_status_api(limit: int = 20, offset: int = 0):
current_task_id = progress.current_task
total_pending_tasks = task_manager.count_tasks(status="pending")
pending_tasks = task_manager.get_tasks(
status=TaskStatus.PENDING, limit=limit, offset=offset
)
parsed_tasks = []
for task in pending_tasks:
params = format_task_args(task)
task_data = task.dict()
task_data["params"] = params
if task.id == current_task_id:
task_data["status"] = "running"
parsed_tasks.append(TaskModel(**task_data))
return QueueStatusResponse(
current_task_id=current_task_id,
pending_tasks=parsed_tasks,
total_pending_tasks=total_pending_tasks,
paused=TaskRunner.instance.paused,
)
@app.get("/agent-scheduler/v1/history", response_model=HistoryResponse)
def history_api(status: str = None, limit: int = 20, offset: int = 0):
bookmarked = True if status == "bookmarked" else None
if not status or status == "all" or bookmarked:
status = [
TaskStatus.DONE,
TaskStatus.FAILED,
TaskStatus.INTERRUPTED,
]
total = task_manager.count_tasks(status=status)
tasks = task_manager.get_tasks(
status=status,
bookmarked=bookmarked,
limit=limit,
offset=offset,
order="desc",
)
parsed_tasks = []
for task in tasks:
params = format_task_args(task)
task_data = task.dict()
task_data["params"] = params
parsed_tasks.append(TaskModel(**task_data))
return HistoryResponse(
total=total,
tasks=parsed_tasks,
)
@app.post("/agent-scheduler/v1/run/{id}")
def run_task(id: str):
if progress.current_task is not None:
if progress.current_task == id:
return {"success": False, "message": "Task is running"}
else:
# move task up in queue
task_manager.prioritize_task(id, 0)
return {
"success": True,
"message": "Task is scheduled to run next",
}
else:
# run task
task = task_manager.get_task(id)
current_thread = threading.Thread(
target=TaskRunner.instance.execute_task,
args=(
task,
lambda: None,
),
)
current_thread.daemon = True
current_thread.start()
return {"success": True, "message": "Task is executing"}
@app.post("/agent-scheduler/v1/requeue/{id}")
def requeue_task(id: str):
task = task_manager.get_task(id)
if task is None:
return {"success": False, "message": "Task not found"}
task.id = str(uuid4())
task.result = None
task.status = TaskStatus.PENDING
task.bookmarked = False
task.name = f"Copy of {task.name}" if task.name else None
task_manager.add_task(task)
task_runner.execute_pending_tasks_threading()
return {"success": True, "message": "Task requeued"}
@app.post("/agent-scheduler/v1/delete/{id}")
def delete_task(id: str):
if progress.current_task == id:
shared.state.interrupt()
task_runner.interrupted = id
return {"success": True, "message": "Task interrupted"}
task_manager.delete_task(id)
return {"success": True, "message": "Task deleted"}
@app.post("/agent-scheduler/v1/move/{id}/{over_id}")
def move_task(id: str, over_id: str):
task = task_manager.get_task(id)
if task is None:
return {"success": False, "message": "Task not found"}
if over_id == "top":
task_manager.prioritize_task(id, 0)
return {"success": True, "message": "Task moved to top"}
elif over_id == "bottom":
task_manager.prioritize_task(id, -1)
return {"success": True, "message": "Task moved to bottom"}
else:
over_task = task_manager.get_task(over_id)
if over_task is None:
return {"success": False, "message": "Task not found"}
task_manager.prioritize_task(id, over_task.priority)
return {"success": True, "message": "Task moved"}
@app.post("/agent-scheduler/v1/bookmark/{id}")
def pin_task(id: str):
task = task_manager.get_task(id)
if task is None:
return {"success": False, "message": "Task not found"}
task.bookmarked = True
task_manager.update_task(id, bookmarked=True)
return {"success": True, "message": "Task bookmarked"}
@app.post("/agent-scheduler/v1/unbookmark/{id}")
def unpin_task(id: str):
task = task_manager.get_task(id)
if task is None:
return {"success": False, "message": "Task not found"}
task_manager.update_task(id, bookmarked=False)
return {"success": True, "message": "Task unbookmarked"}
@app.post("/agent-scheduler/v1/rename/{id}")
def rename_task(id: str, name: str):
task = task_manager.get_task(id)
if task is None:
return {"success": False, "message": "Task not found"}
task_manager.update_task(id, name=name)
return {"success": True, "message": "Task renamed."}
@app.get("/agent-scheduler/v1/results/{id}")
def get_task_results(id: str, zip: Optional[bool] = False):
task = task_manager.get_task(id)
if task is None:
return {"success": False, "message": "Task not found"}
if task.status != TaskStatus.DONE:
return {"success": False, "message": f"Task is {task.status.value}"}
if task.result is None:
return {"success": False, "message": "Task result is not available"}
result: dict = json.loads(task.result)
infotexts = result["infotexts"]
if zip:
zip_buffer = io.BytesIO()
# Create a new zip file in the in-memory buffer
with ZipFile(zip_buffer, "w") as zip_file:
# Loop through the files in the directory and add them to the zip file
for image in result["images"]:
if Path(image).is_file():
zip_file.write(Path(image), Path(image).name)
# Reset the buffer position to the beginning to avoid truncation issues
zip_buffer.seek(0)
# Return the in-memory buffer as a streaming response with the appropriate headers
return StreamingResponse(
zip_buffer,
media_type="application/zip",
headers={
"Content-Disposition": f"attachment; filename=results-{id}.zip"
},
)
else:
data = [
{
"image": encode_image_to_base64(Image.open(image)),
"infotext": infotexts[i],
}
for i, image in enumerate(result["images"])
if Path(image).is_file()
]
return {"success": True, "data": data}
@app.post("/agent-scheduler/v1/pause")
def pause_queue():
shared.opts.queue_paused = True
return {"success": True, "message": "Queue paused."}
@app.post("/agent-scheduler/v1/resume")
def resume_queue():
shared.opts.queue_paused = False
TaskRunner.instance.execute_pending_tasks_threading()
return {"success": True, "message": "Queue resumed."}
|