mirror of
https://github.com/jina-ai/node-DeepResearch.git
synced 2025-12-26 06:28:56 +08:00
fix: add eslint-disable directive for unused parameter
Co-Authored-By: Han Xiao <han.xiao@jina.ai>
This commit is contained in:
parent
4e9ac7de2d
commit
3a828ccf3e
@ -3,7 +3,8 @@ import { LLMClient, LLMClientConfig } from '../../../utils/llm-client';
|
||||
export class MockLLMClient implements LLMClient {
|
||||
constructor(private mockResponse: string = '{"queries": ["test query"]}') {}
|
||||
|
||||
getGenerativeModel(_config: LLMClientConfig) {
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-params
|
||||
getGenerativeModel(config: LLMClientConfig) {
|
||||
return {
|
||||
generateContent: async () => ({
|
||||
response: {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user