Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/data-science/consume-data-agent-python.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,14 +95,14 @@ Use the `InteractiveBrowserCredential` class to authenticate with Microsoft Entr

```python
from azure.identity import InteractiveBrowserCredential
from fabric_data_agent_client import DataAgentClient
from fabric_data_agent_client import FabricDataAgentClient
credential = InteractiveBrowserCredential()
```

## Create the data agent client

```python
client = DataAgentClient(credential=credential)
client = FabricDataAgentClient(credential=credential)
```
> [!NOTE]
> - The `fabric-data-agent-client` package provides the client SDK for connecting to the Fabric data agent.
Expand Down Expand Up @@ -149,4 +149,4 @@ This output helps you understand how the agent produced its response and gives t

- [Fabric data agent concepts](concept-data-agent.md)
- [Fabric data agent SDK](fabric-data-agent-sdk.md)
- [Data agent end-to-end tutorial](data-agent-end-to-end-tutorial.md)
- [Data agent end-to-end tutorial](data-agent-end-to-end-tutorial.md)