-
Notifications
You must be signed in to change notification settings - Fork 11.3k
api-nodes: use new custom endpoint for Nano Banana #11311
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
Merged
Kosinkadink
merged 1 commit into
comfyanonymous:master
from
bigcat88:fix/api-nodes/gemini-image
Dec 23, 2025
Merged
api-nodes: use new custom endpoint for Nano Banana #11311
Kosinkadink
merged 1 commit into
comfyanonymous:master
from
bigcat88:fix/api-nodes/gemini-image
Dec 23, 2025
+16
−9
Conversation
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
2549498 to
96b5742
Compare
96b5742 to
bc83ec2
Compare
Kosinkadink
approved these changes
Dec 23, 2025
strint
added a commit
to siliconflow/ComfyUI
that referenced
this pull request
Jan 6, 2026
* Update workflow templates to v0.7.62 (comfyanonymous#11467) * Make denoised output on custom sampler nodes work with nested tensors. (comfyanonymous#11471) * api-nodes: use new custom endpoint for Nano Banana (comfyanonymous#11311) * chore: update workflow templates to v0.7.63 (comfyanonymous#11482) * ComfyUI v0.6.0 * Bump comfyui-frontend-package to 1.35.9 (comfyanonymous#11470) Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> * chore: update workflow templates to v0.7.64 (comfyanonymous#11496) * Add a ManualSigmas node. (comfyanonymous#11499) Can be used to manually set the sigmas for a model. This node accepts a list of integer and floating point numbers separated with any non numeric character. * Specify in readme that we only support pytorch 2.4 and up. (comfyanonymous#11512) * bump comfyui_manager version to the 4.0.4 (comfyanonymous#11521) * Fix noise with ancestral samplers when inferencing on cpu. (comfyanonymous#11528) * feat(api-nodes): add Kling Motion Control node (comfyanonymous#11493) * [V3] converted nodes_images.py to V3 schema (comfyanonymous#11206) * converted nodes_images.py to V3 schema * fix test * fix(api-nodes-gemini): always force enhance_prompt to be True (comfyanonymous#11503) * chore(api-nodes): switch to credits instead of $ (comfyanonymous#11489) * Enable async offload by default for AMD. (comfyanonymous#11534) * Comment out unused norm_final in lumina/z image model. (comfyanonymous#11545) * mm: discard async errors from pinning failures (comfyanonymous#10738) Pretty much every error cudaHostRegister can throw also queues the same error on the async GPU queue. This was fixed for repinning error case, but there is the bad mmap and just enomem cases that are harder to detect. Do some dummy GPU work to clean the error state. * Add some warnings for pin and unpin errors. (comfyanonymous#11561) * ResizeByLongerSide: support video (comfyanonymous#11555) (cherry picked from commit 98c6840aa4e5fd5407ba9ab113d209011e474bf6) * chore(api-nodes-bytedance): mark "seededit" as deprecated, adjust display name of Seedream (comfyanonymous#11490) * Add handling for vace_context in context windows (comfyanonymous#11386) Co-authored-by: ozbayb <17261091+ozbayb@users.noreply.github.com> * ComfyUI version v0.7.0 * Add support for sage attention 3 in comfyui, enable via new cli arg (comfyanonymous#11026) * Add support for sage attention 3 in comfyui, enable via new cli arg --use-sage-attiention3 * Fix some bugs found in PR review. The N dimension at which Sage Attention 3 takes effect is reduced to 1024 (although the improvement is not significant at this scale). * Remove the Sage Attention3 switch, but retain the attention function registration. * Fix a ruff check issue in attention.py * V3 Improvements + DynamicCombo + Autogrow exposed in public API (comfyanonymous#11345) * Support Combo outputs in a more sane way * Remove test validate_inputs function on test node * Make curr_prefix be a list of strings instead of string for easier parsing as keys get added to dynamic types * Start to account for id prefixes from frontend, need to fix bug with nested dynamics * Ensure inputs/outputs/hidden are lists in schema finalize function, remove no longer needed 'is not None' checks * Add raw_link and extra_dict to all relevant Inputs * Make nested DynamicCombos work properly with prefixed keys on latest frontend; breaks old Autogrow, but is pretty much ready for upcoming Autogrow keys * Replace ... usage with a MISSING sentinel for clarity in nodes_logic.py * Added CustomCombo node in backend to reflect frontend node * Prepare Autogrow's expand_schema_for_dynamic to work with upcoming frontend changes * Prepare for look up table for dynamic input stuff * More progress towards dynamic input lookup function stuff * Finished converting _expand_schema_for_dynamic to be done via lookup instead of OOP to guarantee working with process isolation, did refactoring to remove old implementation + cleaning INPUT_TYPES definition including v3 hidden definition * Change order of functions * Removed some unneeded functions after dynamic refactor * Make MatchType's output default displayname "MATCHTYPE" * Fix DynamicSlot get_all * Removed redundant code - dynamic stuff no longer happens in OOP way * Natively support AnyType (*) without __ne__ hacks * Remove stray code that made it in * Remove expand_schema_for_dynamic left over on DynamicInput class * get_dynamic() on DynamicInput/Output was not doing anything anymore, so removed it * Make validate_inputs validate combo input correctly * Temporarily comment out conversion to 'new' (9 month old) COMBO format in get_input_info * Remove refrences to resources feature scrapped from V3 * Expose DynamicCombo in public API * satisfy ruff after some code got commented out * Make missing input error prettier for dynamic types * Created a Switch2 node as a side-by-side test, will likely go with Switch2 as the initial switch node * Figured out Switch situation * Pass in v3_data in IsChangedCache.get function's fingerprint_inputs, add a from_v3_data helper method to HiddenHolder * Switch order of Switch and Soft Switch nodes in file * Temp test node for MatchType * Fix missing v3_data for v1 nodes in validation * For now, remove chacking duplicate id's for dynamic types * Add Resize Image/Mask node that thanks to MatchType+DynamicCombo is 16-nodes-in-1 * Made DynamicCombo references in DCTestNode use public interface * Add an AnyTypeTestNode * Make lazy status for specific inputs on DynamicInputs work by having the values of the dictionary for check_lazy_status be a tuple, where the second element is the key of the input that can be returned * Comment out test logic nodes * Make primitive float's step make more sense * Add (and leave commented out) some potential logic nodes * Change default crop option to "center" on Resize Image/Mask node * Changed copy.copy(d) to d.copy() * Autogrow is available in stable frontend, so exposing it in public API * Use outputs id as display_name if no display_name present, remove v3 outputs id restriction that made them have to have unique IDs from the inputs * Enable Custom Combo node as stable frontend now supports it * Make id properly act like display_name on outputs * Add Batch Images/Masks/Latents node * Comment out Batch Images/Masks/Latents node for now, as Autogrow has a bug with MatchType where top connection is disconnected upon refresh * Removed code for a couple test nodes in nodes_logic.py * Add Batch Images, Batch Masks, and Batch Latents nodes with Autogrow, deprecate old Batch Images + LatentBatch nodes * fix(api-nodes-vidu): preserve percent-encoding for signed URLs (comfyanonymous#11564) * chore: update workflow templates to v0.7.65 (comfyanonymous#11579) * Refactor: move clip_preprocess to comfy.clip_model (comfyanonymous#11586) * Remove duplicate import of model_management (comfyanonymous#11587) * New Year ruff cleanup. (comfyanonymous#11595) * Ignore all frames except the first one for MPO format. (comfyanonymous#11569) * Give Mahiro CFG a more appropriate display name (comfyanonymous#11580) * Tripo3D: pass face_limit parameter only when it differs from default (comfyanonymous#11601) * Remove leftover scaled_fp8 key. (comfyanonymous#11603) * Print memory summary on OOM to help with debugging. (comfyanonymous#11613) * feat(api-nodes): add support for 720p resolution for Kling Omni nodes (comfyanonymous#11604) * Fix case where upscale model wouldn't be moved to cpu. (comfyanonymous#11633) * Support the LTXV 2 model. (comfyanonymous#11632) * Add LTXAVTextEncoderLoader node. (comfyanonymous#11634) * Refactor module_size function. (comfyanonymous#11637) * Fix name. (comfyanonymous#11638) --------- Co-authored-by: ComfyUI Wiki <contact@comfyui-wiki.com> Co-authored-by: comfyanonymous <121283862+comfyanonymous@users.noreply.github.com> Co-authored-by: Alexander Piskun <13381981+bigcat88@users.noreply.github.com> Co-authored-by: comfyanonymous <comfyanonymous@protonmail.com> Co-authored-by: Comfy Org PR Bot <snomiao+comfy-pr@gmail.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Dr.Lt.Data <128333288+ltdrdata@users.noreply.github.com> Co-authored-by: rattus <46076784+rattus128@users.noreply.github.com> Co-authored-by: Tavi Halperin <tavi@lightricks.com> Co-authored-by: drozbay <17261091+drozbay@users.noreply.github.com> Co-authored-by: ozbayb <17261091+ozbayb@users.noreply.github.com> Co-authored-by: mengqin <mengqin@gmail.com> Co-authored-by: Jedrzej Kosinski <kosinkadink1@gmail.com> Co-authored-by: throttlekitty <throttlekitty@gmail.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This custom endpoint will return a URL for the generated image result instead of encoded base64 data. This prevents receiving only half the reply and makes the node much more stable when the reply is large (30+MB).
API Node PR Checklist
Scope
Pricing & Billing
If Need pricing update:
QA
Comms