From f2c6ada0daf12ccfaec10008afa15823eaa1d543 Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Mon, 16 Oct 2023 14:53:45 -0700 Subject: [PATCH] Fix typo --- langchain/src/agents/chat/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/langchain/src/agents/chat/index.ts b/langchain/src/agents/chat/index.ts index 42a8151d3b29..1acf732f1f58 100644 --- a/langchain/src/agents/chat/index.ts +++ b/langchain/src/agents/chat/index.ts @@ -26,7 +26,7 @@ export interface ChatCreatePromptArgs { /** String to use directly as the human message template. */ humanMessageTemplate?: string; /** Formattable string to use as the instructions template. */ - formatInstructions?: strng; + formatInstructions?: string; /** List of input variables the final prompt will expect. */ inputVariables?: string[]; }