forked from benrugg/AI-Render
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
24 lines (23 loc) · 1.87 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
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_URL = "https://api.stability.ai/v1/generation/"
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"