Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
5d4cadb
Initial plan
Copilot Oct 1, 2025
7d04e09
Update tsp-location.yaml files to target commit
Copilot Oct 1, 2025
b934029
Regenerate code for 28 libraries with updated tsp-location
Copilot Oct 1, 2025
b8fbdb8
Fix directory paths and regenerate remaining 4 libraries
Copilot Oct 1, 2025
82f5ba4
Merge remote-tracking branch 'origin/main' into copilot/fix-18a989fc-…
Copilot Oct 2, 2025
ede8520
Revert changes to sln, csproj, md, and props files
Copilot Oct 2, 2025
02f4be6
Revert changes to Azure.AI.VoiceLive/CHANGELOG.md
Copilot Oct 2, 2025
9a34a33
Revert changes to multiple metadata and config files
Copilot Oct 2, 2025
bffe235
Remove AssemblyInfo.cs file that was incorrectly added
Copilot Oct 2, 2025
57c5229
Remove additional metadata files and revert CHANGELOG changes
Copilot Oct 2, 2025
148dd78
Revert changes to Azure.Communication.Messages.csproj
Copilot Oct 2, 2025
7aeb4dc
api
JoshLove-msft Oct 2, 2025
fb29bd7
Merge branch 'copilot/fix-18a989fc-d467-42b7-8c40-054fa42769fc' of ht…
JoshLove-msft Oct 2, 2025
ee53418
Fix build
JoshLove-msft Oct 2, 2025
a7d3a87
Revert all changes to neonpostgres library
Copilot Oct 2, 2025
6b896fb
Merge remote-tracking branch 'origin/main' into copilot/fix-18a989fc-…
Copilot Oct 3, 2025
70c1406
Revert all changes to terraform library
Copilot Oct 6, 2025
a148be4
regen agents
JoshLove-msft Oct 6, 2025
437dd84
Revert all changes to computefleet library
Copilot Oct 6, 2025
d04aab8
Use type parameter for the tool outputs. (#53034)
nick863 Oct 6, 2025
c66d557
Merge branch 'main' of https://github.com/Azure/azure-sdk-for-net int…
JoshLove-msft Oct 6, 2025
6fc82e8
Merge remote-tracking branch 'origin/main' into copilot/fix-18a989fc-…
Copilot Oct 10, 2025
a20d37c
Merge remote-tracking branch 'origin/main' into copilot/fix-18a989fc-…
Copilot Oct 10, 2025
bb83f30
Merge remote-tracking branch 'origin/main' into copilot/fix-18a989fc-…
Copilot Oct 10, 2025
c139bf6
Merge from main and regenerate all 27 libraries
Copilot Oct 10, 2025
c045168
Revert commit c139bf6b5 that added metadata files
Copilot Oct 10, 2025
78fdb7b
Merge branch 'copilot/fix-18a989fc-d467-42b7-8c40-054fa42769fc' of ht…
JoshLove-msft Oct 10, 2025
4c083ad
Increase timeout to account for large AI tests
JoshLove-msft Oct 10, 2025
d769dce
bump timeout
JoshLove-msft Oct 10, 2025
192502f
Merge branch 'main' of https://github.com/Azure/azure-sdk-for-net int…
JoshLove-msft Oct 10, 2025
ddba93c
Merge branch 'main' of https://github.com/Azure/azure-sdk-for-net int…
JoshLove-msft Oct 11, 2025
4d2c7d6
timeout
JoshLove-msft Oct 11, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sdk/ai/Azure.AI.Agents.Persistent/assets.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"AssetsRepo": "Azure/azure-sdk-assets",
"AssetsRepoPrefixPath": "net",
"TagPrefix": "net/ai/Azure.AI.Agents.Persistent",
"Tag": "net/ai/Azure.AI.Agents.Persistent_358ff70ace"
"Tag": "net/ai/Azure.AI.Agents.Persistent_a81282f720"
}
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ internal virtual CollectionResult<StreamingUpdate> SubmitToolOutputsToStreamWitA
toolApprovals = null;

SubmitToolOutputsToRunRequest submitToolOutputsToRunRequest = new(
toolOutputs: toolOutputs?.ToList() as IReadOnlyList<ToolOutput> ?? new ChangeTrackingList<ToolOutput>(),
toolOutputs: toolOutputs?.ToList() as IReadOnlyList<StructuredToolOutput> ?? new ChangeTrackingList<StructuredToolOutput>(),
toolApprovals: toolApprovals?.ToList() as IReadOnlyList<ToolApproval> ?? new ChangeTrackingList<ToolApproval>(),
true,
null);
Expand Down Expand Up @@ -393,7 +393,7 @@ internal virtual AsyncCollectionResult<StreamingUpdate> SubmitToolOutputsToStrea
toolApprovals = null;

SubmitToolOutputsToRunRequest submitToolOutputsToRunRequest = new(
toolOutputs: toolOutputs?.ToList() as IReadOnlyList<ToolOutput> ?? new ChangeTrackingList<ToolOutput>(),
toolOutputs: toolOutputs?.ToList() as IReadOnlyList<StructuredToolOutput> ?? new ChangeTrackingList<StructuredToolOutput>(),
toolApprovals: toolApprovals?.ToList() as IReadOnlyList<ToolApproval> ?? new ChangeTrackingList<ToolApproval>(),
stream: true,
serializedAdditionalRawData: null);
Expand Down
8 changes: 4 additions & 4 deletions sdk/ai/Azure.AI.Agents.Persistent/src/Custom/ToolOutput.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ public partial class ToolOutput
/// <remarks>
/// When using this constructor, the <see cref="Output"/> property should be set prior to submission.
/// </remarks>
public ToolOutput(string toolCallId)
public ToolOutput(string toolCallId) : this()
{
ToolCallId = toolCallId;
}

/// <summary> Initializes a new instance of <see cref="ToolOutput"/>. </summary>
/// <param name="toolCallId"> The ID of the tool call being resolved, as provided in the tool calls of a required action from a run. </param>
/// <param name="output"> The output from the tool to be submitted. </param>
public ToolOutput(string toolCallId, string output=null)
public ToolOutput(string toolCallId, string output = null) : this()
{
ToolCallId = toolCallId;
Output = output;
Expand All @@ -41,7 +41,7 @@ public ToolOutput(string toolCallId, string output=null)
/// <remarks>
/// When using this constructor, the <see cref="Output"/> property should be set prior to submission.
/// </remarks>
public ToolOutput(RequiredToolCall toolCall)
public ToolOutput(RequiredToolCall toolCall) : this()
{
ToolCallId = toolCall.Id;
}
Expand All @@ -52,7 +52,7 @@ public ToolOutput(RequiredToolCall toolCall)
/// <remarks>
/// When using this constructor, the <see cref="Output"/> property should be set prior to submission.
/// </remarks>
public ToolOutput(RequiredToolCall toolCall, string output)
public ToolOutput(RequiredToolCall toolCall, string output) : this()
{
ToolCallId = toolCall.Id;
Output = output;
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading