@@ -51,6 +51,7 @@ static void RegisterExamples(IServiceCollection services)
5151 services . AddTransient < ChatFromExistingExample > ( ) ;
5252 services . AddTransient < ChatWithReasoningExample > ( ) ;
5353 services . AddTransient < ChatExampleToolsSimple > ( ) ;
54+ services . AddTransient < ChatExampleToolsSimpleLocalLLM > ( ) ;
5455 services . AddTransient < AgentExampleTools > ( ) ;
5556 services . AddTransient < AgentExample > ( ) ;
5657 services . AddTransient < AgentConversationExample > ( ) ;
@@ -161,6 +162,7 @@ public class ExampleRegistry(IServiceProvider serviceProvider)
161162 ( "\u25a0 Chat with Files from stream" , serviceProvider . GetRequiredService < ChatWithFilesFromStreamExample > ( ) ) ,
162163 ( "\u25a0 Chat with Vision" , serviceProvider . GetRequiredService < ChatWithVisionExample > ( ) ) ,
163164 ( "\u25a0 Chat with Tools (simple)" , serviceProvider . GetRequiredService < ChatExampleToolsSimple > ( ) ) ,
165+ ( "\u25a0 Chat with Tools (simple Local LLM)" , serviceProvider . GetRequiredService < ChatExampleToolsSimpleLocalLLM > ( ) ) ,
164166 ( "\u25a0 Chat with Image Generation" , serviceProvider . GetRequiredService < ChatWithImageGenExample > ( ) ) ,
165167 ( "\u25a0 Chat from Existing" , serviceProvider . GetRequiredService < ChatFromExistingExample > ( ) ) ,
166168 ( "\u25a0 Chat with reasoning" , serviceProvider . GetRequiredService < ChatWithReasoningExample > ( ) ) ,
@@ -197,4 +199,4 @@ public class ExampleRegistry(IServiceProvider serviceProvider)
197199 ] ;
198200 }
199201 } ;
200- }
202+ }
0 commit comments