Skip to content

Commit 1ff0e23

Browse files
committed
updating faq
1 parent cbc1e1f commit 1ff0e23

File tree

2 files changed

+48
-13
lines changed

2 files changed

+48
-13
lines changed

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ Assistants API supports persistent automatically managed threads. This means tha
2525
- [Code Interpreter](../how-to/code-interpreter.md)
2626
- [Function calling](../how-to/assistant-functions.md)
2727

28+
> [!TIP]
29+
> There is no additional [pricing](https://azure.microsoft.com/pricing/details/cognitive-services/openai-service/) or [quota](../quotas-limits.md) for using Assistants unless you use the [code interpreter](../how-to/code-interpreter.md) tool.
30+
2831
Assistant API is built on the same capabilities that power OpenAI’s GPT product. Some possible use cases range from AI-powered product recommender, sales analyst app, coding assistant, employee Q&A chatbot, and more. Start building on the no-code Assistants playground on the Azure OpenAI Studio or start building with the API.
2932

3033
> [!IMPORTANT]

articles/ai-services/openai/faq.yml

Lines changed: 45 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -231,25 +231,57 @@ sections:
231231
- name: Assistants
232232
questions:
233233
- question: |
234-
Where is data stored?
235-
answer:
236-
In the Microsoft tenant.
234+
Do you store any data used in the Assistants API?
235+
answer: |
236+
Yes. Unlike Chat Completions API, Azure OpenAI Assistants is a stateful API, meaning it retains data. There are two types of data stored in the Assistants API:
237+
* Stateful entities: Threads, messages and runs created during Assistants use.
238+
* Files: Uploaded during Assistants setup or as part of a message.
237239
- question: |
238-
When I use Assistants, Is my data used Microsoft for training models?
239-
answer:
240-
No. Data is not used for Microsoft not used for training models.
240+
Where is this data stored?
241+
answer: |
242+
Data is stored in a secure, Microsoft-managed storage account that is logically separated.
243+
- question: |
244+
How long is this data stored?
245+
answer: |
246+
All used data persists in this system unless you explicitly delete this data. Use the [delete function](./assistants-reference-threads) with the thread ID of the thread you want to delete. Clearing the Run in the Assistants Playground does not delete threads, however deleting them using delete function will not list them in the thread page.
247+
- question: |
248+
Can I bring my own data store to use with Assistants?
249+
answer: |
250+
No. Currently Assistants supports only local files uploaded to the Assistants-managed storage. You cannot use your private storage account with Assistants.
251+
- question: |
252+
Is my data used by Microsoft for training models?
253+
answer: |
254+
No. Data is not used for Microsoft not used for training models. See the [Responsible AI documentation](/legal/cognitive-services/openai/data-privacy?context=%2Fazure%2Fai-services%2Fopenai%2Fcontext%2Fcontext) for more information.
241255
- question: |
242256
Where is data stored geographically?
243-
answer:
244-
Azure OpenAI Assistants endpoints are regional, and data is stored in the same region as the endpoint. Under no condition can data leave the region its in.
257+
answer: |
258+
Azure OpenAI Assistants endpoints are regional, and data is stored in the same region as the endpoint. See the [Azure data residency documentation](/explore/global-infrastructure/data-residency/#overview) for more information.
259+
- question: |
260+
How am I charged for Assistants?
261+
answer: |
262+
Currently, when you use Assistants API, you're billed for the following:
263+
1. Inference cost (input and output) of the base model you are using for each Assistant (for example gpt-4-0125). If you've created multiple Assistants, you will be charged for the base model attached to each Assistant.
264+
2. If you've enabled the Code Interpreter tool.
265+
a. If your assistant calls Code Interpreter simultaneously in two different threads, this would create two Code Interpreter sessions, each of which would be charged.
266+
b. Each session is active by default for one hour, which means that you would only pay this fee once if your user keeps giving instructions to Code Interpreter in the same thread for up to one hour.
267+
268+
See the [pricing page](https://azure.microsoft.com/pricing/details/cognitive-services/openai-service/) for more information.
245269
- question: |
246270
Is there any additional pricing or quota for using Assistants?
247-
answer:
248-
No. All quotas apply to using models with Assistants.
271+
answer: |
272+
No. All [quotas](./quotas-limits.md) apply to using models with Assistants.
249273
- question: |
250-
Is it possible to use a customer managed private storage account?
251-
answer:
252-
Currently you can't use a customer managed storage account?
274+
Does the Assistants API supports non-Azure OpenAI models?
275+
answer: |
276+
Assistants API only supports Azure OpenAI models.
277+
- question: |
278+
Is the Assistants API generally available?
279+
answer: |
280+
The Assistants API is currently in public preview. Stay informed of our latest product updates by regularly visiting our [What's New](./whats-new.md) page.
281+
- question: |
282+
What are some examples or other resources I can use to learn about Assistants?
283+
answer: |
284+
See the [Conceptual](./concepts/assistants.md), [quickstart](./assistants-quickstart.md), [how-to](./how-to/assistant.md) articles for information on getting started and using Assistnats. You can also check out Azure OpenAI Assistants code samples on [GitHub](https://github.com/Azure-Samples/azureai-samples/tree/main/scenarios/Assistants).
253285
- name: Web app
254286
questions:
255287
- question: |

0 commit comments

Comments
 (0)