| 97 | func (b *blockingStartToolSet) Tools(context.Context) ([]tools.Tool, error) { return nil, nil } |
| 98 | |
| 99 | type mockStream struct { |
| 100 | responses []chat.MessageStreamResponse |
| 101 | idx int |
| 102 | closed bool |
| 103 | } |
| 104 | |
| 105 | func (m *mockStream) Recv() (chat.MessageStreamResponse, error) { |
| 106 | if m.idx >= len(m.responses) { |
nothing calls this directly
no outgoing calls
no test coverage detected