Skip to content

Commit

Permalink
fix: add this.stop = input.stop to LLMSingleActionAgent constructor (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
ZYJLiu authored Apr 6, 2023
1 parent 813e99a commit 2feb3b5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions langchain/src/agents/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ export class LLMSingleActionAgent extends BaseSingleActionAgent {
this.stop = input.stop;
this.llmChain = input.llmChain;
this.outputParser = input.outputParser;
this.stop = input.stop;
}

get inputKeys(): string[] {
Expand Down

0 comments on commit 2feb3b5

Please sign in to comment.