langchain icon indicating copy to clipboard operation
langchain copied to clipboard

Enable virtual time for generative agents

Open ifsheldon opened this issue 2 years ago • 3 comments

This should close https://github.com/hwchase17/langchain/issues/4165 and it should not cause any backward incompatibility issues.

ifsheldon avatar May 05 '23 09:05 ifsheldon

@vowelparrot Here is the output exported as a PDF of the notebook. Nothing breaks. characters.pdf

ifsheldon avatar May 08 '23 07:05 ifsheldon

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].

ifsheldon avatar May 08 '23 07:05 ifsheldon

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].

You can update the dict typing to Dict[str, Any] in this case

vowelparrot avatar May 08 '23 16:05 vowelparrot