mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2024-12-19 04:17:52 +00:00
bugfix in showing text
This commit is contained in:
parent
c47fb87267
commit
cf768e9201
29
app.py
29
app.py
@ -100,21 +100,22 @@ Start by welcoming the user then stop sending text.
|
|||||||
GPT4All:Welcome! I'm here to assist you with anything you need. What can I do for you today?"""
|
GPT4All:Welcome! I'm here to assist you with anything you need. What can I do for you today?"""
|
||||||
):
|
):
|
||||||
self.full_message += conditionning_message +"\n"
|
self.full_message += conditionning_message +"\n"
|
||||||
self.prepare_query(conditionning_message)
|
|
||||||
self.chatbot_bindings.generate(
|
|
||||||
conditionning_message,
|
|
||||||
new_text_callback=self.new_text_callback,
|
|
||||||
|
|
||||||
n_predict=len(conditionning_message),
|
# self.prepare_query(conditionning_message)
|
||||||
temp=self.args.temp,
|
# self.chatbot_bindings.generate(
|
||||||
top_k=self.args.top_k,
|
# conditionning_message,
|
||||||
top_p=self.args.top_p,
|
# new_text_callback=self.new_text_callback,
|
||||||
repeat_penalty=self.args.repeat_penalty,
|
|
||||||
repeat_last_n = self.args.repeat_last_n,
|
# n_predict=len(conditionning_message),
|
||||||
seed=self.args.seed,
|
# temp=self.args.temp,
|
||||||
n_threads=8
|
# top_k=self.args.top_k,
|
||||||
)
|
# top_p=self.args.top_p,
|
||||||
print(f"Bot said:{self.bot_says}")
|
# repeat_penalty=self.args.repeat_penalty,
|
||||||
|
# repeat_last_n = self.args.repeat_last_n,
|
||||||
|
# seed=self.args.seed,
|
||||||
|
# n_threads=8
|
||||||
|
# )
|
||||||
|
# print(f"Bot said:{self.bot_says}")
|
||||||
|
|
||||||
|
|
||||||
def prepare_query(self, message):
|
def prepare_query(self, message):
|
||||||
|
Loading…
Reference in New Issue
Block a user