-
Notifications
You must be signed in to change notification settings - Fork 3.2k
[SDK Release] (Python) CQA inference 2025-05-15-preview #42870
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 19 commits
4b174eb
09000ab
bd85eca
bbeaed5
0943c27
4ed473b
06e9927
635d569
6a282b1
81105a7
667b537
f8762d2
fd396d1
649ddb8
f8b5985
dd4c736
264fcef
81c4515
ff4e77a
9a83976
2abd3e2
83824f4
a066bc1
5efb920
baf31f1
58e16cb
2519382
68e34b9
3ada5cd
e1f7a8e
484db9b
b9a4e3c
48e5dc2
3b7ebee
4072d3b
d08237d
735b27a
43abaaf
02c9247
bad3fc2
caca310
431450f
c1b1457
a4b2415
8b0f735
62bdfd4
5633487
d9470b9
4e62b2b
2821346
80031e2
00d9ce8
66f01a0
ac2dfda
8060acd
623b410
5218755
17b21be
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,18 @@ | ||
| # Release History | ||
|
|
||
| ## 2.0.0b1 (Unreleased) | ||
|
|
||
| ### Breaking Changes | ||
| * Authoring functionality (project creation, knowledge source management, deployment operations) has been removed from this package and moved to a separate dedicated authoring package / namespace. All references to `AuthoringClient`, `QuestionAnsweringProjectsClient`, and related authoring operations have been eliminated from the runtime client distribution. | ||
Amichelangelo marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| * Dropped support for Python versions earlier than 3.9 (aligns with Azure SDK Python support policy going forward). | ||
|
|
||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we add that There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. sure There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is there an actual guide/documentation that we can link to about how to configure this at the project level? Or in the portal? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I just check the service side, the default_language is hardcoded as "en",can not be configured at the project level, remove related line in changelog |
||
| ### Features Added | ||
| * Documentation improvements: expanded README with authentication guidance, AAD usage, async examples, and troubleshooting section. | ||
|
|
||
| ### Other Changes | ||
| * Internal refactoring and dependency grooming in preparation for the authoring/runtime split. | ||
| * Changed samples and README examples to use explicit `AnswersOptions` / `AnswersFromTextOptions` objects as the first argument when calling `get_answers` and `get_answers_from_text`. | ||
|
|
||
| ## 1.1.1 (Unreleased) | ||
|
|
||
| ### Features Added | ||
|
|
@@ -102,4 +115,4 @@ | |
| ## 1.0.0b1 (2021-07-27) | ||
|
|
||
| ### Features Added | ||
| * Initial release - supports querying from text records and knowledge bases. | ||
| * Initial release - supports querying from text records and knowledge bases. | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,8 @@ | ||
| include *.md | ||
| include LICENSE | ||
| include azure/ai/language/questionanswering/py.typed | ||
| recursive-include tests *.py | ||
| recursive-include samples *.py *.md | ||
| include azure/__init__.py | ||
| include azure/ai/__init__.py | ||
| include azure/ai/language/__init__.py | ||
| recursive-include tests *.py | ||
| recursive-include samples *.py *.md | ||
| include azure/ai/language/questionanswering/py.typed |
Uh oh!
There was an error while loading. Please reload this page.