Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -69,7 +69,7 @@ if "model_name" not in st.session_state.keys():
|
|
69 |
# Initialize the model with the default option
|
70 |
st.session_state["model_name"] = "BramVanroy/Llama-2-13b-chat-dutch"
|
71 |
my_config.update({'model_name': st.session_state["model_name"]})
|
72 |
-
llm_chatbot =
|
73 |
st.session_state["model"] = llm_chatbot
|
74 |
|
75 |
text = st.text_area("Enter text to summarize here.")
|
|
|
69 |
# Initialize the model with the default option
|
70 |
st.session_state["model_name"] = "BramVanroy/Llama-2-13b-chat-dutch"
|
71 |
my_config.update({'model_name': st.session_state["model_name"]})
|
72 |
+
llm_chatbot = generate_with_llama_chat(my_config)
|
73 |
st.session_state["model"] = llm_chatbot
|
74 |
|
75 |
text = st.text_area("Enter text to summarize here.")
|