Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -58,9 +58,7 @@ st.title('Test Multi GPU')
|
|
58 |
|
59 |
md = st.text_area('Type in your markdown string (without outer quotes)')
|
60 |
|
61 |
-
st.button("Enter"
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
else:
|
66 |
-
st.write("Goodbye")
|
|
|
58 |
|
59 |
md = st.text_area('Type in your markdown string (without outer quotes)')
|
60 |
|
61 |
+
if st.button("Enter"):
|
62 |
+
with st.spinner(text="In progress..."):
|
63 |
+
resp=llm_chain.invoke(md)['text']
|
64 |
+
st.write(resp)
|
|
|
|