ahmadalfakeh commited on
Commit
6e8ccee
·
verified ·
1 Parent(s): e49f085

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -1,11 +1,11 @@
1
  import gradio as gr
2
  from huggingface_hub import InferenceClient
3
  import os
4
- os.getenv("HF_API_TOKEN")
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", token=f"{HF_API_TOKEN}")
9
 
10
 
11
  def respond(
 
1
  import gradio as gr
2
  from huggingface_hub import InferenceClient
3
  import os
4
+ api = os.getenv("HF_API_TOKEN")
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", token=f"{api}")
9
 
10
 
11
  def respond(