mirror of https://github.com/kortix-ai/suna.git
parent
1c9573dc31
commit
5b2c04ed87
2
setup.py
2
setup.py
|
@ -336,7 +336,7 @@ def collect_llm_api_keys():
|
||||||
for i, model in enumerate(model_aliases['ANTHROPIC'], 1):
|
for i, model in enumerate(model_aliases['ANTHROPIC'], 1):
|
||||||
print(f"{Colors.CYAN}[{i}] {Colors.GREEN}{model}{Colors.ENDC}")
|
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':
|
if not model_choice or model_choice == '1':
|
||||||
model_info['default_model'] = 'anthropic/claude-3-7-sonnet-latest'
|
model_info['default_model'] = 'anthropic/claude-3-7-sonnet-latest'
|
||||||
elif model_choice.isdigit() and 1 <= int(model_choice) <= len(model_aliases['ANTHROPIC']):
|
elif model_choice.isdigit() and 1 <= int(model_choice) <= len(model_aliases['ANTHROPIC']):
|
||||||
|
|
Loading…
Reference in New Issue