(cls)
| 23 | |
| 24 | @classmethod |
| 25 | def setUpClass(cls): |
| 26 | cls.f = open(f"test_{TestDemoGPT.TEST_INDEX}.log", "w") |
| 27 | |
| 28 | # it sets the model name |
| 29 | model_name = "gpt-3.5-turbo-0613" |
| 30 | |
| 31 | Chains.setLlm(model_name) |
| 32 | TaskChains.setLlm(model_name) |
| 33 | |
| 34 | @classmethod |
| 35 | def writeToFile(cls, title, res, instruction): |