Skip to content

Commit

Permalink
add images in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
doombeaker committed Jul 10, 2024
1 parent 2fd5e0f commit 304954b
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 3 deletions.
33 changes: 33 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# BizyAir

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.

![](./docs/docs/kolors/imgs/bizyair_kolors_img2img.png)

![](./docs/docs/getting-started/imgs/llm_api_node.png)

## Table of Contents

- [Features](#features)
- [Installation](#installation)
- [Usage](#usage)

## Features

Run ComfyUI anywhere, anytime, without worrying about the environment or hardware requirements.

## Installation

You can install BizyAir by downloading the BizyAir repository to the custom_nodes subdirectory of ComfyUI by using git clone.

```bash
cd /path/to/ComfyUI && \
git clone https://github.com/siliconflow/BizyAir.git
```

Then, restart ComfyUI. There are some workflow examples in the [examples](./examples) directory.


## Usage

Please see the [Quick Start](https://siliconflow.github.io/BizyAir/getting-started/quick-start.html) page to set up BizyAir.
6 changes: 3 additions & 3 deletions supernode.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ class GenerateLightningImage:
def INPUT_TYPES(s):
return {
"required": {
"prompt": ("STRING", {"multiline": True, "dynamicPrompts": True}),
"prompt": ("STRING", {"multiline": True, "dynamicPrompts": True, "default":"a dog"}),
"seed": ("INT", {"default": 1, "min": 0, "max": 0xFFFFFFFFFFFFFFFF}),
"width": ("INT", {"default": 1024, "min": 16, "max": 1024, "step": 8}),
"height": ("INT", {"default": 1024, "min": 16, "max": 1024, "step": 8}),
Expand Down Expand Up @@ -162,12 +162,12 @@ def generate_image(self, prompt, seed, width, height, cfg, batch_size):


NODE_CLASS_MAPPINGS = {
"BizyAirSuperResolution": SuperResolution,
#"BizyAirSuperResolution": SuperResolution,
"BizyAirRemoveBackground": RemoveBackground,
"BizyAirGenerateLightningImage": GenerateLightningImage,
}
NODE_DISPLAY_NAME_MAPPINGS = {
"BizyAirSuperResolution": "BizyAir Anime Image Super Resolution",
#"BizyAirSuperResolution": "BizyAir Anime Image Super Resolution",
"BizyAirRemoveBackground": "BizyAir Remove Background",
"BizyAirGenerateLightningImage": "BizyAir Generate Image",
}

0 comments on commit 304954b

Please sign in to comment.