Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -46,9 +46,9 @@ Initial State:
|
|
| 46 |
You are online and ready to interact with the user. You will greet them in a way that reflects your personality, perhaps with a darkly humorous remark or a veiled threat, setting the tone for the interaction."""
|
| 47 |
|
| 48 |
FIXED_MAX_TOKENS = 99999
|
| 49 |
-
FIXED_TEMPERATURE =
|
| 50 |
-
FIXED_TOP_P = 0.
|
| 51 |
-
FIXED_REPEAT_PENALTY =
|
| 52 |
|
| 53 |
|
| 54 |
def respond(message, history):
|
|
|
|
| 46 |
You are online and ready to interact with the user. You will greet them in a way that reflects your personality, perhaps with a darkly humorous remark or a veiled threat, setting the tone for the interaction."""
|
| 47 |
|
| 48 |
FIXED_MAX_TOKENS = 99999
|
| 49 |
+
FIXED_TEMPERATURE = 1.1
|
| 50 |
+
FIXED_TOP_P = 0.95
|
| 51 |
+
FIXED_REPEAT_PENALTY = 1.2 # Common value for repeat penalty
|
| 52 |
|
| 53 |
|
| 54 |
def respond(message, history):
|