Skip to content

Commit

Permalink
Strip the name of the models
Browse files Browse the repository at this point in the history
  • Loading branch information
JiseungHong committed Oct 30, 2024
1 parent ef6933c commit 2553b41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openhands_resolver/resolve_issues.py
Original file line number Diff line number Diff line change
Expand Up @@ -689,7 +689,7 @@ def main():
models = my_args.llm_models or os.environ["LLM_MODELS"]

if models:
model_names = models.split(",")
model_names = [model.strip() for model in models.split(",")]
else:
raise ValueError("No LLM models provided in either the arguments or environment variables.")

Expand Down

0 comments on commit 2553b41

Please sign in to comment.