Spaces:
Runtime error
Runtime error
Added the display of the question typed into the side by side setup.
Browse files
pages/010_LLM_Architectures.py
CHANGED
@@ -23,8 +23,10 @@ def show_side_by_side() -> None:
|
|
23 |
# Build header
|
24 |
with header_container:
|
25 |
st.write("### Side by side comparison of architectures")
|
26 |
-
st.write('Enter a question below to have it sent to all available architectures to compare timing and response')
|
27 |
prompt = st.chat_input("Ask a question")
|
|
|
|
|
28 |
|
29 |
# Now build the columns
|
30 |
with arch_outer_container:
|
|
|
23 |
# Build header
|
24 |
with header_container:
|
25 |
st.write("### Side by side comparison of architectures")
|
26 |
+
st.write('Enter a question below to have it sent to all available architectures to compare timing and response.')
|
27 |
prompt = st.chat_input("Ask a question")
|
28 |
+
if prompt:
|
29 |
+
st.write(f"**Question:** {prompt}")
|
30 |
|
31 |
# Now build the columns
|
32 |
with arch_outer_container:
|