updates some spelling mistakes (#8537)

Just updating some spelling / grammar issues in the documentation. No
code changes.

---------

Co-authored-by: Harrison Chase <hw.chase.17@gmail.com>
This commit is contained in:
Danny Davenport
2023-07-31 20:15:29 -04:00
committed by GitHub
parent b4a126ae71
commit 8d2344db43
3 changed files with 3 additions and 3 deletions

View File

@@ -17,7 +17,7 @@ class CommaSeparatedListOutputParser(BaseOutputParser):
return text.strip().split(", ")
template = """You are a helpful assistant who generates comma separated lists.
A user will pass in a category, and you should generated 5 objects in that category in a comma separated list.
A user will pass in a category, and you should generate 5 objects in that category in a comma separated list.
ONLY return a comma separated list, and nothing more."""
system_message_prompt = SystemMessagePromptTemplate.from_template(template)
human_template = "{text}"