This commit is contained in:
Saifeddine ALOUI 2025-02-06 22:15:39 +01:00
parent 25560934a3
commit 5d3f1a5436
3 changed files with 10 additions and 10 deletions

@ -1 +1 @@
Subproject commit c6a1d9b16e2297bce0e7344b095367a4c92398a0
Subproject commit 7bb21b6c7698802d82fedac4d23619c6fbca4fa4

View File

@ -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(

@ -1 +1 @@
Subproject commit fdee91e78429b87f8390f22417a14b06ef8a3580
Subproject commit 67a1f640f0d98ffc96d06fb156dcab90d8bec5c5