Sorry, there's nothing at this address.
9 |Current count: @currentCount
6 | 7 | 8 | 9 | @code { 10 | private int currentCount = 0; 11 | 12 | private void IncrementCount() 13 | { 14 | currentCount++; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Pages/Home.razor: -------------------------------------------------------------------------------- 1 | @using AIOrchestrator.Model; 2 | @using Newtonsoft.Json; 3 | @using OpenAI; 4 | @using static AIOrchestrator.Model.OrchestratorMethods; 5 | @inject NotificationService NotificationService 6 | @inject DialogService DialogService 7 | @inject SettingsService SettingsService 8 | @inject LogService LogService 9 | @inject OrchestratorMethods OrchestratorMethods 10 | @implements IDisposable 11 |