m7n commited on
Commit
4cefdae
·
1 Parent(s): 109fc06

upped gradio version

Browse files
Files changed (2) hide show
  1. README.md +1 -1
  2. app.py +2 -2
README.md CHANGED
@@ -4,7 +4,7 @@ emoji: 😻
4
  colorFrom: blue
5
  colorTo: yellow
6
  sdk: gradio
7
- sdk_version: 4.44.1
8
  app_file: app.py
9
  pinned: false
10
  hf_oauth: true
 
4
  colorFrom: blue
5
  colorTo: yellow
6
  sdk: gradio
7
+ sdk_version: 5.12.0
8
  app_file: app.py
9
  pinned: false
10
  hf_oauth: true
app.py CHANGED
@@ -106,8 +106,8 @@ def no_op_decorator(func):
106
  return wrapper
107
 
108
  # Decide which decorator to use based on environment
109
- decorator_to_use = spaces.GPU(duration=120) if is_running_in_hf_space() else no_op_decorator
110
-
111
 
112
  @decorator_to_use
113
  def create_embeddings(texts_to_embedd):
 
106
  return wrapper
107
 
108
  # Decide which decorator to use based on environment
109
+ decorator_to_use = spaces.GPU() if is_running_in_hf_space() else no_op_decorator
110
+ #duration=120
111
 
112
  @decorator_to_use
113
  def create_embeddings(texts_to_embedd):