jerpint commited on
Commit
ce4f3b0
·
1 Parent(s): 72fc709

increase max tokens

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -72,7 +72,7 @@ def respond(
72
  model="gpt-4o-mini",
73
  messages=messages,
74
  temperature=0,
75
- max_tokens=256,
76
  stream=True
77
  )
78
 
@@ -106,7 +106,7 @@ with gr.Blocks() as demo:
106
  resume_html = gr.HTML(html_raw)
107
 
108
  with gr.Tab("Resume (PDF)"):
109
- md = gr.Markdown("[Link to PDF]()")
110
 
111
  md = gr.Markdown("Created by [Jeremy Pinto](https://www.jerpint.io)")
112
 
 
72
  model="gpt-4o-mini",
73
  messages=messages,
74
  temperature=0,
75
+ max_tokens=512,
76
  stream=True
77
  )
78
 
 
106
  resume_html = gr.HTML(html_raw)
107
 
108
  with gr.Tab("Resume (PDF)"):
109
+ md = gr.Markdown("[Link to PDF](https://huggingface.co/spaces/jerpint/talk-to-resume/resolve/main/resume.pdf)")
110
 
111
  md = gr.Markdown("Created by [Jeremy Pinto](https://www.jerpint.io)")
112