We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3211f41 commit 1ada940Copy full SHA for 1ada940
src/main.py
@@ -462,7 +462,23 @@ async def respond_with_llm_message(update):
462
json={
463
"prompt": prompt,
464
"n_predict": 1024,
465
- "temperature": 0.7,
+ "temperature": 0.8,
466
+ "top_k": 40,
467
+ "top_p": 0.95,
468
+ "min_p": 0.05,
469
+ "dynatemp_range": 0,
470
+ "dynatemp_exponent": 1,
471
+ "typical_p": 1,
472
+ "xtc_probability": 0,
473
+ "xtc_threshold": 0.1,
474
+ "repeat_last_n": 64,
475
+ "repeat_penalty": 1,
476
+ "presence_penalty": 0,
477
+ "frequency_penalty": 0,
478
+ "dry_multiplier": 0,
479
+ "dry_base": 1.75,
480
+ "dry_allowed_length": 2,
481
+ "dry_penalty_last_n": -1,
482
"stop": ["</s>", "User:", "Assistant:"],
483
},
484
) as response:
0 commit comments