Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -124,14 +124,14 @@ def process_cv(file):
|
|
124 |
|
125 |
# Gradio UI using Blocks
|
126 |
with gr.Blocks() as iface:
|
127 |
-
gr.Markdown("# CV to AI Enhanced Portfolio
|
128 |
-
gr.Markdown("Upload your CV in PDF or DOCX format to analyze its content and generate a portfolio.")
|
129 |
|
130 |
# File input for uploading CV
|
131 |
cv_input = gr.File(label="Upload your CV (.pdf or .docx)")
|
132 |
|
133 |
# Output textbox for generated HTML
|
134 |
-
output_textbox = gr.Textbox(label="Generated HTML", lines=20, placeholder="Your generated HTML will appear here...", interactive=True)
|
135 |
|
136 |
# Process button
|
137 |
process_button = gr.Button("Generate Portfolio")
|
|
|
124 |
|
125 |
# Gradio UI using Blocks
|
126 |
with gr.Blocks() as iface:
|
127 |
+
gr.Markdown("# CV to AI Enhanced Portfolio Webpage Generator")
|
128 |
+
gr.Markdown("Upload your CV in PDF or DOCX format to analyze its content and generate a HTML/CSS/JS code for your portfolio webpage.")
|
129 |
|
130 |
# File input for uploading CV
|
131 |
cv_input = gr.File(label="Upload your CV (.pdf or .docx)")
|
132 |
|
133 |
# Output textbox for generated HTML
|
134 |
+
output_textbox = gr.Textbox(label="Generated HTML", lines=20, placeholder="Your generated HTML/CSS/JS code will appear here...", interactive=True)
|
135 |
|
136 |
# Process button
|
137 |
process_button = gr.Button("Generate Portfolio")
|