Merge pull request #440 from suravshresth/patch1

docs: fix typo in examples/agent_creator.py
This commit is contained in:
Sirui Hong 2023-10-19 15:47:32 +08:00 committed by GitHub
commit 34e903d1f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -91,7 +91,7 @@ if __name__ == "__main__":
msg = """
Write an agent called SimpleTester that will take any code snippet (str) and do the following:
1. write a testing code (str) for testing the given code snippet, save the testing code as a .py file in the current working diretory;
1. write a testing code (str) for testing the given code snippet, save the testing code as a .py file in the current working directory;
2. run the testing code.
You can use pytest as the testing framework.
"""