Skip to content

Commit

Permalink
fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
singhk97 committed Dec 11, 2024
1 parent be7eeca commit 5091d51
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@

namespace Microsoft.Teams.AI.AI.Models
{
public class SequenceBuilder<T>
internal class SequenceBuilder<T>
{
private Segment _first;
private Segment _last;
private Segment? _first;
private Segment? _last;

public void Append(ReadOnlyMemory<T> data)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace Microsoft.Teams.AI.AI.Models
{
public class StreamingChatToolCallsBuilder
internal class StreamingChatToolCallsBuilder
{
private readonly Dictionary<int, string> _indexToToolCallId = new();
private readonly Dictionary<int, string> _indexToFunctionName = new();
Expand Down

0 comments on commit 5091d51

Please sign in to comment.