-
Notifications
You must be signed in to change notification settings - Fork 1.9k
[GenAI] Introduce CausalLMPipelineChatClient for MEAI.IChatClient #7270
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
b5f5e0a
leverage MEAI abstraction
LittleLittleCloud 618d22b
Update src/Microsoft.ML.GenAI.LLaMA/Llama3CausalLMChatClient.cs
LittleLittleCloud 72d5f25
Update src/Microsoft.ML.GenAI.LLaMA/Llama3CausalLMChatClient.cs
LittleLittleCloud a081e3c
Update src/Microsoft.ML.GenAI.Phi/Phi3/Phi3CausalLMChatClient.cs
LittleLittleCloud 28643d6
fix comments
LittleLittleCloud 149b4ab
Merge branch 'u/MEAI' of https://github.com/LittleLittleCloud/machine…
LittleLittleCloud c5b9603
Update Microsoft.ML.GenAI.Core.csproj
LittleLittleCloud File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,54 @@ | ||
| using System; | ||
| using System.Collections.Generic; | ||
| using System.Linq; | ||
| using System.Text; | ||
| using System.Text.Json; | ||
| using System.Threading.Tasks; | ||
| using AutoGen.Core; | ||
| using Microsoft.Extensions.AI; | ||
| using Microsoft.ML.GenAI.Core; | ||
| using Microsoft.ML.GenAI.Core.Extension; | ||
| using Microsoft.ML.GenAI.LLaMA; | ||
| using Microsoft.ML.Tokenizers; | ||
| using TorchSharp; | ||
| using static TorchSharp.torch; | ||
|
|
||
| namespace Microsoft.ML.GenAI.Samples.MEAI; | ||
|
|
||
| internal class Llama3_1 | ||
| { | ||
| public static async Task RunAsync(string weightFolder, string checkPointName = "model.safetensors.index.json") | ||
| { | ||
| var device = "cuda"; | ||
| if (device == "cuda") | ||
| { | ||
| torch.InitializeDeviceType(DeviceType.CUDA); | ||
| } | ||
|
|
||
| var defaultType = ScalarType.BFloat16; | ||
| torch.manual_seed(1); | ||
| torch.set_default_dtype(defaultType); | ||
| var configName = "config.json"; | ||
| var originalWeightFolder = Path.Combine(weightFolder, "original"); | ||
|
|
||
| Console.WriteLine("Loading Llama from huggingface model weight folder"); | ||
| var stopWatch = System.Diagnostics.Stopwatch.StartNew(); | ||
| stopWatch.Start(); | ||
| var tokenizer = LlamaTokenizerHelper.FromPretrained(originalWeightFolder); | ||
| var model = LlamaForCausalLM.FromPretrained(weightFolder, configName, checkPointName: checkPointName, layersOnTargetDevice: 26, quantizeToInt8: true); | ||
|
|
||
| var pipeline = new CausalLMPipeline<TiktokenTokenizer, LlamaForCausalLM>(tokenizer, model, device); | ||
|
|
||
| var client = new Llama3CausalLMChatClient(pipeline); | ||
|
|
||
| var task = """ | ||
| Write a C# program to print the sum of two numbers. Use top-level statement, put code between ```csharp and ```. | ||
| """; | ||
| var chatMessage = new ChatMessage(ChatRole.User, task); | ||
|
|
||
| await foreach (var response in client.CompleteStreamingAsync([chatMessage])) | ||
| { | ||
| Console.Write(response.Text); | ||
| } | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| using System; | ||
| using System.Collections.Generic; | ||
| using System.Linq; | ||
| using System.Text; | ||
| using System.Threading.Tasks; | ||
| using static TorchSharp.torch; | ||
| using TorchSharp; | ||
| using Microsoft.ML.GenAI.Phi; | ||
| using Microsoft.ML.GenAI.Core; | ||
| using Microsoft.ML.Tokenizers; | ||
| using Microsoft.Extensions.AI; | ||
|
|
||
| namespace Microsoft.ML.GenAI.Samples.MEAI; | ||
|
|
||
| internal class Phi3 | ||
| { | ||
| public static async Task RunAsync(string weightFolder) | ||
| { | ||
| var device = "cuda"; | ||
| if (device == "cuda") | ||
| { | ||
| torch.InitializeDeviceType(DeviceType.CUDA); | ||
| } | ||
|
|
||
| var defaultType = ScalarType.Float16; | ||
| torch.manual_seed(1); | ||
| torch.set_default_dtype(defaultType); | ||
| var tokenizerPath = Path.Combine(weightFolder, "tokenizer.model"); | ||
| var tokenizer = Phi3TokenizerHelper.FromPretrained(tokenizerPath); | ||
| var model = Phi3ForCasualLM.FromPretrained(weightFolder, "config.json", layersOnTargetDevice: -1, quantizeToInt8: true); | ||
| var pipeline = new CausalLMPipeline<LlamaTokenizer, Phi3ForCasualLM>(tokenizer, model, device); | ||
| var client = new Phi3CausalLMChatClient(pipeline); | ||
|
|
||
| var task = """ | ||
| Write a C# program to print the sum of two numbers. Use top-level statement, put code between ```csharp and ```. | ||
| """; | ||
| var chatMessage = new ChatMessage(ChatRole.User, task); | ||
|
|
||
| await foreach (var response in client.CompleteStreamingAsync([chatMessage])) | ||
| { | ||
| Console.Write(response.Text); | ||
| } | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,6 @@ | ||
| // See https://aka.ms/new-console-template for more information | ||
| using Microsoft.ML.GenAI.Samples.Llama; | ||
| using Microsoft.ML.GenAI.Samples.MEAI; | ||
|
|
||
| await LlamaSample.RunLlama(@"C:\Users\xiaoyuz\source\repos\Llama-3.2-3B-Instruct"); | ||
| //await Llama3_1.RunAsync(@"C:\Users\xiaoyuz\source\repos\Llama-3.2-1B-Instruct", checkPointName: "model.safetensors"); | ||
| await Phi3.RunAsync(@"C:\Users\xiaoyuz\source\repos\Phi-3-mini-4k-instruct"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,89 @@ | ||
| // Licensed to the .NET Foundation under one or more agreements. | ||
| // The .NET Foundation licenses this file to you under the MIT license. | ||
| // See the LICENSE file in the project root for more information. | ||
|
|
||
| using System; | ||
| using System.Collections.Generic; | ||
| using System.Linq; | ||
| using System.Runtime.CompilerServices; | ||
| using System.Threading; | ||
| using System.Threading.Tasks; | ||
| using Microsoft.Extensions.AI; | ||
| using Microsoft.ML.Tokenizers; | ||
| using static TorchSharp.torch; | ||
|
|
||
| namespace Microsoft.ML.GenAI.Core; | ||
|
|
||
| public abstract class CausalLMPipelineChatClient<TTokenizer, TCausalLMModel> : IChatClient | ||
| where TTokenizer : Tokenizer | ||
| where TCausalLMModel : nn.Module<CausalLMModelInput, CausalLMModelOutput> | ||
| { | ||
| private readonly ICausalLMPipeline<TTokenizer, TCausalLMModel> _pipeline; | ||
| private readonly IMEAIChatTemplateBuilder _chatTemplateBuilder; | ||
|
|
||
| public CausalLMPipelineChatClient( | ||
| ICausalLMPipeline<TTokenizer, TCausalLMModel> pipeline, | ||
| IMEAIChatTemplateBuilder chatTemplateBuilder, | ||
| ChatClientMetadata? metadata = null) | ||
| { | ||
| var classNameWithType = $"{nameof(CausalLMPipelineChatClient<TTokenizer, TCausalLMModel>)}<{typeof(TTokenizer).Name}, {typeof(TCausalLMModel).Name}>"; | ||
| Metadata ??= new ChatClientMetadata(providerName: classNameWithType, modelId: typeof(TCausalLMModel).Name); | ||
| _chatTemplateBuilder = chatTemplateBuilder; | ||
| _pipeline = pipeline; | ||
| } | ||
|
|
||
| public ChatClientMetadata Metadata { get; } | ||
|
|
||
| public virtual Task<ChatCompletion> CompleteAsync(IList<ChatMessage> chatMessages, ChatOptions? options = null, CancellationToken cancellationToken = default) | ||
| { | ||
| var prompt = _chatTemplateBuilder.BuildPrompt(chatMessages, options); | ||
| var stopSequences = options?.StopSequences ?? Array.Empty<string>(); | ||
|
|
||
| var output = _pipeline.Generate( | ||
| prompt, | ||
| maxLen: options?.MaxOutputTokens ?? 1024, | ||
| temperature: options?.Temperature ?? 0.7f, | ||
| stopSequences: stopSequences.ToArray()) ?? throw new InvalidOperationException("Failed to generate a reply."); | ||
|
|
||
| var chatMessage = new ChatMessage(ChatRole.Assistant, output); | ||
| return Task.FromResult(new ChatCompletion([chatMessage]) | ||
| { | ||
| CreatedAt = DateTime.UtcNow, | ||
| FinishReason = ChatFinishReason.Stop, | ||
| }); | ||
| } | ||
|
|
||
| #pragma warning disable CS1998 // Async method lacks 'await' operators and will run synchronously | ||
| public virtual async IAsyncEnumerable<StreamingChatCompletionUpdate> CompleteStreamingAsync( | ||
| #pragma warning restore CS1998 // Async method lacks 'await' operators and will run synchronously | ||
| IList<ChatMessage> chatMessages, | ||
| ChatOptions? options = null, | ||
| [EnumeratorCancellation] CancellationToken cancellationToken = default) | ||
| { | ||
| var prompt = _chatTemplateBuilder.BuildPrompt(chatMessages, options); | ||
| var stopSequences = options?.StopSequences ?? Array.Empty<string>(); | ||
|
|
||
| foreach (var output in _pipeline.GenerateStreaming( | ||
| prompt, | ||
| maxLen: options?.MaxOutputTokens ?? 1024, | ||
| temperature: options?.Temperature ?? 0.7f, | ||
| stopSequences: stopSequences.ToArray())) | ||
| { | ||
| yield return new StreamingChatCompletionUpdate | ||
| { | ||
| Role = ChatRole.Assistant, | ||
| Text = output, | ||
| CreatedAt = DateTime.UtcNow, | ||
| }; | ||
| } | ||
| } | ||
|
|
||
| public virtual void Dispose() | ||
| { | ||
| } | ||
|
|
||
| public virtual TService? GetService<TService>(object? key = null) where TService : class | ||
| { | ||
| return null; | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,57 @@ | ||
| // Licensed to the .NET Foundation under one or more agreements. | ||
| // The .NET Foundation licenses this file to you under the MIT license. | ||
| // See the LICENSE file in the project root for more information. | ||
|
|
||
| using System.Runtime.CompilerServices; | ||
| using Microsoft.Extensions.AI; | ||
| using Microsoft.ML.GenAI.Core; | ||
| using Microsoft.ML.Tokenizers; | ||
|
|
||
| namespace Microsoft.ML.GenAI.LLaMA; | ||
|
|
||
| public class Llama3CausalLMChatClient : CausalLMPipelineChatClient<Tokenizer, LlamaForCausalLM> | ||
| { | ||
| private readonly string _eotToken = "<|eot_id|>"; | ||
|
|
||
| public Llama3CausalLMChatClient( | ||
| ICausalLMPipeline<Tokenizer, LlamaForCausalLM> pipeline, | ||
| IMEAIChatTemplateBuilder? chatTemplateBuilder = null, | ||
| ChatClientMetadata? metadata = null) | ||
| : base( | ||
| pipeline, | ||
| chatTemplateBuilder ?? Llama3_1ChatTemplateBuilder.Instance, | ||
| metadata ?? new ChatClientMetadata(modelId: nameof(Llama3CausalLMChatClient))) | ||
| { | ||
| } | ||
|
|
||
| public override Task<ChatCompletion> CompleteAsync( | ||
| IList<ChatMessage> chatMessages, | ||
| ChatOptions? options = null, | ||
| CancellationToken cancellationToken = default) | ||
| { | ||
| options ??= new ChatOptions(); | ||
|
|
||
| if (options.StopSequences != null) | ||
| { | ||
| options.StopSequences.Add(_eotToken); | ||
| } | ||
| else | ||
| { | ||
| options.StopSequences = new List<string> { _eotToken }; | ||
| } | ||
LittleLittleCloud marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| return base.CompleteAsync(chatMessages, options, cancellationToken); | ||
| } | ||
|
|
||
| public override IAsyncEnumerable<StreamingChatCompletionUpdate> CompleteStreamingAsync( | ||
| IList<ChatMessage> chatMessages, | ||
| ChatOptions? options = null, | ||
| CancellationToken cancellationToken = default) | ||
| { | ||
| options ??= new ChatOptions(); | ||
| options.StopSequences ??= []; | ||
| options.StopSequences.Add(_eotToken); | ||
|
|
||
| return base.CompleteStreamingAsync(chatMessages, options, cancellationToken); | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.