kenplusplus commited on
Commit
63275bd
1 Parent(s): e8dbcd3

use markdown

Browse files

Signed-off-by: Lu Ken <[email protected]>

Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -78,8 +78,13 @@ def main():
78
 
79
  st.set_page_config("TDX Doctor")
80
  st.header("Please ask questions related to TDX or UEFI")
 
 
 
 
81
 
82
- user_question = st.text_input("Ask a Question like:\n please describe EFI PEI Core in 200 words.\n please describe intel tdx in 200 words.\n please explain SEAMCALL in 200 words")
 
83
  if user_question:
84
  user_input(user_question)
85
 
 
78
 
79
  st.set_page_config("TDX Doctor")
80
  st.header("Please ask questions related to TDX or UEFI")
81
+ st.markdown("Ask a question like following styles:")
82
+ st.markdown("- please describe EFI PEI Core in 200 words.")
83
+ st.markdown("- please describe intel tdx in 200 words.")
84
+ st.markdown("- please explain SEAMCALL in 200 words.")
85
 
86
+
87
+ user_question = st.text_input("input", label_visibility="hidden")
88
  if user_question:
89
  user_input(user_question)
90