File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/Infrastructure/BotSharp.Abstraction/MLTasks Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments