add default return
This commit is contained in:
parent
106b891548
commit
031eb8730f
|
|
@ -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();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue