Update app.py
Browse files
app.py
CHANGED
@@ -129,14 +129,14 @@ def create_email(name, company_name, role, email, phone, linkedin_profile_url):
|
|
129 |
# Define interface with Gradio
|
130 |
def gradio_ui():
|
131 |
# Define inputs
|
132 |
-
name_input = gr.Textbox(label="Name", placeholder="Enter your name")
|
133 |
|
134 |
-
company_name_input = gr.Textbox(label="Company Name", placeholder="Enter the
|
135 |
-
role_input = gr.Textbox(label="Role", placeholder="Enter the role you are applying for")
|
136 |
|
137 |
-
email_input = gr.Textbox(label="Email Address", placeholder="Enter your email address")
|
138 |
-
phone_input = gr.Textbox(label="Phone Number", placeholder="Enter your phone number")
|
139 |
-
linkedin_input = gr.Textbox(label="LinkedIn URL", placeholder="Enter your LinkedIn profile URL") # New field for LinkedIn URL
|
140 |
|
141 |
# Define output for the generated email
|
142 |
email_output = gr.Textbox(label="Generated Email", placeholder="Your generated email will appear here", lines=10)
|
|
|
129 |
# Define interface with Gradio
|
130 |
def gradio_ui():
|
131 |
# Define inputs
|
132 |
+
name_input = gr.Textbox(label="Your Name", placeholder="Enter your name")
|
133 |
|
134 |
+
company_name_input = gr.Textbox(label="Company Name or URL", placeholder="Enter the company name or website URL")
|
135 |
+
role_input = gr.Textbox(label="Role Applying For", placeholder="Enter the role you are applying for")
|
136 |
|
137 |
+
email_input = gr.Textbox(label="Your Email Address", placeholder="Enter your email address")
|
138 |
+
phone_input = gr.Textbox(label="Your Phone Number", placeholder="Enter your phone number")
|
139 |
+
linkedin_input = gr.Textbox(label="Your LinkedIn URL", placeholder="Enter your LinkedIn profile URL") # New field for LinkedIn URL
|
140 |
|
141 |
# Define output for the generated email
|
142 |
email_output = gr.Textbox(label="Generated Email", placeholder="Your generated email will appear here", lines=10)
|