Skip to content

Commit 4242689

Browse files
committed
fix
1 parent 74e2e59 commit 4242689

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

articles/ai-foundry/model-inference/includes/use-chat-multi-modal/csharp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ Usage:
163163
Total tokens: 2506
164164
```
165165

166-
If you want to avoid sending the information over the requests, you can place the content in an accessible cloud location and pass the URL as an input to the model. The Python SDK doesn't provide a direct way to do it, but you can indicate the payload as follows:
166+
The model can read the content from an **accessible cloud location** by passing the URL as an input. The Python SDK doesn't provide a direct way to do it, but you can indicate the payload as follows:
167167

168168
```csharp
169169
var requestOptions = new ChatCompletionsOptions()

articles/ai-foundry/model-inference/includes/use-chat-multi-modal/python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ Usage:
186186
Total tokens: 84
187187
```
188188

189-
If you want to avoid sending the information over the requests, you can place the content in an accessible cloud location and pass the URL as an input to the model. The Python SDK doesn't provide a direct way to do it, but you can indicate the payload as follows:
189+
The model can read the content from an **accessible cloud location** by passing the URL as an input. The Python SDK doesn't provide a direct way to do it, but you can indicate the payload as follows:
190190

191191
```python
192192
response = client.complete(

articles/ai-foundry/model-inference/includes/use-chat-multi-modal/rest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ The response is as follows, where you can see the model's usage statistics:
185185
}
186186
```
187187

188-
If you want to avoid sending the information over the requests, you can place the content in an accessible cloud location and pass the URL as an input to the model. The Python SDK doesn't provide a direct way to do it, but you can indicate the payload as follows:
188+
The model can read the content from an **accessible cloud location** by passing the URL as an input. You can indicate the payload as follows:
189189

190190
```json
191191
{

0 commit comments

Comments
 (0)