Skip to content

Commit

Permalink
Merge pull request #1291 from jacoblee93/hotfix_lint
Browse files Browse the repository at this point in the history
Fix linter
  • Loading branch information
jacoblee93 committed May 17, 2023
2 parents dc5dee0 + 8223cf0 commit bca8418
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions langchain/src/chat_models/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ export abstract class BaseChatModel extends BaseLanguageModel {
/**
* Get the parameters used to invoke the model
*/
// eslint-disable-next-line @typescript-eslint/no-explicit-any
invocationParams(): any {
return {};
}
Expand Down
1 change: 1 addition & 0 deletions langchain/src/llms/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ export abstract class BaseLLM extends BaseLanguageModel {
/**
* Get the parameters used to invoke the model
*/
// eslint-disable-next-line @typescript-eslint/no-explicit-any
invocationParams(): any {
return {};
}
Expand Down

2 comments on commit bca8418

@vercel
Copy link

@vercel vercel bot commented on bca8418 May 17, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vowelparrot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

wonder why it wasn't erring reliably

Please sign in to comment.