mertcobanov commited on
Commit
42dba5e
1 Parent(s): 48481a1

FIX: wrong import

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -20,7 +20,7 @@ def get_text(input_img):
20
  # Submit button
21
  def get_parsed_address(input_img):
22
 
23
- address_full_text = utils.get_text(input_img)
24
  return openai_response(address_full_text)
25
 
26
 
 
20
  # Submit button
21
  def get_parsed_address(input_img):
22
 
23
+ address_full_text = get_text(input_img)
24
  return openai_response(address_full_text)
25
 
26