-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
feat: ComfyUI fallback + session fixes #1538
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
roseonlineownz-lab
wants to merge
31
commits into
moeru-ai:main
Choose a base branch
from
roseonlineownz-lab:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
996eb46
feat: Add Candy-style companion features
roseonlineownz-lab ecdf99c
feat: Add Candy-style character metadata and consumer pages
roseonlineownz-lab bf61307
feat: add nsfw companion runtime integration
roseonlineownz-lab b428bb6
feat: refine nsfw hermes chat routing
roseonlineownz-lab 046903f
feat: add nsfw image prompt contracts
roseonlineownz-lab 585e644
feat: add nsfw media queue and comfyui consumer
roseonlineownz-lab 8ae17a6
feat: add default comfyui workflow builder
roseonlineownz-lab cfc1091
chore: target local comfyui checkpoint
roseonlineownz-lab 9e2ad4a
feat: tune default pony workflow quality
roseonlineownz-lab 939a3cd
fix: polish nsfw image runtime status handling
roseonlineownz-lab 50b18b0
feat: add comfyui smoke test tuning
roseonlineownz-lab 5add5e3
docs: record sd turbo smoke test status
roseonlineownz-lab 620b9bd
fix: harden comfyui job timeouts
roseonlineownz-lab 706b509
feat: surface nsfw gallery job status
roseonlineownz-lab 171bae2
feat: poll nsfw gallery while jobs run
roseonlineownz-lab bc0cbcb
fix: harden nsfw comfy workflow fallback
roseonlineownz-lab 27c8bb0
fix: reconcile comfyui execution errors correctly
roseonlineownz-lab 2e2de38
feat: enrich comfy execution metadata
roseonlineownz-lab 6ffd7cb
feat: add comfyui fallback host support
roseonlineownz-lab c5ccd93
chore: add .env to gitignore
roseonlineownz-lab bacd366
feat: validate sd-turbo cpu fallback path
roseonlineownz-lab bd52ee0
fix: use process.on instead of named export for Node 22 compatibility
roseonlineownz-lab ffa3bf2
chore: sync fork with upstream moeru-ai/airi
roseonlineownz-lab 1591b2f
fix: update pnpm-lock.yaml for server-schema valibot dependency
roseonlineownz-lab 238373b
fix: resolve TypeScript errors from merge
roseonlineownz-lab cda2e99
fix: resolve more TypeScript issues in Hermes and Auth
roseonlineownz-lab ae8e5e1
fix: lint fixes and sync with upstream
roseonlineownz-lab 0f17c52
chore: add keystore files to .gitignore
roseonlineownz-lab a3c9d93
ci: fix invalid macos-26 runner to macos-14
roseonlineownz-lab 52f29d6
ci: upgrade pnpm/action-setup to v5 and skip free-disk-space on arm r…
roseonlineownz-lab 5ef02d1
fix: make OAuth credentials optional for AIRI server
roseonlineownz-lab File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| ALTER TABLE "characters" | ||
| ADD COLUMN "visibility" text DEFAULT 'private' NOT NULL; | ||
| --> statement-breakpoint | ||
| ALTER TABLE "characters" | ||
| ADD COLUMN "nsfw_enabled" boolean DEFAULT false NOT NULL; | ||
| --> statement-breakpoint | ||
| ALTER TABLE "characters" | ||
| ADD COLUMN "nsfw_level" text DEFAULT 'none' NOT NULL; | ||
| --> statement-breakpoint | ||
| ALTER TABLE "characters" | ||
| ADD COLUMN "relationship_mode" text DEFAULT 'companion' NOT NULL; | ||
| --> statement-breakpoint | ||
| ALTER TABLE "characters" | ||
| ADD COLUMN "persona_profile" jsonb DEFAULT '{}'::jsonb NOT NULL; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| ALTER TABLE "user" | ||
| ADD COLUMN "adult_verified" boolean DEFAULT false NOT NULL; | ||
|
|
||
| ALTER TABLE "user" | ||
| ADD COLUMN "allow_sensitive_content" boolean DEFAULT false NOT NULL; | ||
|
|
||
| ALTER TABLE "user" | ||
| ADD COLUMN "content_tier" text DEFAULT 'standard' NOT NULL; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| CREATE TABLE "image_jobs" ( | ||
| "id" text PRIMARY KEY NOT NULL, | ||
| "user_id" text NOT NULL, | ||
| "character_id" text NOT NULL, | ||
| "route" text NOT NULL, | ||
| "status" text DEFAULT 'queued' NOT NULL, | ||
| "prompt" text NOT NULL, | ||
| "negative_prompt" text NOT NULL, | ||
| "scene_type" text, | ||
| "tags" text[] DEFAULT '{}' NOT NULL, | ||
| "params" jsonb DEFAULT '{}'::jsonb NOT NULL, | ||
| "result_media_id" text, | ||
| "error_message" text, | ||
| "created_at" timestamp DEFAULT now() NOT NULL, | ||
| "updated_at" timestamp DEFAULT now() NOT NULL | ||
| ); | ||
|
|
||
| CREATE TABLE "gallery_items" ( | ||
| "id" text PRIMARY KEY NOT NULL, | ||
| "user_id" text NOT NULL, | ||
| "character_id" text NOT NULL, | ||
| "image_job_id" text, | ||
| "media_id" text, | ||
| "title" text, | ||
| "prompt" text NOT NULL, | ||
| "negative_prompt" text NOT NULL, | ||
| "scene_type" text, | ||
| "tags" text[] DEFAULT '{}' NOT NULL, | ||
| "created_at" timestamp DEFAULT now() NOT NULL, | ||
| "updated_at" timestamp DEFAULT now() NOT NULL | ||
| ); | ||
|
|
||
| ALTER TABLE "gallery_items" | ||
| ADD CONSTRAINT "gallery_items_image_job_id_image_jobs_id_fk" | ||
| FOREIGN KEY ("image_job_id") REFERENCES "public"."image_jobs"("id") | ||
| ON DELETE set null ON UPDATE no action; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The trailing
env:mapping after the last upload step is indented outside the step/job structure, which makes.github/workflows/release-tamagotchi.ymlinvalid YAML. With this parse error, GitHub Actions cannot load the workflow, so release runs fail before any build job starts.Useful? React with 👍 / 👎.