Update README.md
Browse files
README.md
CHANGED
|
@@ -7,7 +7,7 @@ license: bsd-3-clause
|
|
| 7 |
library_name: generic
|
| 8 |
---
|
| 9 |
|
| 10 |
-
#
|
| 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 |
```
|