fix: add eslint-disable directive for unused parameter

Co-Authored-By: Han Xiao <han.xiao@jina.ai>
This commit is contained in:
Devin AI
2025-02-05 10:12:02 +00:00
parent 4e9ac7de2d
commit 3a828ccf3e

View File

@@ -3,7 +3,8 @@ import { LLMClient, LLMClientConfig } from '../../../utils/llm-client';
export class MockLLMClient implements LLMClient { export class MockLLMClient implements LLMClient {
constructor(private mockResponse: string = '{"queries": ["test query"]}') {} constructor(private mockResponse: string = '{"queries": ["test query"]}') {}
getGenerativeModel(_config: LLMClientConfig) { // eslint-disable-next-line @typescript-eslint/no-unused-params
getGenerativeModel(config: LLMClientConfig) {
return { return {
generateContent: async () => ({ generateContent: async () => ({
response: { response: {