From 2423f7f3b4508e384cf096a979c355db932a5d3b Mon Sep 17 00:00:00 2001 From: bsenst Date: Fri, 8 Sep 2023 17:56:14 +0200 Subject: [PATCH] add missing verb (#10371) --- .../docs/modules/model_io/output_parsers/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs_skeleton/docs/modules/model_io/output_parsers/index.mdx b/docs/docs_skeleton/docs/modules/model_io/output_parsers/index.mdx index bfb4d7241a..a46031ffdd 100644 --- a/docs/docs_skeleton/docs/modules/model_io/output_parsers/index.mdx +++ b/docs/docs_skeleton/docs/modules/model_io/output_parsers/index.mdx @@ -12,7 +12,7 @@ Output parsers are classes that help structure language model responses. There a And then one optional one: -- "Parse with prompt": A method which takes in a string (assumed to be the response from a language model) and a prompt (assumed to the prompt that generated such a response) and parses it into some structure. The prompt is largely provided in the event the OutputParser wants to retry or fix the output in some way, and needs information from the prompt to do so. +- "Parse with prompt": A method which takes in a string (assumed to be the response from a language model) and a prompt (assumed to be the prompt that generated such a response) and parses it into some structure. The prompt is largely provided in the event the OutputParser wants to retry or fix the output in some way, and needs information from the prompt to do so. ## Get started