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
@@ -108,7 +108,8 @@ For example, if you're creating a chatbot where the data consists of transcripti
108
108
109
109
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.
110
110
111
-
> [!NOTE]
111
+
> [!NOTE]
112
+
> The system message is used to modify how gpt assistant responds to user question based on retrieved documentation. It does not affect the retrieval process. If you would love to provide instruction for the retrieval process, it is better to include in the questions.
112
113
> 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.
113
114
114
115
### Maximum response
@@ -189,6 +190,8 @@ You can also use the available standalone web app to interact with your model us
189
190
190
191

191
192
193
+
##### Web app customization
194
+
192
195
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).
193
196
194
197
When customizing the app, we recommend:
@@ -201,11 +204,10 @@ When customizing the app, we recommend:
201
204
202
205
- Pulling changes from the `main` branch for the web app's source code frequently to ensure you have the latest bug fixes and improvements.
203
206
204
-
#### Important considerations
207
+
#####Important considerations
205
208
206
209
- Publishing creates an Azure App Service in your subscription. It may incur costs depending on the
207
210
[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.
208
-
- You can customize the frontend and backend logic of the web app.
209
211
- 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):
210
212
211
213
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**.
@@ -219,7 +221,7 @@ When customizing the app, we recommend:
219
221
220
222
### Using the API
221
223
222
-
Consider setting the following parameters even if they are optional for using the API.
224
+
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