Skip to content

Commit

Permalink
revert bracket style init
Browse files Browse the repository at this point in the history
  • Loading branch information
singhk97 committed Dec 11, 2024
1 parent df94bb1 commit 68aa670
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ namespace Microsoft.Teams.AI.AI.Models
{
public class StreamingChatToolCallsBuilder

Check warning on line 6 in dotnet/packages/Microsoft.TeamsAI/Microsoft.TeamsAI/AI/Models/StreamingChatToolCallsBuilder.cs

View workflow job for this annotation

GitHub Actions / Build/Test/Lint (6.0)

Missing XML comment for publicly visible type or member 'StreamingChatToolCallsBuilder'

Check warning on line 6 in dotnet/packages/Microsoft.TeamsAI/Microsoft.TeamsAI/AI/Models/StreamingChatToolCallsBuilder.cs

View workflow job for this annotation

GitHub Actions / Build/Test/Lint (7.0)

Missing XML comment for publicly visible type or member 'StreamingChatToolCallsBuilder'
{
private readonly Dictionary<int, string> _indexToToolCallId = [];
private readonly Dictionary<int, string> _indexToFunctionName = [];
private readonly Dictionary<int, SequenceBuilder<byte>> _indexToFunctionArguments = [];
private readonly Dictionary<int, string> _indexToToolCallId = new();
private readonly Dictionary<int, string> _indexToFunctionName = new();
private readonly Dictionary<int, SequenceBuilder<byte>> _indexToFunctionArguments = new();

public void Append(StreamingChatToolCallUpdate toolCallUpdate)

Check warning on line 12 in dotnet/packages/Microsoft.TeamsAI/Microsoft.TeamsAI/AI/Models/StreamingChatToolCallsBuilder.cs

View workflow job for this annotation

GitHub Actions / Build/Test/Lint (6.0)

Missing XML comment for publicly visible type or member 'StreamingChatToolCallsBuilder.Append(StreamingChatToolCallUpdate)'

Check warning on line 12 in dotnet/packages/Microsoft.TeamsAI/Microsoft.TeamsAI/AI/Models/StreamingChatToolCallsBuilder.cs

View workflow job for this annotation

GitHub Actions / Build/Test/Lint (7.0)

Missing XML comment for publicly visible type or member 'StreamingChatToolCallsBuilder.Append(StreamingChatToolCallUpdate)'
{
Expand Down Expand Up @@ -39,7 +39,7 @@ public void Append(StreamingChatToolCallUpdate toolCallUpdate)

public IReadOnlyList<ChatToolCall> Build()

Check warning on line 40 in dotnet/packages/Microsoft.TeamsAI/Microsoft.TeamsAI/AI/Models/StreamingChatToolCallsBuilder.cs

View workflow job for this annotation

GitHub Actions / Build/Test/Lint (6.0)

Missing XML comment for publicly visible type or member 'StreamingChatToolCallsBuilder.Build()'

Check warning on line 40 in dotnet/packages/Microsoft.TeamsAI/Microsoft.TeamsAI/AI/Models/StreamingChatToolCallsBuilder.cs

View workflow job for this annotation

GitHub Actions / Build/Test/Lint (7.0)

Missing XML comment for publicly visible type or member 'StreamingChatToolCallsBuilder.Build()'
{
List<ChatToolCall> toolCalls = [];
List<ChatToolCall> toolCalls = new();

foreach (KeyValuePair<int, string> indexToToolCallIdPair in _indexToToolCallId)
{
Expand Down

0 comments on commit 68aa670

Please sign in to comment.