diff options
| -rw-r--r-- | getmeajob/getmeajob.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/getmeajob/getmeajob.py b/getmeajob/getmeajob.py index d405ca4..2686c2f 100644 --- a/getmeajob/getmeajob.py +++ b/getmeajob/getmeajob.py @@ -143,7 +143,7 @@ def main(): for job in jobsdict: print(job) - if len(listingentry["automated_questions"]) > 0: + if len(listingEntry["automated_questions"]) > 0: qanda = [] @@ -151,7 +151,7 @@ def main(): filename="*Q8_0.gguf", verbose=True ) - for question in listingentry["automated_questions"]: + for question in listingEntry["automated_questions"]: qanda.append(llm.create_chat_completion( messages = [ {"role": "system", "content": "You are a summarizer tasked with summarizing job applications. Presented to you are the user's question about a job description and the description. Using only the provided description, answer the question to the best of your ability. If you are incapable of figuring out the answer, inform the user of this."}, |
