Merge pull request #1112 from iceljc/master

add default return
This commit is contained in:
iceljc 2025-07-25 17:03:46 -05:00 committed by GitHub
commit b3765c0f0a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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();
}