@@ -52,6 +52,7 @@ static void RegisterExamples(IServiceCollection services)
5252 services . AddTransient < ChatFromExistingExample > ( ) ;
5353 services . AddTransient < ChatWithReasoningExample > ( ) ;
5454 services . AddTransient < ChatExampleToolsSimple > ( ) ;
55+ services . AddTransient < ChatExampleToolsSimpleLocalLLM > ( ) ;
5556 services . AddTransient < AgentExampleTools > ( ) ;
5657 services . AddTransient < AgentExample > ( ) ;
5758 services . AddTransient < AgentConversationExample > ( ) ;
@@ -146,6 +147,7 @@ public class ExampleRegistry(IServiceProvider serviceProvider)
146147 ( "\u25a0 Chat with Files from stream" , serviceProvider . GetRequiredService < ChatWithFilesFromStreamExample > ( ) ) ,
147148 ( "\u25a0 Chat with Vision" , serviceProvider . GetRequiredService < ChatWithVisionExample > ( ) ) ,
148149 ( "\u25a0 Chat with Tools (simple)" , serviceProvider . GetRequiredService < ChatExampleToolsSimple > ( ) ) ,
150+ ( "\u25a0 Chat with Tools (simple) Local LLM" , serviceProvider . GetRequiredService < ChatExampleToolsSimpleLocalLLM > ( ) ) ,
149151 ( "\u25a0 Chat with Image Generation" , serviceProvider . GetRequiredService < ChatWithImageGenExample > ( ) ) ,
150152 ( "\u25a0 Chat from Existing" , serviceProvider . GetRequiredService < ChatFromExistingExample > ( ) ) ,
151153 ( "\u25a0 Chat with reasoning" , serviceProvider . GetRequiredService < ChatWithReasoningExample > ( ) ) ,
0 commit comments