MVP Drop
This commit is contained in:
@@ -2,9 +2,15 @@
|
|||||||
|
|
||||||
Firefox addon to aid in applying to jobs.
|
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
|
## Todo
|
||||||
|
|
||||||
- Add option to keep model loaded vs load each time
|
- Add option to keep model loaded vs load each time
|
||||||
- model load progress monitoring in popup
|
- model load progress monitoring in popup
|
||||||
- allow file dropping on options ui
|
|
||||||
|
|||||||
@@ -29,8 +29,8 @@ const runMatch = async (inputText) => {
|
|||||||
const response = await engine.chat.completions.create({
|
const response = await engine.chat.completions.create({
|
||||||
messages: query
|
messages: query
|
||||||
})
|
})
|
||||||
|
|
||||||
console.dir(response)
|
console.dir(response)
|
||||||
|
window.alert(response.choices[0].message.content)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user