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-foundry/how-to/develop/sdk-overview.md
+11-8Lines changed: 11 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,10 +42,12 @@ The Azure AI Foundry SDK is a set of client libraries and services designed to w
42
42
43
43
## Unified Projects client library
44
44
45
-
The Azure AI Foundry Projects client library is a unified library that enables you to use multiple client libraries together by connecting to a single project endpoint.
45
+
46
46
47
47
::: zone pivot="programming-language-python"
48
48
49
+
The [Azure AI Foundry Projects client library for Python](/python/api/overview/azure/ai-projects-readme) is a unified library that enables you to use multiple client libraries together by connecting to a single project endpoint.
50
+
49
51
* Install the project client library
50
52
51
53
```bash
@@ -62,15 +64,15 @@ The Azure AI Foundry Projects client library is a unified library that enables y
62
64
endpoint="your_project_endpoint", # Replace with your endpoint
63
65
credential=DefaultAzureCredential())
64
66
```
65
-
See [Azure AI Projects client library for Python](/python/api/overview/azure/ai-projects-readme).
66
-
67
67
::: zone-end
68
68
69
69
::: zone pivot="programming-language-java"
70
70
71
+
The [Azure AI Foundry Projects client library for Java (preview)](/java/api/overview/azure/ai-projects-readme) is a unified library that enables you to use multiple client libraries together by connecting to a single project endpoint.
* Add these packages to your installation (preview):
75
+
* Add these packages to your installation:
74
76
*`com.azure.ai.projects`
75
77
*`com.azure.core`
76
78
@@ -89,12 +91,14 @@ See [Azure AI Projects client library for Python](/python/api/overview/azure/ai-
89
91
.buildClient();
90
92
```
91
93
92
-
See [Azure AI Projects client library for Java](/java/api/overview/azure/ai-projects-readme).
94
+
93
95
94
96
::: zone-end
95
97
96
98
::: zone pivot="programming-language-javascript"
97
99
100
+
The [Azure AI Foundry Projects client library for JavaScript](/javascript/api/overview/azure/ai-projects-readme) is a unified library that enables you to use multiple client libraries together by connecting to a single project endpoint.
101
+
98
102
* Install dependencies (preview):
99
103
100
104
```bash
@@ -112,12 +116,13 @@ See [Azure AI Projects client library for Java](/java/api/overview/azure/ai-proj
112
116
const project = new AIProjectClient(endpoint, new DefaultAzureCredential());
113
117
```
114
118
115
-
See [Azure AI Projects client library for JavaScript](/javascript/api/overview/azure/ai-projects-readme).
116
119
117
120
::: zone-end
118
121
119
122
::: zone pivot="programming-language-csharp"
120
123
124
+
The [Azure AI Foundry Projects client library for .NET](/dotnet/api/overview/azure/ai-projects-readme) is a unified library that enables you to use multiple client libraries together by connecting to a single project endpoint.
125
+
121
126
* Install packages:
122
127
123
128
```bash
@@ -152,8 +157,6 @@ See [Azure AI Projects client library for JavaScript](/javascript/api/overview/a
152
157
);
153
158
```
154
159
155
-
See [Azure AI Projects client library for .NET](/dotnet/api/overview/azure/ai.projects-readme).
0 commit comments