Spaces:
Running
Running
Update custom_utils.py
Browse files- custom_utils.py +2 -1
custom_utils.py
CHANGED
|
@@ -118,7 +118,8 @@ def invoke_llm(openai_api_key, content):
|
|
| 118 |
"role": "user",
|
| 119 |
"content": content
|
| 120 |
}
|
| 121 |
-
]
|
|
|
|
| 122 |
)
|
| 123 |
|
| 124 |
return completion.choices[0].message.content
|
|
|
|
| 118 |
"role": "user",
|
| 119 |
"content": content
|
| 120 |
}
|
| 121 |
+
],
|
| 122 |
+
temperature=0.0
|
| 123 |
)
|
| 124 |
|
| 125 |
return completion.choices[0].message.content
|