1 write to _textGenerationService
Microsoft.ML.GenAI.LLaMA (1)
LlamaChatCompletionService.cs (1)
27
_textGenerationService
= new LlamaTextCompletionService(pipeline);
3 references to _textGenerationService
Microsoft.ML.GenAI.LLaMA (3)
LlamaChatCompletionService.cs (3)
31
public IReadOnlyDictionary<string, object?> Attributes =>
_textGenerationService
.Attributes;
36
var replies = await
_textGenerationService
.GetTextContentsAsync(prompt, executionSettings, kernel, cancellationToken);
50
await foreach (var reply in
_textGenerationService
.GetStreamingTextContentsAsync(prompt, executionSettings, kernel, cancellationToken))