This commit is contained in:
2025-11-12 14:45:37 -05:00
parent b5f309b5bc
commit 1eb30b4689
2 changed files with 8 additions and 2 deletions

View File

@@ -2,9 +2,15 @@
Firefox addon to aid in applying to jobs.
This is currently a WIP, but in active development (as of Nov 2025).
## Features:
☑️ Give match results based on job description and resume
🔲 Auto-fill based on resume content
## Todo
- Add option to keep model loaded vs load each time
- model load progress monitoring in popup
- allow file dropping on options ui

View File

@@ -29,8 +29,8 @@ const runMatch = async (inputText) => {
const response = await engine.chat.completions.create({
messages: query
})
console.dir(response)
window.alert(response.choices[0].message.content)
}