Skip to content

Commit d530600

Browse files
committed
update
1 parent 3d84668 commit d530600

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

articles/ai-services/openai/how-to/stored-completions.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,13 @@ pip install --upgrade openai
315315

316316
# [Python (Microsoft Entra ID)](#tab/python-secure)
317317

318+
Additional parameters:
319+
320+
* `metadata`: Filter by the key/value pair in the stored completions
321+
* `after`: Identifier for the last stored completion message from the previous pagination request.
322+
* `limit`: Number of stored completions messages to retrieve.
323+
* `order`: Order of the results by index (ascending or descending).
324+
318325
```python
319326
from openai import AzureOpenAI
320327
from azure.identity import DefaultAzureCredential, get_bearer_token_provider
@@ -534,9 +541,9 @@ curl https://YOUR-RESOURCE-NAME.openai.azure.com/openai/chat/completions/chatcmp
534541

535542
Additional parameters:
536543

537-
`after`: Identifier for the last stored completion message from the previous pagination request.
538-
`limit`: Number of stored completions messages to retrieve.
539-
`order`: Order of the results by index (ascending or descending).
544+
* `after`: Identifier for the last stored completion message from the previous pagination request.
545+
* `limit`: Number of stored completions messages to retrieve.
546+
* `order`: Order of the results by index (ascending or descending).
540547

541548
# [Python (Microsoft Entra ID)](#tab/python-secure)
542549

0 commit comments

Comments
 (0)