gitlost-murali commited on
Commit
4bf7290
·
verified ·
1 Parent(s): b0f5fbe

Update to accomodate resized image update in supporting lib

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -69,7 +69,7 @@ url = "https://docs.askui.com/assets/images/how_askui_works_architecture-363bc8b
69
  image = Image.open(requests.get(url, stream=True).raw).convert("RGB")
70
  prompt = 'click on the text "Operating System"'
71
 
72
- coordinates = pta_text_inference.process_image(image, prompt)
73
  coordinates
74
  >>> [0.3981265723705292, 0.13768285512924194]
75
  ```
 
69
  image = Image.open(requests.get(url, stream=True).raw).convert("RGB")
70
  prompt = 'click on the text "Operating System"'
71
 
72
+ coordinates, _ = pta_text_inference.process_image(image, prompt)
73
  coordinates
74
  >>> [0.3981265723705292, 0.13768285512924194]
75
  ```