|
|
|
|
|
by mordras
1197 days ago
|
|
I basically launched a similar service just recently [1]. Guess, the idea is pretty obvious, especially hearing about all the layoffs in the past months combined with OpenAI's impressive progress. For feedback: I tried your generator, and it gave me a cover letter (impressively fast!) as promised. The letter's signature was a link and read "Candidate Name", which I clicked (of course) and went straight to a 404. The cover letter was gone. So, maybe some way to save a link to the letter, e.g. a unique URL, that you can navigate back to? You could store the letter content for a few hours or days for that, or even just encode the full content into a query string. Alternatively, a big, fat "Copy to clipboard" button could also help. You mentioned GPT-3 - is it actually 3 or 3.5-turbo? Looking forward to what a multimodal GPT-4 can do for us now. AI-generated profile photos, application video, automatically calling the recruiters on the phone, etc. The ideas to shake up recruiters' lives seem endless now ;) You are welcome to test my generator and borrow some ideas if you find it interesting. It's behind a free signup, as I was slightly afraid of piling up OpenAI API cost. [1] https://www.resufit.com |
|
It's using text-davinci-3 mostly because I was too lazy to move to gpt-3.5-turbo since that required moving to the chat api. I'll probably make the move if people use this tool enough that I'm worried about the bill from openai.
- It being impressively fast comes from me using the streaming API. That's actually where I spent most of my effort making work. OpenAI sends their messages via SSE to my server which then instantly streams that also by SSE to the browser client. It turns out this is hard to make work because most reverse proxies want to buffer responses so you have to figure out the configuration to make sure your responses aren't buffered.
- The candidate name link problem comes from the fact that I translate GPT3's output as markdown so [Candidate Name] turns into a link to nothing (I'm gonna go and change that soon I swear).