From 84718246e1270873ccd9851cc42737132fb0ab4e Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Thu, 29 Jun 2023 12:57:31 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore(config.yaml):=20add=20outp?= =?UTF-8?q?ut=5Fparsers=20section=20with=20StructuredOutputParser=20and=20?= =?UTF-8?q?ResponseSchema=20The=20config.yaml=20file=20now=20includes=20an?= =?UTF-8?q?=20output=5Fparsers=20section=20with=20the=20StructuredOutputPa?= =?UTF-8?q?rser=20and=20ResponseSchema=20as=20the=20specified=20parsers.?= =?UTF-8?q?=20This=20change=20was=20made=20to=20enhance=20the=20functional?= =?UTF-8?q?ity=20of=20the=20backend=20by=20enabling=20the=20parsing=20of?= =?UTF-8?q?=20structured=20output=20and=20response=20schemas.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/backend/langflow/config.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/backend/langflow/config.yaml b/src/backend/langflow/config.yaml index 26fec2be3..602d45984 100644 --- a/src/backend/langflow/config.yaml +++ b/src/backend/langflow/config.yaml @@ -144,3 +144,6 @@ wrappers: # - ChatPromptTemplate # - SystemMessagePromptTemplate # - HumanMessagePromptTemplate +output_parsers: + - StructuredOutputParser + - ResponseSchema