Spaces:
Running
Running
martintomov
commited on
Commit
β’
d60cac6
1
Parent(s):
a280fbf
setup readme
Browse files
README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
---
|
2 |
title: Comfy Anything
|
3 |
emoji: π
|
4 |
-
colorFrom:
|
5 |
colorTo: purple
|
6 |
sdk: gradio
|
7 |
sdk_version: 4.42.0
|
@@ -16,8 +16,29 @@ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-
|
|
16 |
|
17 |
Community ComfyUI workflows running on [fal.ai](https://fal.ai)
|
18 |
|
19 |
-
<img width="1012" alt="HFDEMO" src="https://i.imgur.com/
|
20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
## Workflows
|
22 |
Check them out here: [/workflows](https://github.com/martintmv-git/comfy-anything/tree/main/workflows)
|
23 |
|
@@ -31,4 +52,4 @@ Thanks to the ComfyUI, Gradio and diffusion model communities for providing the
|
|
31 |
|
32 |
## License
|
33 |
|
34 |
-
This project is licensed under the Apache-2.0 License.
|
|
|
1 |
---
|
2 |
title: Comfy Anything
|
3 |
emoji: π
|
4 |
+
colorFrom: yellow
|
5 |
colorTo: purple
|
6 |
sdk: gradio
|
7 |
sdk_version: 4.42.0
|
|
|
16 |
|
17 |
Community ComfyUI workflows running on [fal.ai](https://fal.ai)
|
18 |
|
19 |
+
<img width="1012" alt="HFDEMO" src="https://i.imgur.com/Pedfabs.jpeg">
|
20 |
+
|
21 |
+
## Hugging Face Space
|
22 |
+
[martintomov/comfy-anything](https://huggingface.co/spaces/martintomov/comfy-anything)
|
23 |
+
|
24 |
+
## Get Started Locally
|
25 |
+
1. Create a virtual env by your choice:
|
26 |
+
```bash
|
27 |
+
conda create --prefix ./env python=3.11
|
28 |
+
conda activate ./env
|
29 |
+
```
|
30 |
+
2. Install the requirements:
|
31 |
+
```bash
|
32 |
+
pip install -r requirements.txt
|
33 |
+
```
|
34 |
+
3. Set up your .env variables (fal.ai API):
|
35 |
+
```bash
|
36 |
+
FAL_KEY=xxxxxxxx
|
37 |
+
```
|
38 |
+
4. Run the app:
|
39 |
+
```bash
|
40 |
+
python app.py
|
41 |
+
```
|
42 |
## Workflows
|
43 |
Check them out here: [/workflows](https://github.com/martintmv-git/comfy-anything/tree/main/workflows)
|
44 |
|
|
|
52 |
|
53 |
## License
|
54 |
|
55 |
+
This project is licensed under the Apache-2.0 License.
|