hitz02 commited on
Commit
2be00d4
·
1 Parent(s): cedf72d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -19,8 +19,10 @@ def generate_text(llm, api_key, email_features, example_feature_template, exampl
19
  with gr.Blocks() as demo:
20
  with gr.Row():
21
  with gr.Column():
22
- llm = gr.Dropdown(["gpt-3.5-turbo", "google_flan_t5_xxl"], type="value", multiselect=False)
23
- api_key = gr.Text(label="Enter API Key for the selected model", info="Generate key for google flan model from - https://huggingface.co/docs/hub/security-tokens \n for gpt - https://platform.openai.com/account/api-keys")
 
 
24
  email_features = gr.TextArea(label="Input Email features", value=input_temp, info = "Change the email features here")
25
  example_feature_template = gr.TextArea(label="Example Email - features", value = example_input_feat_temp, info = "Use this template example or change as per your need")
26
  example_subj_body_template = gr.TextArea(label="Example Email - subject and body", value = example_input_subj_body_temp, info = "Use this template example or change as per your need")
 
19
  with gr.Blocks() as demo:
20
  with gr.Row():
21
  with gr.Column():
22
+ llm = gr.Dropdown(["gpt-3.5-turbo", "google_flan_t5_xxl"], type="value", multiselect=False, info="Select model here")
23
+ api_key = gr.Text(label="Enter API Key for the selected model",
24
+ info="Generate key for google flan model from - https://huggingface.co/docs/hub/security-tokens\
25
+ for gpt - https://platform.openai.com/account/api-keys")
26
  email_features = gr.TextArea(label="Input Email features", value=input_temp, info = "Change the email features here")
27
  example_feature_template = gr.TextArea(label="Example Email - features", value = example_input_feat_temp, info = "Use this template example or change as per your need")
28
  example_subj_body_template = gr.TextArea(label="Example Email - subject and body", value = example_input_subj_body_temp, info = "Use this template example or change as per your need")