Skip to content

Commit

Permalink
Python client for Model-as-a-Service (MaaS) / Model-as-a-Platform (Ma…
Browse files Browse the repository at this point in the history
…aP) endpoints (#34937)
  • Loading branch information
dargilco authored Jun 7, 2024
1 parent a73ca09 commit ae48eea
Show file tree
Hide file tree
Showing 78 changed files with 12,925 additions and 45 deletions.
4 changes: 4 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,10 @@
# ServiceLabel: %Image Analysis %Service Attention
/sdk/vision/azure-ai-vision-imageanalysis/ @dargilco @rhurey

# PRLabel: %AI Model Inference
# ServiceLabel: %AI Model Inference %Service Attention
/sdk/ai/azure-ai-inference/ @dargilco

# PRLabel: %HDInsight
/sdk/hdinsight/ @idear1203

Expand Down
10 changes: 10 additions & 0 deletions .vscode/cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -1280,6 +1280,16 @@
"smirnov"
]
},
{
"filename": "sdk/ai/azure-ai-inference/**",
"words": [
"ubinary",
"mros",
"Nify",
"ctxt",
"wday"
]
},
{
"filename": "sdk/ai/azure-ai-generative/**",
"words": [
Expand Down
1 change: 1 addition & 0 deletions eng/.docsettings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ omitted_paths:
- sdk/**/swagger/*
- sdk/ml/azure-ai-ml/tests/*
- sdk/vision/azure-ai-vision-imageanalysis/tests/*
- sdk/ai/azure-ai-inference/tests/*
- sdk/storage/azure-storage-extensions/*

language: python
Expand Down
31 changes: 0 additions & 31 deletions eng/pipelines/templates/stages/platform-matrix-ai.json

This file was deleted.

2 changes: 1 addition & 1 deletion sdk/ai/azure-ai-generative/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
url="https://github.com/Azure/azure-sdk-for-python",
keywords="azure, azuresdk, azure sdk",
classifiers=[
"Development Status :: 4 - Beta",
"Development Status :: 7 - Inactive",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
Expand Down
5 changes: 5 additions & 0 deletions sdk/ai/azure-ai-inference/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Release History

## 1.0.0b1 (2024-06-11)

- Initial beta version
21 changes: 21 additions & 0 deletions sdk/ai/azure-ai-inference/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
Copyright (c) Microsoft Corporation.

MIT License

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
7 changes: 7 additions & 0 deletions sdk/ai/azure-ai-inference/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
include *.md
include LICENSE
include azure/ai/inference/py.typed
recursive-include tests *.py
recursive-include samples *.py *.md
include azure/__init__.py
include azure/ai/__init__.py
Loading

0 comments on commit ae48eea

Please sign in to comment.