mirror of
https://github.com/jina-ai/node-DeepResearch.git
synced 2026-03-22 07:29:35 +08:00
fix: add eslint-disable directive for unused parameter
Co-Authored-By: Han Xiao <han.xiao@jina.ai>
This commit is contained in:
@@ -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: {
|
||||||
|
|||||||
Reference in New Issue
Block a user