5 references to Continue
Microsoft.Extensions.AI (5)
ChatCompletion\FunctionInvokingChatClient.cs (5)
453case ContinueMode.Continue when options.ToolMode is RequiredChatToolMode: 544ContinueMode continueMode = ContinueMode.Continue; 591return new(ContinueMode.Continue, FunctionInvocationStatus.NotFound, callContent, result: null, exception: null); 613RetryOnError ? ContinueMode.Continue : ContinueMode.AllowOneMoreRoundtrip, // We won't allow further function calls, hence the LLM will just get one more chance to give a final answer. 621context.Terminate ? ContinueMode.Terminate : ContinueMode.Continue,