rahgadda commited on
Commit
1cc4f09
·
1 Parent(s): 487a937

Initial Draft

Browse files
Files changed (1) hide show
  1. app.py +8 -3
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
- llm_input_text = st.text_area("Generated Data", "")
16
 
17
- # Display Output in single Layout
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", "")