Spaces:
Running
Running
kenplusplus
commited on
Commit
•
63275bd
1
Parent(s):
e8dbcd3
use markdown
Browse filesSigned-off-by: Lu Ken <[email protected]>
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 |
-
|
|
|
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 |
|