feat(vlm): align default generation settings

Update default settings for both Prompt Enhance and VQA:
- max_tokens: 512 (prompt enhance)
- do_sample: True
- temperature: 0.8

These defaults provide better output quality with more creative
variation while maintaining coherent results.
This commit is contained in:
CalamitousFelicitousness
2026-01-11 21:16:30 +00:00
parent 0659759e90
commit e881faa2fb
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -159,9 +159,9 @@ class Options:
censored = ["i cannot", "i can't", "i am sorry", "against my programming", "i am not able", "i am unable", 'i am not allowed']
max_delim_index: int = 60
max_tokens: int = 50
max_tokens: int = 512
do_sample: bool = True
temperature: float = 0.15
temperature: float = 0.8
repetition_penalty: float = 1.2
thinking_mode: bool = False