xi0v commited on
Commit
6993d86
β€’
1 Parent(s): 2623e37

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -1,13 +1,13 @@
1
  #!/usr/bin/env python
2
  import gradio as gr
3
  from huggingface_hub import InferenceClient
4
-
5
  """
6
  For more information on `huggingface_hub` Inference API support, please check the docs: https://huggingface.co/docs/huggingface_hub/v0.22.2/en/guides/inference
7
  """
8
  client = InferenceClient("xi0v/aether-7b-chat-v1.0")
9
 
10
-
11
  def respond(
12
  message,
13
  history: list[tuple[str, str]],
 
1
  #!/usr/bin/env python
2
  import gradio as gr
3
  from huggingface_hub import InferenceClient
4
+ import spaces
5
  """
6
  For more information on `huggingface_hub` Inference API support, please check the docs: https://huggingface.co/docs/huggingface_hub/v0.22.2/en/guides/inference
7
  """
8
  client = InferenceClient("xi0v/aether-7b-chat-v1.0")
9
 
10
+ @spaces.GPU
11
  def respond(
12
  message,
13
  history: list[tuple[str, str]],