emeses commited on
Commit
d7fe361
·
1 Parent(s): 133f56d

Update space

Browse files
Files changed (2) hide show
  1. app.py +1 -0
  2. requirements.txt +2 -1
app.py CHANGED
@@ -1,5 +1,6 @@
1
  import gradio as gr
2
  from huggingface_hub import InferenceClient
 
3
 
4
  # Initialize client with your model
5
  client = InferenceClient("emeses/lab2_model")
 
1
  import gradio as gr
2
  from huggingface_hub import InferenceClient
3
+ from typing import List, Dict
4
 
5
  # Initialize client with your model
6
  client = InferenceClient("emeses/lab2_model")
requirements.txt CHANGED
@@ -1,2 +1,3 @@
1
  huggingface_hub==0.25.2
2
- gradio
 
 
1
  huggingface_hub==0.25.2
2
+ gradio>=3.50.0
3
+ typing-extensions>=4.5.0