You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/ai-services/openai/concepts/use-your-data.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -191,7 +191,8 @@ For example, if you're creating a chatbot where the data consists of transcripti
191
191
192
192
This system message can help improve the quality of the response by specifying the domain (in this case finance) and mentioning that the data consists of call transcriptions. It helps set the necessary context for the model to respond appropriately.
193
193
194
-
> [!NOTE]
194
+
> [!NOTE]
195
+
> The system message is used to modify how GPT assistant responds to a user question based on retrieved documentation. It does not affect the retrieval process. If you'd like to provide instructions for the retrieval process, it is better to include them in the questions.
195
196
> The system message is only guidance. The model might not adhere to every instruction specified because it has been primed with certain behaviors such as objectivity, and avoiding controversial statements. Unexpected behavior may occur if the system message contradicts with these behaviors.
196
197
197
198
### Maximum response
@@ -291,6 +292,8 @@ You can also use the available standalone web app to interact with your model us
291
292
292
293

293
294
295
+
##### Web app customization
296
+
294
297
You can also customize the app's frontend and backend logic. For example, you could change the icon that appears in the center of the app by updating `/frontend/src/assets/Azure.svg` and then redeploying the app [using the Azure CLI](https://github.com/microsoft/sample-app-aoai-chatGPT#deploy-with-the-azure-cli). See the source code for the web app, and more information [on GitHub](https://github.com/microsoft/sample-app-aoai-chatGPT).
295
298
296
299
When customizing the app, we recommend:
@@ -303,12 +306,11 @@ When customizing the app, we recommend:
303
306
304
307
- Pulling changes from the `main` branch for the web app's source code frequently to ensure you have the latest bug fixes and improvements.
305
308
306
-
#### Important considerations
309
+
#####Important considerations
307
310
308
311
- Publishing creates an Azure App Service in your subscription. It may incur costs depending on the
309
312
310
313
[pricing plan](https://azure.microsoft.com/pricing/details/app-service/windows/) you select. When you're done with your app, you can delete it from the Azure portal.
311
-
- You can customize the frontend and backend logic of the web app.
312
314
- By default, the app will only be accessible to you. To add authentication (for example, restrict access to the app to members of your Azure tenant):
313
315
314
316
1. Go to the [Azure portal](https://portal.azure.com/#home) and search for the app name you specified during publishing. Select the web app, and go to the **Authentication** tab on the left navigation menu. Then select **Add an identity provider**.
@@ -340,7 +342,7 @@ Deleting your web app does not delete your Cosmos DB instance automatically. To
340
342
341
343
### Using the API
342
344
343
-
Consider setting the following parameters even if they are optional for using the API.
345
+
After you upload your data through Azure OpenAI studio, you can make a call against Azure OpenAI models through APIs. Consider setting the following parameters even if they are optional for using the API.
0 commit comments