mirror of
https://github.com/OpenHands/OpenHands.git
synced 2026-03-22 13:47:19 +08:00
Fix eval output path in case of @ char (#4416)
This commit is contained in:
@@ -152,7 +152,7 @@ def make_metadata(
|
||||
details: dict[str, Any] | None = None,
|
||||
) -> EvalMetadata:
|
||||
model_name = llm_config.model.split('/')[-1]
|
||||
model_path = model_name.replace(':', '_')
|
||||
model_path = model_name.replace(':', '_').replace('@', '-')
|
||||
eval_note = f'_N_{eval_note}' if eval_note else ''
|
||||
|
||||
eval_output_path = os.path.join(
|
||||
|
||||
Reference in New Issue
Block a user