diff --git a/src/tools/__tests__/utils/llm-mock.ts b/src/tools/__tests__/utils/llm-mock.ts index c8cbf3e..20fec91 100644 --- a/src/tools/__tests__/utils/llm-mock.ts +++ b/src/tools/__tests__/utils/llm-mock.ts @@ -3,7 +3,7 @@ import { LLMClient, LLMClientConfig } from '../../../utils/llm-client'; export class MockLLMClient implements LLMClient { constructor(private mockResponse: string = '{"queries": ["test query"]}') {} - getGenerativeModel(config: LLMClientConfig) { + getGenerativeModel(_config: LLMClientConfig) { return { generateContent: async () => ({ response: {