add first-in-first-out queue for image prompts, and add pagination

This commit is contained in:
2022-08-31 15:45:06 -04:00
parent 559f6f959f
commit 7990246675
27 changed files with 236 additions and 143 deletions

View File

@@ -0,0 +1,10 @@
defmodule Diffuser.Repo.Migrations.AddStepsAndGuidanceScaleToPromptRequest do
use Ecto.Migration
def change do
alter table(:prompt_requests) do
add :steps, :integer
add :guidance_scale, :float
end
end
end