Implemented interface member:
1 write to Name
Microsoft.ML.GenAI.Mistral (1)
MistralCausalLMAgent.cs (1)
36this.Name = name;
7 references to Name
Microsoft.ML.GenAI.Mistral (7)
MistralCausalLMAgent.cs (7)
48var systemMessage = new TextMessage(Role.System, _systemMessage, from: this.Name); 69return Task.FromResult<IMessage>(new TextMessage(Role.Assistant, output, from: this.Name)); 81var systemMessage = new TextMessage(Role.System, _systemMessage, from: this.Name); 106yield return new TextMessageUpdate(Role.Assistant, output, from: this.Name); 116yield return new TextMessageUpdate(Role.Assistant, output, from: this.Name); 129yield return new ToolCallMessageUpdate(toolCall.FunctionName, toolCall.FunctionArguments, from: this.Name); 153return new ToolCallMessage(toolCalls, from: this.Name);