parasmech commited on
Commit
6253a44
·
verified ·
1 Parent(s): 2b71f0b

Create backend.py

Browse files
Files changed (1) hide show
  1. backend.py +63 -0
backend.py ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import re
3
+ import pandas as pd
4
+ from pypdf import PdfReader
5
+ from typing import List, Dict
6
+ from langchain.prompts import PromptTemplate
7
+ from langchain_google_genai import GoogleGenerativeAI
8
+
9
+
10
+ os.environ["GOOGLE_API_KEY"] = "AIzaSyCYGj5e2eAQbUi9HtuMaW0LDSnDuxLG54U"
11
+
12
+
13
+ class InvoicePipeline:
14
+
15
+ def __init__(self, paths):
16
+ self._paths = paths
17
+ self._llm = GoogleGenerativeAI(model="gemini-1.5-pro", google_api_key=api_key)
18
+ self._prompt_template = self._get_default_prompt_template()
19
+ # This funcition will help in extracting and run the code, and will produce a dataframe for us
20
+ def run(self) -> pd.DataFrame:
21
+ # We have defined the way the data has to be returned
22
+ df = pd.DataFrame(
23
+ "Invoice ID": pd.Series(dtype = "int"),
24
+ "DESCRIPTION": pd.Series(dtype = "str"),
25
+ "Issue Data": pd.Series(dtype = "str"),
26
+ "UNIT PRICE": pd.Series(dtype = "str"),
27
+ "AMOUNT": pd.Series(dtype = "int"),
28
+ "Bill For": pd.Series(dtype = "str"),
29
+ "From": pd.Series(dtype =" str"),
30
+ "Terms": pd.Series(dtype = "str")}
31
+ )
32
+
33
+ for path in self._paths:
34
+ raw_text = self._get_raw_text_from_pdf(path) # This function needs to be created
35
+ llm_resp = self._extract_data_from_llm(raw_text) #
36
+ data = self._parse_response(llm_resp)
37
+ df = pd.concat([df, pd.DataFrame([data])], ignore_index = True)
38
+
39
+ return df
40
+
41
+ # The default template that the machine will take
42
+ def _get_default_prompt_template(self) -> PromptTemplate:
43
+ template = """Extract all the following values: Invoice ID, DESCRIPTION, Issue Data,UNIT PRICE, AMOUNT, Bill for, From and Terms for: {pages}
44
+ Expected Outcome: remove any dollar symbols {{"Invoice ID":"12341234", "DESCRIPTION": "UNIT PRICE", "AMOUNT": "3", "Date": "2/1/2021", "AMOUNT": "100", "Bill For": "Dev", "From": "Coca Cola", "Terms" : "Net for 30 days"}}
45
+ """
46
+
47
+ prompt_template = PromptTemplate(input_variables = ["pages"], template = template)
48
+ return prompt_template
49
+
50
+
51
+ # We will try to extract the text from the PDF to a normal variable.
52
+ def _get_raw_text_from_pdf(self, path:str) -> str:
53
+ text = ""
54
+ pdf_reader = PdfReader(path)
55
+ for page in pdf_reader:
56
+ text += page.extract_text()
57
+ return text
58
+
59
+ def _extract_data_from_llm(self, raw_data:str) -> str:
60
+ resp = self._llm(self._prompt_template.format(pages = raw_data))
61
+ return resp
62
+
63
+