setting the temp to 0
Browse files
app.py
CHANGED
@@ -31,7 +31,7 @@ def respond(message, chat_history):
|
|
31 |
engine="text-davinci-003", # You can choose a different engine if needed
|
32 |
prompt=prompt,
|
33 |
max_tokens=300, # Adjust max_tokens as needed
|
34 |
-
temperature=0
|
35 |
)
|
36 |
|
37 |
# Extract and print the generated text
|
|
|
31 |
engine="text-davinci-003", # You can choose a different engine if needed
|
32 |
prompt=prompt,
|
33 |
max_tokens=300, # Adjust max_tokens as needed
|
34 |
+
temperature=0, # Adjust temperature as needed
|
35 |
)
|
36 |
|
37 |
# Extract and print the generated text
|