add default return

This commit is contained in:
Jicheng Lu 2025-07-25 17:03:09 -05:00
parent 106b891548
commit 031eb8730f

View file

@ -16,13 +16,13 @@ public interface IChatCompletion
void SetModelName(string model);
Task<RoleDialogModel> GetChatCompletions(Agent agent,
List<RoleDialogModel> conversations);
List<RoleDialogModel> conversations) => throw new NotImplementedException();
Task<bool> GetChatCompletionsAsync(Agent agent,
List<RoleDialogModel> conversations,
Func<RoleDialogModel, Task> onMessageReceived,
Func<RoleDialogModel, Task> onFunctionExecuting);
Func<RoleDialogModel, Task> onFunctionExecuting) => throw new NotImplementedException();
Task<RoleDialogModel> GetChatCompletionsStreamingAsync(Agent agent,
List<RoleDialogModel> conversations);
List<RoleDialogModel> conversations) => throw new NotImplementedException();
}