Spaces:
Sleeping
Sleeping
Initial Draft
Browse files
app.py
CHANGED
@@ -4,8 +4,14 @@ import streamlit as st
|
|
4 |
####### Generic functions ######
|
5 |
################################
|
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
def option_change():
|
8 |
-
|
9 |
|
10 |
def button_clicked():
|
11 |
llm_output_text="Button Clicked"
|
@@ -31,5 +37,4 @@ with col3:
|
|
31 |
llm_input_text = st.text_area(label="Enter your message", height=400)
|
32 |
|
33 |
# Display Output in single Layout
|
34 |
-
llm_output_text = st.text_area("Generate Output", height=400)
|
35 |
-
|
|
|
4 |
####### Generic functions ######
|
5 |
################################
|
6 |
|
7 |
+
llm_action_type = None
|
8 |
+
llm_button = None
|
9 |
+
llm_input_text = None
|
10 |
+
llm_output_text = None
|
11 |
+
|
12 |
+
|
13 |
def option_change():
|
14 |
+
llm_input_text="Hello"
|
15 |
|
16 |
def button_clicked():
|
17 |
llm_output_text="Button Clicked"
|
|
|
37 |
llm_input_text = st.text_area(label="Enter your message", height=400)
|
38 |
|
39 |
# Display Output in single Layout
|
40 |
+
llm_output_text = st.text_area("Generate Output", height=400)
|
|