Spaces:
Sleeping
Sleeping
Initial Draft
Browse files
app.py
CHANGED
@@ -12,9 +12,14 @@ with col1:
|
|
12 |
options = ["Sentiment Analysis", "Zero-shot Classification", "Text Generation","Mask Filling","Named Entity Recognition","Question & Answering","Summarization","English to French Translation"]
|
13 |
llm_action_type = st.selectbox("Select an option", options)
|
14 |
with col3:
|
15 |
-
|
16 |
|
17 |
-
# Display
|
18 |
col4 = st.columns(1)
|
19 |
with col4:
|
20 |
-
llm_input_text = st.text_area("Enter your message", "")
|
|
|
|
|
|
|
|
|
|
|
|
12 |
options = ["Sentiment Analysis", "Zero-shot Classification", "Text Generation","Mask Filling","Named Entity Recognition","Question & Answering","Summarization","English to French Translation"]
|
13 |
llm_action_type = st.selectbox("Select an option", options)
|
14 |
with col3:
|
15 |
+
llm_button = st.button("Generate Data")
|
16 |
|
17 |
+
# Display Input in single Layout
|
18 |
col4 = st.columns(1)
|
19 |
with col4:
|
20 |
+
llm_input_text = st.text_area("Enter your message", "")
|
21 |
+
|
22 |
+
# Display Output in single Layout
|
23 |
+
col5 = st.columns(1)
|
24 |
+
with col5:
|
25 |
+
llm_output_text = st.text_area("Generate Output", "")
|