Implemented interface member:
1 write to Name
Microsoft.ML.GenAI.Phi (1)
Phi3\Phi3CausalLMAgent.cs (1)
30this.Name = name;
5 references to Name
Microsoft.ML.GenAI.Phi (4)
Phi3\Phi3CausalLMAgent.cs (4)
42var systemMessage = new TextMessage(Role.System, _systemMessage, from: this.Name); 58return Task.FromResult<IMessage>(new TextMessage(Role.Assistant, output, from: this.Name)); 70var systemMessage = new TextMessage(Role.System, _systemMessage, from: this.Name); 86yield return new TextMessageUpdate(Role.Assistant, output, from: this.Name);
Microsoft.ML.GenAI.Phi.Tests (1)
AutoGenTests.cs (1)
38reply.From.Should().Be(agent.Name);