Skip to content

Commit

Permalink
Remove deprecated nodes (#87)
Browse files Browse the repository at this point in the history
* update ci method & fix key page bug

* add joycaption node

* remove deprecated nodes

* refine

* refine

* refine

* refine

* fix the bug

* fix the cookies bug and add website alert

* remove outdated info
  • Loading branch information
doombeaker authored Aug 15, 2024
1 parent 1dc3c99 commit 4321973
Show file tree
Hide file tree
Showing 15 changed files with 8 additions and 1,221 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
- [2024/08/01] 🌩️ [BizyAir MinusZone Kolors](https://siliconflow.github.io/BizyAir/kolors/introduce.html) nodes have been released(thanks to [MinusZoneAI/ComfyUI-Kolors-MZ](https://github.com/MinusZoneAI/ComfyUI-Kolors-MZ)), and BizyAir now supports over 10 new base models. They all support ControlNet, LoRA, and IPAdapter. [BizyAir KSampler](https://siliconflow.github.io/BizyAir/ksampler/introduce.html)
- [2024/07/31] 🌩️ The super-resolution node has been released, capable of enlarging images four times their original size. [BizyAir Photorealistic Image Super Resolution](https://siliconflow.github.io/BizyAir/others/index.html#bizyair-photorealistic-image-super-resolution)
- [2024/07/25] 🌩️ Users can load BizyAir workflow examples directly by clicking the "☁️BizyAir Workflow Examples" button. [Example GIF](./docs/docs/getting-started/imgs/run-bizyair-examples.gif)
- [2024/07/23] 🌩️ [BizyAir ChatGLM3 Text Encode](./examples/bizyair_showcase_run_with_local_nodes.json) node is released.
- [2024/07/23] 🌩️ BizyAir ChatGLM3 Text Encode node is released.
- [2024/07/16] 🌩️ [BizyAir Controlnet Union SDXL 1.0](https://siliconflow.github.io/BizyAir/controlnet-union/introduce.html) node is released.
- [2024/07/14] 🌩️ We release Image Caption nodes and add a tutorial for utilizing the LLM node. [AI Assistant](https://siliconflow.github.io/BizyAir/ai-assistants/introduce.html)
- [2024/07/11] 🌩️ We release new nodes that can perform ControlNet preprocessing. [BizyAir Controlnet Auxiliary Preprocessors](https://siliconflow.github.io/BizyAir/controlnet-preprocessor/introduce.html)
- [2024/07/11] 🌩️ We release new nodes, featuring removing image background, photo-quality image generation, and animation super-resolution capabilities.
- [2024/07/10] 🌩️ We release nodes that support Kolors and LLM(large language models). [Kolors](https://siliconflow.github.io/BizyAir/kolors/introduce.html)
- [2024/07/10] 🌩️ We release nodes that support Kolors and LLM(large language models).

BizyAir is a collection of [ComfyUI](https://github.com/comfyanonymous/ComfyUI) nodes that help you overcome environmental and hardware limitations, allowing you to more easily generate high-quality content with ComfyUI.

Expand Down
9 changes: 0 additions & 9 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,6 @@

from . import auth

NODE_CLASS_MAPPINGS.update(**auth.NODE_CLASS_MAPPINGS)
NODE_DISPLAY_NAME_MAPPINGS.update(**auth.NODE_DISPLAY_NAME_MAPPINGS)


from . import supernode

NODE_CLASS_MAPPINGS.update(**supernode.NODE_CLASS_MAPPINGS)
Expand All @@ -35,11 +31,6 @@
NODE_CLASS_MAPPINGS.update(**nodes_controlnet_aux.NODE_CLASS_MAPPINGS)
NODE_DISPLAY_NAME_MAPPINGS.update(**nodes_controlnet_aux.NODE_DISPLAY_NAME_MAPPINGS)

from . import kolors

NODE_CLASS_MAPPINGS.update(**kolors.NODE_CLASS_MAPPINGS)
NODE_DISPLAY_NAME_MAPPINGS.update(**kolors.NODE_DISPLAY_NAME_MAPPINGS)


from . import nodes_controlnet_union_sdxl

Expand Down
31 changes: 0 additions & 31 deletions auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,34 +164,3 @@ async def get_api_key(request):
)
except Exception as e:
return web.Response(text="str(e)", status=500)


class SetAPIKey:
@classmethod
def INPUT_TYPES(s):
return {
"required": {
"API_KEY": ("STRING", {"default": "YOUR_API_KEY"}),
}
}

RETURN_TYPES = ()
FUNCTION = "set_api_key"

CATEGORY = "☁️BizyAir"
OUTPUT_NODE = True

def set_api_key(self, API_KEY="YOUR_API_KEY"):
return {"ui": {"api_key": (API_KEY,)}, "result": ()}

@classmethod
def IS_CHANGED(s, latent):
return uuid.uuid4().hex


NODE_CLASS_MAPPINGS = {
"BizyAirSetAPIKey": SetAPIKey,
}
NODE_DISPLAY_NAME_MAPPINGS = {
"BizyAirSetAPIKey": "☁️Set SiliconCloud API Key(deprecated)",
}
Binary file not shown.
Binary file removed docs/docs/ai-assistants/imgs/image-caption.png
Binary file not shown.
10 changes: 2 additions & 8 deletions docs/docs/ai-assistants/introduce.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,6 @@ This node offers five Large Langauge Models, including two completely free mode
You also have the freedom to set other system prompts for specific tasks.


## ☁️BizyAir Image Caption
## ☁️BizyAir Joy Caption

The ☁️BizyAir Image Caption node is a powerful tool designed to automatically generate descriptive captions for images.

![](./imgs/image-caption.png)

It is generally very useful in the workflow of redrawing images.

![](./imgs/image-caption-redraw.png)
The ☁️BizyAir Joy Caption node is a powerful tool designed to automatically generate descriptive captions for images, thanks to https://huggingface.co/spaces/fancyfeast/joy-caption-pre-alpha.
281 changes: 0 additions & 281 deletions examples/bizyair_kolors_img2img_workflow.json

This file was deleted.

Loading

0 comments on commit 4321973

Please sign in to comment.