abbiepam commited on
Commit
a66f4da
·
1 Parent(s): bb29c35

Upload 2 files

Browse files
Files changed (2) hide show
  1. fishafk/-old-config.yaml +139 -0
  2. fishafk/ui.so +0 -0
fishafk/-old-config.yaml ADDED
@@ -0,0 +1,139 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ # very BIG NOTE that i need to put here
3
+ # this config will download everything inside a "userdata" folder
4
+ # "userdata" folder will have another folder called "models" and "ui"
5
+ # "models" will have your models downloaded to it
6
+ # "ui" will have some your webui element
7
+ # for "ui" it will be explained in the webui section
8
+ #
9
+ # if you don't understand how YAML BLOCK SEQUENCE work its recommended for you read some tutorial for it
10
+ #
11
+ # default template for most part
12
+ # - name: (file name.safetensors / file name.pt / file name.ckpt etc)
13
+ # url: (file url)
14
+ #
15
+ # you can copy the template as many as you want for example
16
+ # - name: model1.safetensors
17
+ # url: http://example.com/model1
18
+ # - name: model2.pt
19
+ # url: http://example.com/model2
20
+ #
21
+ common:
22
+ models:
23
+ - name: Babes_3.0_fp16.safetensors
24
+ url: https://huggingface.co/alexds9/Babes_3.0/resolve/main/Babes_3.0_fp16.safetensors
25
+ - name: Babes_XL_3.0.safetensors
26
+ url: https://huggingface.co/alexds9/Babes_XL_3.0/resolve/main/Babes_XL_3.0.safetensors
27
+ vae:
28
+ # - name:
29
+ # url:
30
+ lora:
31
+ # - name:
32
+ # url:
33
+ embeddings:
34
+ # - name:
35
+ # url:
36
+ hypernetwork:
37
+ # - name:
38
+ # url:
39
+ controlnet:
40
+ # - name:
41
+ # url:
42
+ sd:
43
+ # this is a section for stable diffusion webui
44
+ # "ui" folder will have this structure
45
+ #
46
+ # ui
47
+ # `-- sd
48
+ # |-- extensions
49
+ # | `-- .
50
+ # |-- models
51
+ # | `-- .
52
+ # |-- outputs
53
+ # | `-- .
54
+ # |-- scripts
55
+ # | `-- .
56
+ # |-- config.json
57
+ # `-- ui-config.json
58
+ #
59
+ # in case you want to add something to stable diffusion, e.g custom script
60
+ # put it here
61
+ #
62
+ # for models folder, only download here if its not covered in common section
63
+ # e.g sam model for segment anything extensions
64
+ # ---------------------------------------
65
+ #
66
+ # extensions use git to download
67
+ #
68
+ # git template
69
+ # - name: (folder name/repo name)
70
+ # url: (repo url)
71
+ # branch: (branch name OPTIONAL)
72
+ # commit: (commit hash OPTIONAL)
73
+ #
74
+ # example
75
+ # - name: extension1
76
+ # url: https://example.com/gituser/extension1
77
+ # - name: extension2
78
+ # url: https://example.com/gituser/extension2
79
+ # branch: dev
80
+ #
81
+ # branch and commit are optional
82
+ # if not present then will download the latest commit on the main branch
83
+ #
84
+ # oh yea controlnet will be installed whether you want it or not (even if you don't include it)
85
+ extensions:
86
+ - name: sd-webui-controlnet
87
+ url: https://github.com/Mikubill/sd-webui-controlnet
88
+ - name: stable-diffusion-webui-huggingface
89
+ url: https://github.com/camenduru/stable-diffusion-webui-huggingface
90
+ - name: OneButtonPrompt
91
+ url: https://github.com/AIrjen/OneButtonPrompt
92
+ - name: stable-diffusion-webui-model-toolkit
93
+ url: https://github.com/arenasys/stable-diffusion-webui-model-toolkit
94
+ - name: sdweb-merge-block-weighted-gui
95
+ url: https://github.com/bbc-mc/sdweb-merge-block-weighted-gui
96
+ - name: sd-webui-infinite-image-browsing
97
+ url: https://github.com/zanllp/sd-webui-infinite-image-browsing
98
+ - name: sd-webui-tunnels
99
+ url: https://github.com/Bing-su/sd-webui-tunnels
100
+ - name: StyleSelectorXL
101
+ url: https://github.com/ahgsql/StyleSelectorXL
102
+ - name: sd-webui-supermerger
103
+ url: https://github.com/hako-mikan/sd-webui-supermerger
104
+ #
105
+ # custom_download same as name url format but with dir
106
+ #
107
+ # example
108
+ # - dir: models/sam
109
+ # name: sam_model.pth
110
+ # url: https://example.com/sam_model.pth
111
+ #
112
+ # do remember, dir will always "ui" folder subdirectory
113
+ # so, with the example above it will download to ui/sd/models/sam/sam_model.pth
114
+ #
115
+ # if you happen to put absolute / full path e.g /root/somedir, it will download to a warning folder in "ui" folder
116
+ #
117
+ # this is useful when you want to download extra models but its not covered in common section
118
+ #
119
+ custom_download:
120
+ # - dir:
121
+ # name:
122
+ # url:
123
+ #
124
+ # env stand for Environment
125
+ # args stand for Arguments
126
+ # both env and args are using this template
127
+ # - (a text)
128
+ #
129
+ # for example
130
+ # - EXAMPLE_ENV=examplevalue
131
+ # - --example-arg examplevalue
132
+ #
133
+ # please see https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Command-Line-Arguments-and-Settings
134
+ # for more explain about what env and arg can be used
135
+ #
136
+ env:
137
+ - DEVICE_ID=0
138
+ args:
139
+ - --xformers --cloudflared --localhostrun --bore ----jprq "jprq auth iiOhfx7L1171Hc35iy1EAzkoyJP9zS2pvv9k"
fishafk/ui.so ADDED
Binary file (555 kB). View file