We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0f7250 commit 5a97168Copy full SHA for 5a97168
src/webapp/routers/models.py
@@ -598,9 +598,12 @@ def get_model_versions(
598
databricks_control: Annotated[DatabricksControl, Depends(DatabricksControl)],
599
) -> Any:
600
601
- model_name = decode_url_piece(model_name)
+ transformed_model_name = decode_url_piece(model_name)
602
has_access_to_inst_or_err(inst_id, current_user)
603
604
+ print(f"Initial model name = {model_name}")
605
+ print(f"Converted model name {transformed_model_name}")
606
+
607
model_version_info = databricks_control.fetch_model_version(model_name)
608
609
return model_version_info
0 commit comments