Skip to content

Commit b3765c0

Browse files
authored
Merge pull request #1112 from iceljc/master
add default return
2 parents 106b891 + 031eb87 commit b3765c0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Infrastructure/BotSharp.Abstraction/MLTasks/IChatCompletion.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ public interface IChatCompletion
1616
void SetModelName(string model);
1717

1818
Task<RoleDialogModel> GetChatCompletions(Agent agent,
19-
List<RoleDialogModel> conversations);
19+
List<RoleDialogModel> conversations) => throw new NotImplementedException();
2020

2121
Task<bool> GetChatCompletionsAsync(Agent agent,
2222
List<RoleDialogModel> conversations,
2323
Func<RoleDialogModel, Task> onMessageReceived,
24-
Func<RoleDialogModel, Task> onFunctionExecuting);
24+
Func<RoleDialogModel, Task> onFunctionExecuting) => throw new NotImplementedException();
2525

2626
Task<RoleDialogModel> GetChatCompletionsStreamingAsync(Agent agent,
27-
List<RoleDialogModel> conversations);
27+
List<RoleDialogModel> conversations) => throw new NotImplementedException();
2828
}

0 commit comments

Comments
 (0)