Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -304,10 +304,6 @@ def handle_chat(prompt, user_input, teapot_ai):
|
|
304 |
|
305 |
return response
|
306 |
|
307 |
-
def suggestion_button(user_prompt, suggestion_text, teapot_ai):
|
308 |
-
if st.button(suggestion_text):
|
309 |
-
handle_chat(user_prompt, suggestion_text, teapot_ai)
|
310 |
-
|
311 |
|
312 |
def main():
|
313 |
st.set_page_config(page_title="TeapotAI Chat", page_icon=":robot_face:", layout="wide")
|
@@ -329,11 +325,11 @@ def main():
|
|
329 |
|
330 |
s1, s2, s3 = st.columns([1, 2, 3])
|
331 |
with s1:
|
332 |
-
|
333 |
with s2:
|
334 |
-
|
335 |
with s3:
|
336 |
-
|
337 |
|
338 |
if user_input:
|
339 |
with st.spinner('Generating Response...'):
|
|
|
304 |
|
305 |
return response
|
306 |
|
|
|
|
|
|
|
|
|
307 |
|
308 |
def main():
|
309 |
st.set_page_config(page_title="TeapotAI Chat", page_icon=":robot_face:", layout="wide")
|
|
|
325 |
|
326 |
s1, s2, s3 = st.columns([1, 2, 3])
|
327 |
with s1:
|
328 |
+
user_input = "Tell me about teapotllm"
|
329 |
with s2:
|
330 |
+
user_input = "Who invented quantum mechanics?"
|
331 |
with s3:
|
332 |
+
user_input = "Extract the year Google was founded"
|
333 |
|
334 |
if user_input:
|
335 |
with st.spinner('Generating Response...'):
|