Skip to content

Commit

Permalink
fix typo in summary_buffer.ipynb (langchain-ai#2547)
Browse files Browse the repository at this point in the history
ouput -> output
  • Loading branch information
eltociear authored Apr 7, 2023
1 parent 9b78bb7 commit fc1d488
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/modules/memory/types/summary_buffer.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
"outputs": [],
"source": [
"memory = ConversationSummaryBufferMemory(llm=llm, max_token_limit=10)\n",
"memory.save_context({\"input\": \"hi\"}, {\"ouput\": \"whats up\"})\n",
"memory.save_context({\"input\": \"not much you\"}, {\"ouput\": \"not much\"})"
"memory.save_context({\"input\": \"hi\"}, {\"output\": \"whats up\"})\n",
"memory.save_context({\"input\": \"not much you\"}, {\"output\": \"not much\"})"
]
},
{
Expand Down Expand Up @@ -73,8 +73,8 @@
"outputs": [],
"source": [
"memory = ConversationSummaryBufferMemory(llm=llm, max_token_limit=10, return_messages=True)\n",
"memory.save_context({\"input\": \"hi\"}, {\"ouput\": \"whats up\"})\n",
"memory.save_context({\"input\": \"not much you\"}, {\"ouput\": \"not much\"})"
"memory.save_context({\"input\": \"hi\"}, {\"output\": \"whats up\"})\n",
"memory.save_context({\"input\": \"not much you\"}, {\"output\": \"not much\"})"
]
},
{
Expand Down

0 comments on commit fc1d488

Please sign in to comment.