Kaelan commited on
Commit
5763e36
·
verified ·
1 Parent(s): a95091f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -1,11 +1,12 @@
1
  import gradio as gr
2
  from huggingface_hub import InferenceClient
3
  import spaces
 
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("meta-llama/Meta-Llama-3.1-70B-Instruct")
9
 
10
  @spaces.GPU
11
  def respond(
 
1
  import gradio as gr
2
  from huggingface_hub import InferenceClient
3
  import spaces
4
+ import os
5
 
6
  """
7
  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
8
  """
9
+ client = InferenceClient("meta-llama/Meta-Llama-3.1-70B-Instruct", token=os.getenv('hf_token'))
10
 
11
  @spaces.GPU
12
  def respond(