Skip to content

Commit e67f450

Browse files
committed
Initial commit: AI Foundry SDK - Project Library
1 parent 0ad6db6 commit e67f450

File tree

94 files changed

+18319
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+18319
-0
lines changed

eng/versioning/external_dependencies.txt

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ com.microsoft.azure:qpid-proton-j-extensions;1.2.5
3636
com.microsoft.sqlserver:mssql-jdbc;10.2.3.jre8
3737
com.microsoft.azure:azure-functions-maven-plugin;1.30.0
3838
com.microsoft.azure.functions:azure-functions-java-library;2.2.0
39+
com.azure:azure-ai-agents-persistent;1.0.0-alpha.20250508.5
3940
com.mysql:mysql-connector-j;9.0.0
4041
com.openai:openai-java;1.3.1
4142
com.squareup.okhttp3:okhttp;4.12.0

eng/versioning/version_client.txt

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ com.azure:azure-ai-openai-assistants;1.0.0-beta.5;1.0.0-beta.6
4949
com.azure:azure-ai-openai-realtime;1.0.0-beta.1;1.0.0-beta.1
5050
com.azure:azure-ai-openai-stainless;1.0.0-beta.1;1.0.0-beta.1
5151
com.azure:azure-ai-personalizer;1.0.0-beta.1;1.0.0-beta.2
52+
com.azure:azure-ai-projects;1.0.0-beta.1;1.0.0-beta.1
5253
com.azure:azure-ai-textanalytics;5.5.6;5.6.0-beta.1
5354
com.azure:azure-ai-textanalytics-perf;1.0.0-beta.1;1.0.0-beta.1
5455
com.azure:azure-ai-translation-text;1.1.2;1.2.0-beta.1

sdk/ai/azure-ai-projects/CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Release History
2+
3+
## 1.0.0-beta.1 (Unreleased)
4+
5+
- Azure Projects client library for Java. This package contains Microsoft Azure Projects client library.
6+
7+
### Features Added
8+
9+
### Breaking Changes
10+
11+
### Bugs Fixed
12+
13+
### Other Changes

sdk/ai/azure-ai-projects/README.md

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
# Azure Projects client library for Java
2+
3+
Azure Projects client library for Java.
4+
5+
This package contains Microsoft Azure Projects client library.
6+
7+
## Documentation
8+
9+
Various documentation is available to help you get started
10+
11+
- [API reference documentation][docs]
12+
- [Product documentation][product_documentation]
13+
14+
## Getting started
15+
16+
### Prerequisites
17+
18+
- [Java Development Kit (JDK)][jdk] with version 8 or above
19+
- [Azure Subscription][azure_subscription]
20+
21+
### Adding the package to your product
22+
23+
[//]: # ({x-version-update-start;com.azure:azure-ai-projects;current})
24+
```xml
25+
<dependency>
26+
<groupId>com.azure</groupId>
27+
<artifactId>azure-ai-projects</artifactId>
28+
<version>1.0.0-beta.1</version>
29+
</dependency>
30+
```
31+
[//]: # ({x-version-update-end})
32+
33+
### Authentication
34+
35+
[Azure Identity][azure_identity] package provides the default implementation for authenticating the client.
36+
37+
## Key concepts
38+
39+
## Examples
40+
41+
```java com.azure.ai.projects.readme
42+
```
43+
44+
### Service API versions
45+
46+
The client library targets the latest service API version by default.
47+
The service client builder accepts an optional service API version parameter to specify which API version to communicate.
48+
49+
#### Select a service API version
50+
51+
You have the flexibility to explicitly select a supported service API version when initializing a service client via the service client builder.
52+
This ensures that the client can communicate with services using the specified API version.
53+
54+
When selecting an API version, it is important to verify that there are no breaking changes compared to the latest API version.
55+
If there are significant differences, API calls may fail due to incompatibility.
56+
57+
Always ensure that the chosen API version is fully supported and operational for your specific use case and that it aligns with the service's versioning policy.
58+
59+
## Troubleshooting
60+
61+
## Next steps
62+
63+
## Contributing
64+
65+
For details on contributing to this repository, see the [contributing guide](https://github.com/Azure/azure-sdk-for-java/blob/main/CONTRIBUTING.md).
66+
67+
1. Fork it
68+
1. Create your feature branch (`git checkout -b my-new-feature`)
69+
1. Commit your changes (`git commit -am 'Add some feature'`)
70+
1. Push to the branch (`git push origin my-new-feature`)
71+
1. Create new Pull Request
72+
73+
<!-- LINKS -->
74+
[product_documentation]: https://azure.microsoft.com/services/
75+
[docs]: https://azure.github.io/azure-sdk-for-java/
76+
[jdk]: https://learn.microsoft.com/azure/developer/java/fundamentals/
77+
[azure_subscription]: https://azure.microsoft.com/free/
78+
[azure_identity]: https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/identity/azure-identity

sdk/ai/azure-ai-projects/assets.json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"AssetsRepo":"Azure/azure-sdk-assets","AssetsRepoPrefixPath":"java","TagPrefix":"java/ai/azure-ai-projects","Tag":""}

sdk/ai/azure-ai-projects/pom.xml

+103
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
<!--
2+
~ Copyright (c) Microsoft Corporation. All rights reserved.
3+
Licensed under the MIT License.
4+
Code generated by Microsoft (R) TypeSpec Code Generator.
5+
-->
6+
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
7+
<modelVersion>4.0.0</modelVersion>
8+
<parent>
9+
<groupId>com.azure</groupId>
10+
<artifactId>azure-client-sdk-parent</artifactId>
11+
<version>1.7.0</version> <!-- {x-version-update;com.azure:azure-client-sdk-parent;current} -->
12+
<relativePath>../../parents/azure-client-sdk-parent</relativePath>
13+
</parent>
14+
15+
<groupId>com.azure</groupId>
16+
<artifactId>azure-ai-projects</artifactId>
17+
<version>1.0.0-beta.1</version> <!-- {x-version-update;com.azure:azure-ai-projects;current} -->
18+
<packaging>jar</packaging>
19+
20+
<name>Microsoft Azure SDK for Projects</name>
21+
<description>This package contains Microsoft Azure Projects client library.</description>
22+
<url>https://github.com/Azure/azure-sdk-for-java</url>
23+
24+
<licenses>
25+
<license>
26+
<name>The MIT License (MIT)</name>
27+
<url>http://opensource.org/licenses/MIT</url>
28+
<distribution>repo</distribution>
29+
</license>
30+
</licenses>
31+
32+
<scm>
33+
<url>https://github.com/Azure/azure-sdk-for-java</url>
34+
<connection>scm:git:[email protected]:Azure/azure-sdk-for-java.git</connection>
35+
<developerConnection>scm:git:[email protected]:Azure/azure-sdk-for-java.git</developerConnection>
36+
<tag>HEAD</tag>
37+
</scm>
38+
<developers>
39+
<developer>
40+
<id>microsoft</id>
41+
<name>Microsoft</name>
42+
</developer>
43+
</developers>
44+
<properties>
45+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
46+
47+
<jacoco.min.linecoverage>0</jacoco.min.linecoverage>
48+
<jacoco.min.branchcoverage>0</jacoco.min.branchcoverage>
49+
50+
<javaModulesSurefireArgLine>
51+
--add-exports com.azure.core/com.azure.core.implementation.util=ALL-UNNAMED
52+
--add-opens com.azure.core/com.azure.core.implementation.util=ALL-UNNAMED
53+
</javaModulesSurefireArgLine>
54+
</properties>
55+
<dependencies>
56+
<dependency>
57+
<groupId>com.azure</groupId>
58+
<artifactId>azure-core</artifactId>
59+
<version>1.55.3</version> <!-- {x-version-update;com.azure:azure-core;dependency} -->
60+
</dependency>
61+
<dependency>
62+
<groupId>com.azure</groupId>
63+
<artifactId>azure-core-http-netty</artifactId>
64+
<version>1.15.11</version> <!-- {x-version-update;com.azure:azure-core-http-netty;dependency} -->
65+
</dependency>
66+
<dependency>
67+
<groupId>com.azure</groupId>
68+
<artifactId>azure-storage-blob</artifactId>
69+
<version>12.30.0</version> <!-- {x-version-update;com.azure:azure-storage-blob;dependency} -->
70+
</dependency>
71+
<dependency>
72+
<groupId>com.azure</groupId>
73+
<artifactId>azure-core-test</artifactId>
74+
<version>1.27.0-beta.8</version> <!-- {x-version-update;com.azure:azure-core-test;dependency} -->
75+
<scope>test</scope>
76+
</dependency>
77+
<dependency>
78+
<groupId>com.azure</groupId>
79+
<artifactId>azure-identity</artifactId>
80+
<version>1.16.0</version> <!-- {x-version-update;com.azure:azure-identity;dependency} -->
81+
<scope>test</scope>
82+
</dependency>
83+
84+
<dependency>
85+
<groupId>com.azure</groupId>
86+
<artifactId>azure-ai-agents-persistent</artifactId>
87+
<version>1.0.0-alpha.20250508.5</version> <!-- {x-version-update;com.azure:azure-ai-agents-persistent;external_dependency} -->
88+
</dependency>
89+
</dependencies>
90+
91+
<repositories>
92+
<repository>
93+
<id>azure-sdk-for-java</id>
94+
<url>https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-java/maven/v1</url>
95+
<releases>
96+
<enabled>true</enabled>
97+
</releases>
98+
<snapshots>
99+
<enabled>true</enabled>
100+
</snapshots>
101+
</repository>
102+
</repositories>
103+
</project>

0 commit comments

Comments
 (0)