sergeipetrov commited on
Commit
c715ac1
1 Parent(s): 322bbb4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -1
README.md CHANGED
@@ -7,7 +7,7 @@ license: bsd-3-clause
7
  library_name: generic
8
  ---
9
 
10
- # Fork of [salesforce/BLIP](https://github.com/salesforce/BLIP) for 🤗Inference endpoint deployment.
11
 
12
 
13
  ### expected Request payload
@@ -20,4 +20,5 @@ curl URL \
20
  ```
21
  Python:
22
  ```python
 
23
  ```
 
7
  library_name: generic
8
  ---
9
 
10
+ ## [salesforce/BLIP](https://github.com/salesforce/BLIP) for 🤗Inference endpoint deployment.
11
 
12
 
13
  ### expected Request payload
 
20
  ```
21
  Python:
22
  ```python
23
+ requests.post(ENDPOINT_URL, headers={"Content-Type": "image/png"}, data=open("car.png", 'rb').read()).json()
24
  ```