Spaces:
Sleeping
Sleeping
Karthikeyan
commited on
Commit
•
5ad0f32
1
Parent(s):
63d1ff6
Update app.py
Browse files
app.py
CHANGED
@@ -78,17 +78,17 @@ class CourseGenarator:
|
|
78 |
with gr.Column():
|
79 |
gr.HTML("<br>")
|
80 |
gr.HTML(
|
81 |
-
"""<h1 style="text-align:center; color:"white">Courses </h1> """
|
82 |
)
|
83 |
gr.HTML("<br>")
|
84 |
with gr.Column():
|
85 |
resume = gr.File(label="Resume")
|
86 |
|
87 |
with gr.Column():
|
88 |
-
analyse = gr.Button("
|
89 |
|
90 |
with gr.Column():
|
91 |
-
result = gr.Textbox(label="
|
92 |
|
93 |
analyse.click(self.response, [resume], result)
|
94 |
print(result)
|
|
|
78 |
with gr.Column():
|
79 |
gr.HTML("<br>")
|
80 |
gr.HTML(
|
81 |
+
"""<h1 style="text-align:center; color:"white">Courses finder based on Resume</h1> """
|
82 |
)
|
83 |
gr.HTML("<br>")
|
84 |
with gr.Column():
|
85 |
resume = gr.File(label="Resume")
|
86 |
|
87 |
with gr.Column():
|
88 |
+
analyse = gr.Button("Find Courses")
|
89 |
|
90 |
with gr.Column():
|
91 |
+
result = gr.Textbox(label="Suggested Cources",lines=8)
|
92 |
|
93 |
analyse.click(self.response, [resume], result)
|
94 |
print(result)
|