Divyanshu04 commited on
Commit
02f0f1d
·
1 Parent(s): 6a49dc6
Files changed (1) hide show
  1. app.py +6 -9
app.py CHANGED
@@ -35,17 +35,14 @@ app = Flask(__name__)
35
  # @app.route("/", methods=["POST"])
36
  def generate():
37
 
38
- # prompt = request.form['prompt']
39
- # negative_prompt = request.form['Negative prompt']
40
- # num_samples = request.form['No. of samples']
 
41
 
42
- prompt = st.text_area(label = "prompt", key="pmpt")
43
- negative_prompt = st.text_area(label = "Negative prompt", key="ng_pmpt")
44
- num_samples = st.number_input("No. of samples")
45
 
46
- res = st.button("Generate", type="primary")
47
-
48
- if res:
49
 
50
  guidance_scale = 7.5
51
  num_inference_steps = 24
 
35
  # @app.route("/", methods=["POST"])
36
  def generate():
37
 
38
+ with st.form(key="Form :", clear_on_submit = True):
39
+ prompt = st.text_area(label = "prompt", key="pmpt")
40
+ negative_prompt = st.text_area(label = "Negative prompt", key="ng_pmpt")
41
+ num_samples = st.number_input("No. of samples", step=1)
42
 
43
+ Submit = st.form_submit_button(label='Submit')
 
 
44
 
45
+ if Submit:
 
 
46
 
47
  guidance_scale = 7.5
48
  num_inference_steps = 24