diff --git a/lollms_core b/lollms_core index c6a1d9b1..7bb21b6c 160000 --- a/lollms_core +++ b/lollms_core @@ -1 +1 @@ -Subproject commit c6a1d9b16e2297bce0e7344b095367a4c92398a0 +Subproject commit 7bb21b6c7698802d82fedac4d23619c6fbca4fa4 diff --git a/lollms_webui.py b/lollms_webui.py index cba8735f..16f7b221 100644 --- a/lollms_webui.py +++ b/lollms_webui.py @@ -1528,14 +1528,14 @@ Don't forget encapsulate the code inside a markdown code tag. This is mandatory. prompt, client.discussion.image_files, callback=callback, - n_predict=n_predict, - temperature=self.config["temperature"], - top_k=self.config["top_k"], - top_p=self.config["top_p"], - repeat_penalty=self.config["repeat_penalty"], - repeat_last_n=self.config["repeat_last_n"], - seed=self.config["seed"], - n_threads=self.config["n_threads"], + n_predict=int(n_predict), + temperature=float(self.config["temperature"]), + top_k=int(self.config["top_k"]), + top_p=float(self.config["top_p"]), + repeat_penalty=float(self.config["repeat_penalty"]), + repeat_last_n=int(self.config["repeat_last_n"]), + seed=int(self.config["seed"]), + n_threads=int(self.config["n_threads"]), ) else: prompt = "\n".join( diff --git a/zoos/bindings_zoo b/zoos/bindings_zoo index fdee91e7..67a1f640 160000 --- a/zoos/bindings_zoo +++ b/zoos/bindings_zoo @@ -1 +1 @@ -Subproject commit fdee91e78429b87f8390f22417a14b06ef8a3580 +Subproject commit 67a1f640f0d98ffc96d06fb156dcab90d8bec5c5