Replies: 1 comment
-
You can try artbot. It is the most uptodate personality and does contain the functionalities of painter as sub configuration. Painter is basically artbot if you deactivate imagination and continuous discussion. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
So I've got this running in a Docker container and the chat features seem to work well, but when I try to install the Painter personality, I receive the following error.
Git pull successful in /cache/shared/auto_sd
Service did not become available within the given time.
Personality file not found or is corrupted (/cache/personalities_zoo/english/art/painter).
Returned the following exception:[Errno 13] Permission denied: PosixPath('/cache/shared/auto_sd/lollms_webui.sh')
Please verify that the personality you have selected exists or select another personality. Some updates may lead to change in personality name or category, so check the personality selection in settings to be sure.
I'm brand new to Python and I've tried running the container in privileged mode but I think (and correct me if I'm misunderstanding this) I need to somehow elevate within the Python venv to get past this error?
It successfully installs all the Python packages prior to this, then when it fails the first time it retries installation and fails again, this time outputting a more detailed stack trace.
Couldn't load personality at /cache/personalities_zoo/english/art/painter
Traceback (most recent call last):
File "/src/lollms-webui/api/init.py", line 615, in rebuild_personalities
personality = AIPersonality(personality_path,
File "/src/lollms/lollms/personality.py", line 156, in init
self.load_personality(personality_package_path)
File "/src/lollms/lollms/personality.py", line 260, in load_personality
self._processor = module.Processor(self, callback=self.callback)
File "/cache/personalities_zoo/english/art/painter/scripts/processor.py", line 71, in init
super().init(
File "/src/lollms/lollms/personality.py", line 948, in init
self.install()
File "/cache/personalities_zoo/english/art/painter/scripts/processor.py", line 99, in install
self.prepare()
File "/cache/personalities_zoo/english/art/painter/scripts/processor.py", line 105, in prepare
self.sd = self.get_sd().LollmsSD(self.personality.lollms_paths, self.personality_config, max_retries=-1)
File "/cache/shared/auto_sd/lollms_sd.py", line 186, in init
subprocess.Popen(script_path, cwd=self.sd_folder)
File "/usr/lib/python3.10/subprocess.py", line 971, in init
self._execute_child(args, executable, preexec_fn, close_fds,
File "/usr/lib/python3.10/subprocess.py", line 1863, in _execute_child
raise child_exception_type(errno_num, err_msg, err_filename)
PermissionError: [Errno 13] Permission denied: PosixPath('/cache/shared/auto_sd/lollms_webui.sh')
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/src/lollms-webui/api/init.py", line 627, in rebuild_personalities
personality = AIPersonality(
File "/src/lollms/lollms/personality.py", line 156, in init
self.load_personality(personality_package_path)
File "/src/lollms/lollms/personality.py", line 260, in load_personality
self._processor = module.Processor(self, callback=self.callback)
File "/cache/personalities_zoo/english/art/painter/scripts/processor.py", line 71, in init
super().init(
File "/src/lollms/lollms/personality.py", line 948, in init
self.install()
File "/cache/personalities_zoo/english/art/painter/scripts/processor.py", line 99, in install
self.prepare()
File "/cache/personalities_zoo/english/art/painter/scripts/processor.py", line 105, in prepare
self.sd = self.get_sd().LollmsSD(self.personality.lollms_paths, self.personality_config, max_retries=-1)
File "/cache/shared/auto_sd/lollms_sd.py", line 186, in init
subprocess.Popen(script_path, cwd=self.sd_folder)
File "/usr/lib/python3.10/subprocess.py", line 971, in init
self._execute_child(args, executable, preexec_fn, close_fds,
File "/usr/lib/python3.10/subprocess.py", line 1863, in _execute_child
raise child_exception_type(errno_num, err_msg, err_filename)
PermissionError: [Errno 13] Permission denied: PosixPath('/cache/shared/auto_sd/lollms_webui.sh')
If anybody has suggestions for things I can try I'm all ears. I REALLY want to get SD running as part of lollms
Beta Was this translation helpful? Give feedback.
All reactions