Update app.py
Browse files
app.py
CHANGED
@@ -78,7 +78,7 @@ def main():
|
|
78 |
st.write(css, unsafe_allow_html=True)
|
79 |
|
80 |
# Load the LLM model.
|
81 |
-
llm_model = HuggingFaceHub(repo_id="mistralai/Mistral-7B-v0.1", huggingfacehub_api_token=hub_token)
|
82 |
|
83 |
if "conversation" not in st.session_state:
|
84 |
st.session_state.conversation = None
|
|
|
78 |
st.write(css, unsafe_allow_html=True)
|
79 |
|
80 |
# Load the LLM model.
|
81 |
+
llm_model = HuggingFaceHub(repo_id="mistralai/Mistral-7B-v0.1", huggingfacehub_api_token=hub_token, verbose=True)
|
82 |
|
83 |
if "conversation" not in st.session_state:
|
84 |
st.session_state.conversation = None
|