thisisdev commited on
Commit
bbeebec
·
verified ·
1 Parent(s): 6f79d72

Update backend.py

Browse files
Files changed (1) hide show
  1. backend.py +1 -1
backend.py CHANGED
@@ -17,7 +17,7 @@ class InvoicePipeline:
17
  # This is your file path
18
  self._paths = paths
19
  # This is your LLM (GPT)
20
- self._llm = OpenAI(model = "gpt-4o-mini")
21
  # This is prompt
22
  self._prompt_template = self._get_default_prompt_template()
23
  # This function will help in extracting and run the code, and will produce a dataframe for us
 
17
  # This is your file path
18
  self._paths = paths
19
  # This is your LLM (GPT)
20
+ self._llm = OpenAI()
21
  # This is prompt
22
  self._prompt_template = self._get_default_prompt_template()
23
  # This function will help in extracting and run the code, and will produce a dataframe for us