-
Notifications
You must be signed in to change notification settings - Fork 85
/
config.py
51 lines (50 loc) · 2.04 KB
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package_name = "AI-Render"
default_prompt_text = "Describe anything you can imagine"
default_image_filename_template = "ai-render-{timestamp}-{prompt}"
filename_template_allowed_vars = [
"timestamp",
"prompt",
"width",
"height",
"seed",
"steps",
"image_similarity",
"sampler",
"negative_prompt",
]
tmp_path_subfolder = "ai-render-temp"
animated_prompts_text_name = "AI Render Animated Prompts"
ADDON_DOWNLOAD_URL = "https://blendermarket.com/products/ai-render"
STABILITY_API_V1_URL = "https://api.stability.ai/v1/generation/"
STABILITY_API_V2_URL = "https://api.stability.ai/v2beta/stable-image/"
DREAM_STUDIO_URL = "https://dreamstudio.ai/account"
STABLE_HORDE_API_URL_BASE = "https://stablehorde.net/api/v2"
STABLE_HORDE_URL = "https://stablehorde.net/"
VIDEO_TUTORIAL_URL = "https://www.youtube.com/watch?v=tmyln5bwnO8"
HELP_WITH_TIMEOUTS_URL = (
"https://github.com/benrugg/AI-Render/wiki/FAQ#%EF%B8%8F-ai-render-keeps-timing-out"
)
HELP_WITH_LOCAL_INSTALLATION_URL = (
"https://github.com/benrugg/AI-Render/wiki/Local-Installation"
)
HELP_WITH_AUTOMATIC1111_NOT_IN_API_MODE_URL = (
"https://github.com/benrugg/AI-Render/wiki/Local-Installation#troubleshooting"
)
HELP_WITH_AUTOMATIC1111_UPSCALING_URL = (
"https://github.com/benrugg/AI-Render/wiki/Upscaling#upscaling-with-automatic1111"
)
HELP_WITH_ANIMATED_PROMPTS_URL = (
"https://github.com/benrugg/AI-Render/wiki/Animation#animated-prompts"
)
HELP_WITH_NEGATIVE_PROMPTS_URL = (
"https://github.com/benrugg/AI-Render/wiki/Animation#negative-prompts"
)
HELP_WITH_CONTROLNET_URL = "https://github.com/benrugg/AI-Render/wiki/ControlNet"
ANIMATION_TIPS_URL = (
"https://github.com/benrugg/AI-Render/wiki/Animation#animation-tips"
)
CONTRIBUTING_URL = "https://github.com/benrugg/AI-Render/blob/main/CONTRIBUTING.md"
HELP_WITH_SHARK_INSTALLATION_URL = "https://github.com/AyaanShah2204/AI-Render/wiki/SHARK-by-nod.ai#running-shark-locally"
HELP_WITH_SHARK_TROUBLESHOOTING_URL = (
"https://github.com/AyaanShah2204/AI-Render/wiki/SHARK-by-nod.ai#troubleshooting"
)