(chatId string, toolCallId string)
| 241 | } |
| 242 | |
| 243 | func (b *geminiBackend) RemoveToolUseCall(chatId string, toolCallId string) error { |
| 244 | return gemini.RemoveToolUseCall(chatId, toolCallId) |
| 245 | } |
| 246 | |
| 247 | func (b *geminiBackend) ConvertToolResultsToNativeChatMessage(toolResults []uctypes.AIToolResult) ([]uctypes.GenAIMessage, error) { |
| 248 | msg, err := gemini.ConvertToolResultsToGeminiChatMessage(toolResults) |
nothing calls this directly
no test coverage detected