(chatId string, toolCallId string, toolUseData uctypes.UIMessageDataToolUse)
| 237 | } |
| 238 | |
| 239 | func (b *geminiBackend) UpdateToolUseData(chatId string, toolCallId string, toolUseData uctypes.UIMessageDataToolUse) error { |
| 240 | return gemini.UpdateToolUseData(chatId, toolCallId, toolUseData) |
| 241 | } |
| 242 | |
| 243 | func (b *geminiBackend) RemoveToolUseCall(chatId string, toolCallId string) error { |
| 244 | return gemini.RemoveToolUseCall(chatId, toolCallId) |
nothing calls this directly
no test coverage detected