We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Calling flows.create_or_update raise error: "This request is not authorized to perform this operation."
How To Reproduce the bug
from azure.identity import DefaultAzureCredential from promptflow.azure import PFClient
client = PFClient.from_config( credential=DefaultAzureCredential(), path='config.json' )
client.flows.create_or_update( flow='./test_flow', display_name='test_flow', )
Expected behavior New flow is created from local files.
Screenshots
Running Information: { "promptflow": "1.16.1", "promptflow-azure": "1.16.1", "promptflow-core": "1.16.1", "promptflow-devkit": "1.16.1", "promptflow-tracing": "1.16.1" } Ubuntu 22.04.1 LTS Python 3.10.12
Additional context Storage account is open for public connections.
The text was updated successfully, but these errors were encountered:
Can you make sure your identity has ai developer role to the ai project you're using?
Sorry, something went wrong.
I have a contributor role. I can create directories and upload new files to the file share using the interface.
No branches or pull requests
Describe the bug
Calling flows.create_or_update raise error: "This request is not authorized to perform this operation."
How To Reproduce the bug
from azure.identity import DefaultAzureCredential
from promptflow.azure import PFClient
client = PFClient.from_config(
credential=DefaultAzureCredential(),
path='config.json'
)
client.flows.create_or_update(
flow='./test_flow',
display_name='test_flow',
)
Expected behavior
New flow is created from local files.
Screenshots
Running Information:
{
"promptflow": "1.16.1",
"promptflow-azure": "1.16.1",
"promptflow-core": "1.16.1",
"promptflow-devkit": "1.16.1",
"promptflow-tracing": "1.16.1"
}
Ubuntu 22.04.1 LTS
Python 3.10.12
Additional context
Storage account is open for public connections.
The text was updated successfully, but these errors were encountered: