mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2025-03-11 06:54:08 +00:00
Merge branch 'main' of https://github.com/ParisNeo/lollms-webui
This commit is contained in:
commit
b759eaa68b
@ -1038,7 +1038,12 @@ class LOLLMSWebUI(LOLLMSElfServer):
|
|||||||
ASCIIColors.info("Running workflow")
|
ASCIIColors.info("Running workflow")
|
||||||
try:
|
try:
|
||||||
self.personality.callback = callback
|
self.personality.callback = callback
|
||||||
self.personality.processor.run_workflow(prompt, full_prompt, callback, context_details,client=self.session.get_client(client_id))
|
client = self.session.get_client(client_id)
|
||||||
|
self.personality.vectorizer = client.discussion.vectorizer
|
||||||
|
self.personality.text_files = client.discussion.text_files
|
||||||
|
self.personality.image_files = client.discussion.image_files
|
||||||
|
self.personality.audio_files = client.discussion.audio_files
|
||||||
|
self.personality.processor.run_workflow(prompt, full_prompt, callback, context_details,client=client)
|
||||||
except Exception as ex:
|
except Exception as ex:
|
||||||
trace_exception(ex)
|
trace_exception(ex)
|
||||||
# Catch the exception and get the traceback as a list of strings
|
# Catch the exception and get the traceback as a list of strings
|
||||||
|
Loading…
x
Reference in New Issue
Block a user