you know how i said it wouldnt work

changed temperature from 0.85 to 0.45
This commit is contained in:
Copper 2024-06-18 19:57:35 -07:00 committed by GitHub
parent 743652a726
commit 1351254cfc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -16,7 +16,7 @@ export class Mixtral {
let completion = await this.groq.chat.completions.create({ let completion = await this.groq.chat.completions.create({
"messages": messages, "messages": messages,
"model": this.model_name || "mixtral-8x7b-32768", "model": this.model_name || "mixtral-8x7b-32768",
"temperature": 0.85, "temperature": 0.45,
"max_tokens": 8192, "max_tokens": 8192,
"top_p": 1, "top_p": 1,
"stream": true, "stream": true,