Skip to content

Commit

Permalink
Example, add memory option
Browse files Browse the repository at this point in the history
  • Loading branch information
vblagoje committed May 17, 2023
1 parent d6f4094 commit d989476
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/conversational_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
agent = ConversationalAgent(pn)

while True:
user_input = input("Human (type 'exit' or 'quit' to quit): ")
user_input = input("Human (type 'exit' or 'quit' to quit, 'memory' for agent's memory): ")
if user_input.lower() == "exit" or user_input.lower() == "quit":
break
if user_input.lower() == "memory":
Expand Down

0 comments on commit d989476

Please sign in to comment.