MockLLMProvider 模拟 LLM 提供者。
| 10 | |
| 11 | // MockLLMProvider 模拟 LLM 提供者。 |
| 12 | type MockLLMProvider struct { |
| 13 | Response string |
| 14 | Error error |
| 15 | CallCount int |
| 16 | } |
| 17 | |
| 18 | func (m *MockLLMProvider) Complete(ctx context.Context, prompt string, options map[string]any) (string, error) { |
| 19 | m.CallCount++ |
nothing calls this directly
no outgoing calls
no test coverage detected