Enable virtual time for generative agents
This should close https://github.com/hwchase17/langchain/issues/4165 and it should not cause any backward incompatibility issues.
@vowelparrot Here is the output exported as a PDF of the notebook. Nothing breaks. characters.pdf
Any advice on fixing the lint failure? There is some type mismatch because I saved a datetime to the outputs dict of GenerativeAgentMemory.save_context, which has the type annotated as Dict[str, str].
Any advice on fixing the lint failure? There is some type mismatch because I saved a datetime to the
outputsdict ofGenerativeAgentMemory.save_context, which has the type annotated asDict[str, str].
You can update the dict typing to Dict[str, Any] in this case