kaitwithkwk commited on
Commit
5ea4a75
·
verified ·
1 Parent(s): f965bff

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -4,7 +4,7 @@ from huggingface_hub import InferenceClient
4
  client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
5
 
6
  def respond(message, history):
7
- print(HF_TOKEN)
8
  messages = [{"role": "system", "content": "You are a friendly chatbot."}]
9
 
10
  if history:
 
4
  client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
5
 
6
  def respond(message, history):
7
+ print(os.environ.get("HF_TOKEN"))
8
  messages = [{"role": "system", "content": "You are a friendly chatbot."}]
9
 
10
  if history: