summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/client.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/client.md b/docs/client.md
index 4273d9d9..5e6b79ba 100644
--- a/docs/client.md
+++ b/docs/client.md
@@ -171,17 +171,17 @@ response = client.chat.completions.create(
)
print(response.choices[0].message.content)
```
+
```
User: What are on this image?
```
-![Waterfall](/docs/waterfall.jpeg)
+![Waterfall](/docs/waterfall.jpeg)
```
Bot: There is a waterfall in the middle of a jungle. There is a rainbow over...
```
### Example: Using a Vision Model
-
The following code snippet demonstrates how to use a vision model to analyze an image and generate a description based on the content of the image. This example shows how to fetch an image, send it to the model, and then process the response.
```python