Refactor return statement to simplify get_supported_llm_models method (#11947)

This commit is contained in:
Vasco Schiavo 2025-12-09 17:27:49 +01:00 committed by GitHub
parent e18168020a
commit df92923959
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -90,4 +90,4 @@ def get_supported_llm_models(config: OpenHandsConfig) -> list[str]:
]
model_list = clarifai_models + model_list
return list(sorted(set(model_list)))
return sorted(set(model_list))