Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
ba8d122
Migrate azure-ai-speech-transcription to azure-ai-transcription
amber-yujueWang Oct 29, 2025
7bed741
Bring cspell settings
amber-yujueWang Oct 29, 2025
274332c
fix broken link
amber-yujueWang Oct 29, 2025
b2e1e31
Revert "fix broken link"
amber-yujueWang Oct 29, 2025
5c6ffde
Rename azure.ai.transcription to azure-ai-transcription
amber-yujueWang Oct 29, 2025
9f4dc21
Merge remote-tracking branch 'upstream/main' into wangamber/transcrip…
amber-yujueWang Oct 29, 2025
5578385
Merge remote-tracking branch 'upstream/main' into wangamber/transcrip…
amber-yujueWang Nov 3, 2025
322264b
add transcribe_from_url() convenience method for URL-based transcription
amber-yujueWang Nov 3, 2025
d3ec1f7
Revert "Bring cspell settings"
amber-yujueWang Nov 3, 2025
f7856a5
Renamed TranscribeRequestContent to TranscriptionContent
amber-yujueWang Nov 4, 2025
9d06e68
Restore .vscode/cspell.json from upstream/main
amber-yujueWang Nov 4, 2025
740f955
Refactor transcribe_from_url() to use TranscriptionOptions parameter
amber-yujueWang Nov 4, 2025
2c97390
Merge remote-tracking branch 'upstream/main' into wangamber/transcrip…
amber-yujueWang Nov 4, 2025
8d57c31
fix pylint
amber-yujueWang Nov 4, 2025
67e2edb
Merge remote-tracking branch 'upstream/main' into wangamber/transcrip…
amber-yujueWang Nov 8, 2025
f86704b
add codeowner file
amber-yujueWang Nov 8, 2025
5835ed5
update release date and change log
amber-yujueWang Nov 10, 2025
132bdfc
added tsp-location file
amber-yujueWang Nov 11, 2025
0746570
Merge branch 'main' into wangamber/transcription
amber-yujueWang Nov 14, 2025
e775043
Merge branch 'main' into wangamber/transcription
amber-yujueWang Nov 14, 2025
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: 6 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,12 @@
# PRLabel: %CognitiveServices
/sdk/cognitiveservices/ @lmazuel

# ServiceOwners: @amber-yujueWang @rhurey @xitzhang
# ServiceLabel: %Speech Transcription

# PRLabel: %Speech Transcription
/sdk/cognitiveservices/azure-ai-transcription/ @amber-yujueWang @rhurey @xitzhang

# ServiceLabel: %Communication
# PRLabel: %Communication
/sdk/communication/ @acsdevx-msft
Expand Down
7 changes: 7 additions & 0 deletions sdk/cognitiveservices/azure-ai-transcription/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Release History

## 1.0.0b1 (2025-11-10)

### Other Changes

- Initial version
21 changes: 21 additions & 0 deletions sdk/cognitiveservices/azure-ai-transcription/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/cognitiveservices/azure-ai-transcription/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
include *.md
include LICENSE
include azure/ai/transcription/py.typed
recursive-include tests *.py
recursive-include samples *.py *.md
include azure/__init__.py
include azure/ai/__init__.py
Loading