alfraser commited on
Commit
d0a9930
·
1 Parent(s): 1c63a8a

Added the display of the question typed into the side by side setup.

Browse files
Files changed (1) hide show
  1. pages/010_LLM_Architectures.py +3 -1
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: