You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Changes for Beta 7 release of Python Azure AI Projects SDK (#39877)
* Set version to beta 7
* Fix deserialization of RunStepDeltaFileSearchToolCall. (#39798)
* Regeerate code and update tests
* Revert some changes
* Fix sanitizer to run the tests on vector store
* Fix
* Fix spelling
* run black and fix split chinese characters in streaming (#39826)
* Add support for URL citation, and use "agent_id" instead of "assistant_id" in public SDK APIs (wire protocol still uses "assistant_id") (#39822)
* Add convenience method to access URL citations on the ThreadMessage class
* Overload test and rebase (#39237)
* Set release date in CHANGELOG.md
* Update README for Azure Function (#39976)
* Update README for Azure Function
* Update comment on Role assignment in package README.md (#39984)
* Fix toc links on https://pypi.org/project/azure-ai-projects/. Add link to page talking about role assignments
* Revert TOC changes
* More
* tracing update to samples (#39986)
* tracing update to samples
* fixing async sample
* updating snippet
---------
Co-authored-by: Marko Hietala <[email protected]>
---------
Co-authored-by: Darren Cohen <[email protected]>
Co-authored-by: Nikolay Rovinskiy <[email protected]>
Co-authored-by: Jarno Hakulinen <[email protected]>
Co-authored-by: M-Hietala <[email protected]>
Co-authored-by: Marko Hietala <[email protected]>
Copy file name to clipboardExpand all lines: sdk/ai/azure-ai-projects/CHANGELOG.md
+21Lines changed: 21 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,26 @@
1
1
# Release History
2
2
3
+
## 1.0.0b7 (2025-03-06)
4
+
5
+
### Features added
6
+
7
+
* Add support for parsing URL citations in Agent text messages. See new classes `MessageTextUrlCitationAnnotation` and `MessageDeltaTextUrlCitationAnnotation`.
8
+
* Add enum value `ConnectionType.API_KEY` to support enumeration of generic connections that uses API Key authentication.
9
+
10
+
### Sample updates
11
+
12
+
* Update sample `sample_agents_bing_grounding.py` with printout of URL citation.
13
+
* Add new samples `sample_agents_stream_eventhandler_with_bing_grounding.py` and `sample_agents_stream_iteration_with_bing_grounding.py` with printout of URL citation.
14
+
15
+
### Bugs Fixed
16
+
17
+
* Fix a bug in deserialization of `RunStepDeltaFileSearchToolCall` returned during Agent streaming (see [GitHub issue 48333](https://github.com/Azure/azure-sdk-for-net/issues/48333)).
18
+
* Fix for Exception raised while parsing Agent streaming response, in some rare cases, for multibyte UTF-8 languages like Chinese.
19
+
20
+
### Breaking Changes
21
+
22
+
* Rename input argument `assistant_id` to `agent_id` in all Agent methods to align with the "Agent" terminology. Similarly, rename all `assistant_id` properties on classes.
# Iter and wrapped, should have found one node only (the wrap one)
1362
1362
iflen(children) !=1:
1363
1363
raiseDeserializationError(
1364
-
"Tried to deserialize an array not wrapped, and found several nodes '{}'. Maybe you should declare this array as wrapped?".format(# pylint: disable=line-too-long
1364
+
"Tried to deserialize an array not wrapped, and found several nodes '{}'. Maybe you should declare this array as wrapped?".format(
0 commit comments