From 1eb30b4689f4953e97fba8cd25b492e383caa399 Mon Sep 17 00:00:00 2001 From: Elizabeth Cray Date: Wed, 12 Nov 2025 14:45:37 -0500 Subject: [PATCH] MVP Drop --- README.md | 8 +++++++- background/background.js | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index eca9f28..907af36 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/background/background.js b/background/background.js index 4afa91e..ca04719 100644 --- a/background/background.js +++ b/background/background.js @@ -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) }