jewser

Results 2 comments of jewser

Any chance this gets merged for now?

For those interested, here is an minimal adaptation of @woheller69's workaround: ```python from llama_cpp import Llama import threading import sys # https://github.com/woheller69/LLAMA_TK_CHAT/blob/main/LLAMA_TK_GUI.py class thread_with_exception(threading.Thread): def __init__(self, name, callback): threading.Thread.__init__(self) self.name...