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