use auto by default for VISION_DETAIL

This commit is contained in:
gilcu3
2023-11-19 21:04:44 +01:00
parent 7fa2cdbcc4
commit 7329cd7fc5
2 changed files with 2 additions and 2 deletions

View File

@@ -54,7 +54,7 @@ def main():
'show_plugins_used': os.environ.get('SHOW_PLUGINS_USED', 'false').lower() == 'true',
'whisper_prompt': os.environ.get('WHISPER_PROMPT', ''),
'vision_prompt': os.environ.get('VISION_PROMPT', 'What is in this image'),
'vision_detail': os.environ.get('VISION_DETAIL', 'low'),
'vision_detail': os.environ.get('VISION_DETAIL', 'auto'),
'vision_max_tokens': int(os.environ.get('VISION_MAX_TOKENS', '300')),
'tts_model': os.environ.get('TTS_MODEL', 'tts-1'),
'tts_voice': os.environ.get('TTS_VOICE', 'alloy'),