Skip to content

Commit 3adddb3

Browse files
Merge pull request #267847 from mrbullwinkle/mrb_03_01_2024_assistants
[Azure OpenAI] Assistants update
2 parents 873f1be + 3e2f497 commit 3adddb3

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

articles/ai-services/openai/concepts/assistants.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,19 @@ We provide a walkthrough of the Assistants playground in our [quickstart guide](
4343
|**Run** | Activation of an Assistant to begin running based on the contents of the Thread. The Assistant uses its configuration and the Thread’s Messages to perform tasks by calling models and tools. As part of a Run, the Assistant appends Messages to the Thread.|
4444
|**Run Step** | A detailed list of steps the Assistant took as part of a Run. An Assistant can call tools or create Messages during it’s run. Examining Run Steps allows you to understand how the Assistant is getting to its final results. |
4545

46+
## Assistants data access
47+
48+
Currently, assistants, threads, messages, and files created for Assistants are scoped at the Azure OpenAI resource level. Therefore, anyone with access to the Azure OpenAI resource or API key access is able to read/write assistants, threads, messages, and files.
49+
50+
We strongly recommend the following data access controls:
51+
52+
- Implement authorization. Before performing reads or writes on assistants, threads, messages, and files, ensure that the end-user is authorized to do so.
53+
- Restrict Azure OpenAI resource and API key access. Carefully consider who has access to Azure OpenAI resources where assistants are being used and associated API keys.
54+
- Routinely audit which accounts/individuals have access to the Azure OpenAI resource. API keys and resource level access enable a wide range of operations including reading and modifying messages and files.
55+
- Enable [diagnostic settings](../how-to/monitoring.md#configure-diagnostic-settings) to allow long-term tracking of certain aspects of the Azure OpenAI resource's activity log.
56+
4657
## See also
4758

4859
* Learn more about Assistants and [Code Interpreter](../how-to/code-interpreter.md)
4960
* Learn more about Assistants and [function calling](../how-to/assistant-functions.md)
5061
* [Azure OpenAI Assistants API samples](https://github.com/Azure-Samples/azureai-samples/tree/main/scenarios/Assistants)
51-
52-
53-

0 commit comments

Comments
 (0)