mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2025-02-19 08:46:28 +00:00
done
This commit is contained in:
parent
25560934a3
commit
5d3f1a5436
@ -1 +1 @@
|
|||||||
Subproject commit c6a1d9b16e2297bce0e7344b095367a4c92398a0
|
Subproject commit 7bb21b6c7698802d82fedac4d23619c6fbca4fa4
|
@ -1528,14 +1528,14 @@ Don't forget encapsulate the code inside a markdown code tag. This is mandatory.
|
|||||||
prompt,
|
prompt,
|
||||||
client.discussion.image_files,
|
client.discussion.image_files,
|
||||||
callback=callback,
|
callback=callback,
|
||||||
n_predict=n_predict,
|
n_predict=int(n_predict),
|
||||||
temperature=self.config["temperature"],
|
temperature=float(self.config["temperature"]),
|
||||||
top_k=self.config["top_k"],
|
top_k=int(self.config["top_k"]),
|
||||||
top_p=self.config["top_p"],
|
top_p=float(self.config["top_p"]),
|
||||||
repeat_penalty=self.config["repeat_penalty"],
|
repeat_penalty=float(self.config["repeat_penalty"]),
|
||||||
repeat_last_n=self.config["repeat_last_n"],
|
repeat_last_n=int(self.config["repeat_last_n"]),
|
||||||
seed=self.config["seed"],
|
seed=int(self.config["seed"]),
|
||||||
n_threads=self.config["n_threads"],
|
n_threads=int(self.config["n_threads"]),
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
prompt = "\n".join(
|
prompt = "\n".join(
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit fdee91e78429b87f8390f22417a14b06ef8a3580
|
Subproject commit 67a1f640f0d98ffc96d06fb156dcab90d8bec5c5
|
Loading…
x
Reference in New Issue
Block a user