Update to accomodate resized image update in supporting lib
Browse files
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 |
```
|