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/machine-learning/prompt-flow/troubleshoot-guidance.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -102,7 +102,7 @@ You can view the serverless instance used by compute session in the compute sess
102
102
103
103
Compute session support to use `requirements.txt` or custom base image in `flow.dag.yaml` to customize the image. We would recommend you to use `requirements.txt` for common case, which will use `pip install -r requirements.txt` to install the packages. If you have dependency more than python packages, you need to follow the [Customize base image](./how-to-customize-session-base-image.md) to create build a new image base on top of prompt flow base image. Then use it in `flow.dag.yaml`. Learn more [how to specify base image in compute session.](./how-to-manage-compute-session.md#change-the-base-image-for-compute-session)
104
104
105
-
- You cannot use arbitrary base image to create Compute session, you need to use the base image provide by prompt flow.
105
+
- You can't use arbitrary base image to create Compute session, you need to use the base image provide by prompt flow.
106
106
- Don't pin the version of `promptflow` and `promptflow-tools` in `requirements.txt`, because we already include them in the base image. Using old version of `promptflow` and `promptflow-tools` may cause unexpected behavior.
107
107
108
108
## Flow run related issues
@@ -275,11 +275,11 @@ If you encounter an error like "Access denied to list workspace secret", check w
275
275
276
276
You can follow [Identity-based data authentication](../how-to-administrate-data-authentication.md#identity-based-data-authentication) this part to make your data store credential-less.
277
277
278
-
You need change auth type of data store to None which stands for meid_token based auth. For blob/adls gen1/adls gen2 based data, you can make change from data store detail page, or CLI/SDK: https://github.com/Azure/azureml-examples/tree/main/cli/resources/datastore
278
+
You need to change auth type of data store to None, which stands for meid_token based auth. For blob/adls gen1/adls gen2 based data, you can make change from data store detail page, or CLI/SDK: https://github.com/Azure/azureml-examples/tree/main/cli/resources/datastore
279
279
280
280
:::image type="content" source="./media/faq/datastore_auth_type.png" alt-text="Screenshot of auth type for datastore. " lightbox = "./media/faq/datastore_auth_type.png":::
281
281
282
-
For fileshare based data store, you can only change auth type for rest api: [datastores-create-or-update](https://learn.microsoft.com/en-us/rest/api/azureml/datastores/create-or-update?view=rest-azureml-2023-10-01&tabs=HTTP#code-try-0). You can first use [datastores-get](https://learn.microsoft.com/en-us/rest/api/azureml/datastores/get?view=rest-azureml-2023-10-01&tabs=HTTP#code-try-0) to get the body properties of datastore, then change `"credentialsType": "None"`
282
+
For fileshare based data store, you can only change auth type for REST API: [datastores-create-or-update](https://learn.microsoft.com/en-us/rest/api/azureml/datastores/create-or-update?view=rest-azureml-2023-10-01&tabs=HTTP#code-try-0). You can first use [datastores-get](https://learn.microsoft.com/en-us/rest/api/azureml/datastores/get?view=rest-azureml-2023-10-01&tabs=HTTP#code-try-0) to get the body properties of datastore, then change `"credentialsType": "None"`
283
283
284
284
:::image type="content" source="./media/faq/datastore-update-rest.png" alt-text="Screenshot of rest for datastore update. " lightbox = "./media/faq/datastore-update-rest.png":::
0 commit comments