Skip to content

Commit ae48eea

Browse files
authored
Python client for Model-as-a-Service (MaaS) / Model-as-a-Platform (MaaP) endpoints (#34937)
1 parent a73ca09 commit ae48eea

File tree

78 files changed

+12925
-45
lines changed

Some content is hidden

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

78 files changed

+12925
-45
lines changed

.github/CODEOWNERS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,10 @@
209209
# ServiceLabel: %Image Analysis %Service Attention
210210
/sdk/vision/azure-ai-vision-imageanalysis/ @dargilco @rhurey
211211

212+
# PRLabel: %AI Model Inference
213+
# ServiceLabel: %AI Model Inference %Service Attention
214+
/sdk/ai/azure-ai-inference/ @dargilco
215+
212216
# PRLabel: %HDInsight
213217
/sdk/hdinsight/ @idear1203
214218

.vscode/cspell.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1280,6 +1280,16 @@
12801280
"smirnov"
12811281
]
12821282
},
1283+
{
1284+
"filename": "sdk/ai/azure-ai-inference/**",
1285+
"words": [
1286+
"ubinary",
1287+
"mros",
1288+
"Nify",
1289+
"ctxt",
1290+
"wday"
1291+
]
1292+
},
12831293
{
12841294
"filename": "sdk/ai/azure-ai-generative/**",
12851295
"words": [

eng/.docsettings.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ omitted_paths:
1414
- sdk/**/swagger/*
1515
- sdk/ml/azure-ai-ml/tests/*
1616
- sdk/vision/azure-ai-vision-imageanalysis/tests/*
17+
- sdk/ai/azure-ai-inference/tests/*
1718
- sdk/storage/azure-storage-extensions/*
1819

1920
language: python

eng/pipelines/templates/stages/platform-matrix-ai.json

Lines changed: 0 additions & 31 deletions
This file was deleted.

sdk/ai/azure-ai-generative/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
url="https://github.com/Azure/azure-sdk-for-python",
4343
keywords="azure, azuresdk, azure sdk",
4444
classifiers=[
45-
"Development Status :: 4 - Beta",
45+
"Development Status :: 7 - Inactive",
4646
"Programming Language :: Python",
4747
"Programming Language :: Python :: 3",
4848
"Programming Language :: Python :: 3 :: Only",
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Release History
2+
3+
## 1.0.0b1 (2024-06-11)
4+
5+
- Initial beta version

sdk/ai/azure-ai-inference/LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Copyright (c) Microsoft Corporation.
2+
3+
MIT License
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
include *.md
2+
include LICENSE
3+
include azure/ai/inference/py.typed
4+
recursive-include tests *.py
5+
recursive-include samples *.py *.md
6+
include azure/__init__.py
7+
include azure/ai/__init__.py

0 commit comments

Comments
 (0)