AttributeError: 'Chatbot' object has no attribute 'generate_response_stream'
I am getting this issue when using llm_hf. This issue could be solved by editing the class name as:
from .base import BaseChatbot
class Chatbot(BaseChatbot):
instead of
class Chatbot:
But there's a catch, the run function and post_process function is not implemented in llm_hf class. Hence, llm_hf is not useable with run_chat function.
Thanks for the issue. llm_hf has not been updated in a looong while. I'll fix this as soon as I get the chance. In the meantime see if you can make a custom chatbot for your use case, here is how to do so.
I'll give it a try.
Thanks for the issue. llm_hf has not been updated in a looong while. I'll fix this as soon as I get the chance. In the meantime see if you can make a custom chatbot for your use case, here is how to do so.
broken link
Thanks for the issue. llm_hf has not been updated in a looong while. I'll fix this as soon as I get the chance. In the meantime see if you can make a custom chatbot for your use case, here is how to do so.
broken link
Updated! https://www.finityalpha.com/OpenVoiceChat/Adding_models/