Sujithanumala commited on
Commit
8d140dd
·
verified ·
1 Parent(s): d833a99

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -172,12 +172,12 @@ with gr.Blocks() as demo:
172
  resume = gr.File(label="Upload Resume", file_types=[".pdf"])
173
  job_description = gr.Textbox(label="Paste Job Description here", lines=5)
174
  custom_instructions = gr.Textbox(label="Enter Your Instructions", lines=10,placeholder=custom_instructions_examples)
175
- gr.Markdown("Get your free API key: [Gemini API]('https://aistudio.google.com/app/apikey')")
176
  gemini_api_key = gr.Textbox(label="Enter your Gemini API key..!!!", lines=1,placeholder="Dont worry we won't store your API key!!!")
177
  submit_btn = gr.Button("Submit")
178
  with gr.Column():
179
- gr.Markdown("Paste your Latex File here to get your resume: [Overleaf]('https://www.overleaf.com/')")
180
- output = gr.Textbox(label="LaTEX Resume File", lines=20)
181
  submit_btn.click(
182
  fn=process_inputs,
183
  inputs=[resume, job_description,custom_instructions,gemini_api_key],
 
172
  resume = gr.File(label="Upload Resume", file_types=[".pdf"])
173
  job_description = gr.Textbox(label="Paste Job Description here", lines=5)
174
  custom_instructions = gr.Textbox(label="Enter Your Instructions", lines=10,placeholder=custom_instructions_examples)
175
+ gr.Markdown("Get your free API key: [Gemini API](https://aistudio.google.com/app/apikey)")
176
  gemini_api_key = gr.Textbox(label="Enter your Gemini API key..!!!", lines=1,placeholder="Dont worry we won't store your API key!!!")
177
  submit_btn = gr.Button("Submit")
178
  with gr.Column():
179
+ output = gr.Textbox(label="LaTEX Resume File", lines=30)
180
+ gr.Markdown("Paste your Latex File here to get your resume: [Overleaf](https://www.overleaf.com/)")
181
  submit_btn.click(
182
  fn=process_inputs,
183
  inputs=[resume, job_description,custom_instructions,gemini_api_key],