matanninio commited on
Commit
52b1416
·
1 Parent(s): 055533d

relative link take II

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -67,7 +67,7 @@ def create_application():
67
  return (gr.update(visible=False), *visibility)
68
 
69
  def model_change(value):
70
- return gr.update(link=value, visible=True)
71
  # return gr.update(link=f"https://huggingface.co/{value}", visible=True)
72
 
73
  with gr.Blocks(theme="Zarkel/IBM_Carbon_Theme") as application:
 
67
  return (gr.update(visible=False), *visibility)
68
 
69
  def model_change(value):
70
+ return gr.update(link=f"../{value}", visible=True)
71
  # return gr.update(link=f"https://huggingface.co/{value}", visible=True)
72
 
73
  with gr.Blocks(theme="Zarkel/IBM_Carbon_Theme") as application: