(ctx context.Context, channel *model.Channel, request *relaymodel.GeneralOpenAIRequest)
| 11 | |
| 12 | type skillLibraryLLMInvoker interface { |
| 13 | CallChatCompletion(ctx context.Context, channel *model.Channel, request *relaymodel.GeneralOpenAIRequest) (string, error, *relaymodel.Error) |
| 14 | } |
| 15 | |
| 16 | type skillLibraryLLMInvokerFunc func(ctx context.Context, channel *model.Channel, request *relaymodel.GeneralOpenAIRequest) (string, error, *relaymodel.Error) |
no outgoing calls
no test coverage detected