Instructions to use Comfy-Org/ace_step_1.5_ComfyUI_files with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusion Single File
How to use Comfy-Org/ace_step_1.5_ComfyUI_files with Diffusion Single File:
# No code snippets available yet for this library. # To use this model, check the repository files and the library's documentation. # Want to help? PRs adding snippets are welcome at: # https://github.com/huggingface/huggingface.js
- Notebooks
- Google Colab
- Kaggle
| import gradio as gr | |
| def greet(name): | |
| return f"Hello{name}" | |
| demo = gr.Interface( | |
| fn=greet, | |
| inputs="text", | |
| outputs="text" | |
| ) | |
| demo.launch() | |
| ) |