Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -85,7 +85,7 @@ if st.button("🪄 Cast Spell"):
|
|
85 |
)
|
86 |
|
87 |
# Initialize the HuggingFaceEndpoint for Llama3
|
88 |
-
|
89 |
repo_id=repo_id_llama3,
|
90 |
max_length=max_length,
|
91 |
temperature=temperature,
|
@@ -128,6 +128,6 @@ if 'history' in st.session_state:
|
|
128 |
col1 = st.columns(1)
|
129 |
with col1:
|
130 |
st.markdown(f"<span class='response'>**Response from Mistral-7B-Instruct-v0.3:** {response_mistral}</span>", unsafe_allow_html=True)
|
131 |
-
|
132 |
st.markdown(f"<span class='response'>**Response from Llama3:** {response_llama3}</span>", unsafe_allow_html=True)'''
|
133 |
st.write("---")
|
|
|
85 |
)
|
86 |
|
87 |
# Initialize the HuggingFaceEndpoint for Llama3
|
88 |
+
''' llm_llama3 = HuggingFaceEndpoint(
|
89 |
repo_id=repo_id_llama3,
|
90 |
max_length=max_length,
|
91 |
temperature=temperature,
|
|
|
128 |
col1 = st.columns(1)
|
129 |
with col1:
|
130 |
st.markdown(f"<span class='response'>**Response from Mistral-7B-Instruct-v0.3:** {response_mistral}</span>", unsafe_allow_html=True)
|
131 |
+
''' with col2:
|
132 |
st.markdown(f"<span class='response'>**Response from Llama3:** {response_llama3}</span>", unsafe_allow_html=True)'''
|
133 |
st.write("---")
|