Shankarm08 commited on
Commit
261fc9b
·
verified ·
1 Parent(s): 8a5a18e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -2
app.py CHANGED
@@ -1,8 +1,13 @@
1
  import streamlit as st
2
  from langchain import HuggingFaceHub
3
 
4
- # Set your Hugging Face API token
5
- HUGGINGFACE_API_TOKEN = "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"
 
 
 
 
 
6
 
7
  # Function to return the response from Hugging Face model
8
  def load_answer(question):
 
1
  import streamlit as st
2
  from langchain import HuggingFaceHub
3
 
4
+
5
+ load_dotenv()
6
+
7
+ # Set your Hugging Face API token from the environment variable
8
+ HUGGINGFACE_API_TOKEN = os.getenv("HUGGINGFACE_API_TOKEN")
9
+
10
+
11
 
12
  # Function to return the response from Hugging Face model
13
  def load_answer(question):