merve HF staff commited on
Commit
4028614
·
1 Parent(s): 3f22696

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -1,4 +1,5 @@
1
  import streamlit as st
 
2
  from transformers import pipeline
3
 
4
  import requests
@@ -9,6 +10,8 @@ def query(payload, model_id, api_token):
9
  response = requests.post(API_URL, headers=headers, json=payload)
10
  return response.json()
11
 
 
 
12
  st.header("Ways to Improve Your Conversational Agents using 🤗 Hugging Face")
13
 
14
  st.write("There are many ways to improve your conversational agents using language models. In this blog post, I will walk you through a couple of tricks that will improve your conversational agent. 👾")
 
1
  import streamlit as st
2
+ import os
3
  from transformers import pipeline
4
 
5
  import requests
 
10
  response = requests.post(API_URL, headers=headers, json=payload)
11
  return response.json()
12
 
13
+
14
+ api_token = os.getenv("api_token")
15
  st.header("Ways to Improve Your Conversational Agents using 🤗 Hugging Face")
16
 
17
  st.write("There are many ways to improve your conversational agents using language models. In this blog post, I will walk you through a couple of tricks that will improve your conversational agent. 👾")