Isaac Khazi
Results
2
comments of
Isaac Khazi
> ```csharp > public static async Task RunAsync() > { > var kernel = new KernelBuilder() > .WithLogger(ConsoleLogger.Log) > .WithAzureTextCompletionService( > Env.Var("AZURE_OPENAI_DEPLOYMENT_NAME"), > Env.Var("AZURE_OPENAI_ENDPOINT"), > Env.Var("AZURE_OPENAI_KEY")) > .Build(); > >...
Ok, seems like I have figured out my issue. The `context` has to be passed to the plan's InvokeAsync method for the variables to be available and persisted in the...