Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -205,7 +205,7 @@ with gr.Blocks(css="""
|
|
205 |
outputs=linkedin_analysis_output
|
206 |
)
|
207 |
|
208 |
-
with gr.Tab("π GitGuru (GitHub Reviewer)"):
|
209 |
with gr.Row():
|
210 |
with gr.Column(scale=1):
|
211 |
github_readme_input = gr.Textbox(label="GitHub README Content", placeholder="Paste your main GitHub README content here", lines=10, interactive=True)
|
@@ -219,7 +219,7 @@ with gr.Blocks(css="""
|
|
219 |
outputs=github_analysis_output
|
220 |
)
|
221 |
|
222 |
-
with gr.Tab("π§ Smart Planner"):
|
223 |
with gr.Row():
|
224 |
with gr.Column(scale=1):
|
225 |
planner_goal_input = gr.Textbox(label="Your Goal", placeholder="e.g., Become a Data Scientist", interactive=True)
|
@@ -234,7 +234,7 @@ with gr.Blocks(css="""
|
|
234 |
outputs=roadmap_output
|
235 |
)
|
236 |
|
237 |
-
with gr.Tab("π― Task Tracker"):
|
238 |
with gr.Row():
|
239 |
with gr.Column(scale=1):
|
240 |
task_name_input = gr.Textbox(label="Task Name", placeholder="e.g., Complete Python course", interactive=True)
|
@@ -280,7 +280,7 @@ with gr.Blocks(css="""
|
|
280 |
outputs=[tasks_display, progress_bar, rewards_display]
|
281 |
)
|
282 |
|
283 |
-
with gr.Tab("π Memo (Course Recommender)"):
|
284 |
with gr.Row():
|
285 |
with gr.Column(scale=1):
|
286 |
memo_query_input = gr.Textbox(label="Ask about a course or topic", placeholder="e.g., Best Python courses for data science", interactive=True)
|
@@ -303,7 +303,7 @@ with gr.Blocks(css="""
|
|
303 |
outputs=memo_output
|
304 |
)
|
305 |
|
306 |
-
with gr.Tab("π Visualizer"):
|
307 |
with gr.Row():
|
308 |
with gr.Column(scale=1):
|
309 |
visualizer_goal_input = gr.Textbox(label="Your Goal", placeholder="e.g., Become a Data Scientist", interactive=True)
|
|
|
205 |
outputs=linkedin_analysis_output
|
206 |
)
|
207 |
|
208 |
+
with gr.Tab("π GitGuru (GitHub Reviewer)", elem_id="gitguru-tab"):
|
209 |
with gr.Row():
|
210 |
with gr.Column(scale=1):
|
211 |
github_readme_input = gr.Textbox(label="GitHub README Content", placeholder="Paste your main GitHub README content here", lines=10, interactive=True)
|
|
|
219 |
outputs=github_analysis_output
|
220 |
)
|
221 |
|
222 |
+
with gr.Tab("π§ Smart Planner", elem_id="planner-card"):
|
223 |
with gr.Row():
|
224 |
with gr.Column(scale=1):
|
225 |
planner_goal_input = gr.Textbox(label="Your Goal", placeholder="e.g., Become a Data Scientist", interactive=True)
|
|
|
234 |
outputs=roadmap_output
|
235 |
)
|
236 |
|
237 |
+
with gr.Tab("π― Task Tracker", elem_id="gitguru-tab"):
|
238 |
with gr.Row():
|
239 |
with gr.Column(scale=1):
|
240 |
task_name_input = gr.Textbox(label="Task Name", placeholder="e.g., Complete Python course", interactive=True)
|
|
|
280 |
outputs=[tasks_display, progress_bar, rewards_display]
|
281 |
)
|
282 |
|
283 |
+
with gr.Tab("π Memo (Course Recommender)", elem_id="gitguru-tab"):
|
284 |
with gr.Row():
|
285 |
with gr.Column(scale=1):
|
286 |
memo_query_input = gr.Textbox(label="Ask about a course or topic", placeholder="e.g., Best Python courses for data science", interactive=True)
|
|
|
303 |
outputs=memo_output
|
304 |
)
|
305 |
|
306 |
+
with gr.Tab("π Visualizer", elem_id="gitguru-tab"):
|
307 |
with gr.Row():
|
308 |
with gr.Column(scale=1):
|
309 |
visualizer_goal_input = gr.Textbox(label="Your Goal", placeholder="e.g., Become a Data Scientist", interactive=True)
|