Hi @桂學文 Kevin Kuei
I'm glad that you were able to resolve your issue and thank you for posting your solution so that others experiencing the same thing can easily reference this!
Since the Microsoft Q&A community has a policy that "The question author cannot accept their own answer. They can only accept answers by others", I'll repost your solution in case you'd like to Accept the answer.
Issue:
While following the official Azure AI Foundry SDK client documentation (Python), the following error occurred:
TypeError: AIProjectClient.from_connection_string() missing 1 required positional argument: 'conn_str'
While attempting to initialize the AIProjectClient
using an endpoint and DefaultAzureCredential
, but the from_connection_string()
method specifically requires the conn_str
argument.
Solution:
The issue was resolved by upgrading the
azure-ai-projects
package to version1.0.0b11
.
This version update resolved the missing argument error and allowed the SDK to properly accept the required parameters for AIProjectClient
.
Please click Accept Answer and kindly upvote it so that other people who face a similar issue may get benefitted from it.