Update setup.py

#776-solved
This commit is contained in:
Chetan Pawar 2025-06-21 20:21:08 +05:30
parent 1c9573dc31
commit 5b2c04ed87
1 changed files with 1 additions and 1 deletions

View File

@ -336,7 +336,7 @@ def collect_llm_api_keys():
for i, model in enumerate(model_aliases['ANTHROPIC'], 1):
print(f"{Colors.CYAN}[{i}] {Colors.GREEN}{model}{Colors.ENDC}")
model_choice = input("Select default model (1-3) or press Enter for claude-3-7-sonnet: ").strip()
model_choice = input("Select default model (1-3) or press Enter for claude-3-7-sonnet ").strip()
if not model_choice or model_choice == '1':
model_info['default_model'] = 'anthropic/claude-3-7-sonnet-latest'
elif model_choice.isdigit() and 1 <= int(model_choice) <= len(model_aliases['ANTHROPIC']):