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
Copy file name to clipboardExpand all lines: sdk/ai/Azure.AI.Projects/CHANGELOG.md
+3-4Lines changed: 3 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,16 +1,15 @@
1
1
# Release History
2
2
3
-
## 1.0.0-beta.5 (Unreleased)
3
+
## 1.0.0-beta.5 (2025-03-13)
4
4
5
5
### Features Added
6
6
7
7
* Added `ConnectionProvider` abstraction in `AIProjectClient` to enable seamless connectivity with Azure OpenAI, Inference, and Search SDKs.
8
+
* Added support for URL citations with the `MessageTextUrlCitationAnnotation` class. `MessageTextContent` objects now can possibly have `Annotations` populated in order to provide information on URL citations.
8
9
9
10
### Breaking Changes
10
11
11
-
### Bugs Fixed
12
-
13
-
### Other Changes
12
+
*`assistantId` has been renamed to `agentId` throughout the package.
Copy file name to clipboardExpand all lines: sdk/ai/Azure.AI.Projects/src/Custom/Agent/AgentsClient.Streaming.cs
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ public partial class AgentsClient
21
21
/// <see cref="Agent"/>.
22
22
/// </summary>
23
23
/// <param name="threadId"> Identifier of the thread. </param>
24
-
/// <param name="assistantId"> The ID of the agent that should run the thread. </param>
24
+
/// <param name="agentId"> The ID of the agent that should run the thread. </param>
25
25
/// <param name="overrideModelName"> The overridden model name that the agent should use to run the thread. </param>
26
26
/// <param name="overrideInstructions"> The overridden system instructions that the agent should use to run the thread. </param>
27
27
/// <param name="additionalInstructions">
@@ -57,17 +57,17 @@ public partial class AgentsClient
57
57
/// <param name="parallelToolCalls"> If `true` functions will run in parallel during tool use. </param>
58
58
/// <param name="metadata"> A set of up to 16 key/value pairs that can be attached to an object, used for storing additional information about that object in a structured format. Keys may be up to 64 characters in length and values may be up to 512 characters in length. </param>
59
59
/// <param name="cancellationToken"> The cancellation token to use. </param>
60
-
/// <exception cref="ArgumentNullException"> <paramref name="threadId"/> or <paramref name="assistantId"/> is null. </exception>
60
+
/// <exception cref="ArgumentNullException"> <paramref name="threadId"/> or <paramref name="agentId"/> is null. </exception>
61
61
/// <exception cref="ArgumentException"> <paramref name="threadId"/> is an empty string, and was expected to be non-empty. </exception>
/// <param name="parallelToolCalls"> If `true` functions will run in parallel during tool use. </param>
134
134
/// <param name="metadata"> A set of up to 16 key/value pairs that can be attached to an object, used for storing additional information about that object in a structured format. Keys may be up to 64 characters in length and values may be up to 512 characters in length. </param>
135
135
/// <param name="cancellationToken"> The cancellation token to use. </param>
136
-
/// <exception cref="ArgumentNullException"> <paramref name="threadId"/> or <paramref name="assistantId"/> is null. </exception>
136
+
/// <exception cref="ArgumentNullException"> <paramref name="threadId"/> or <paramref name="agentId"/> is null. </exception>
137
137
/// <exception cref="ArgumentException"> <paramref name="threadId"/> is an empty string, and was expected to be non-empty. </exception>
0 commit comments