NatanAmado
Results
2
issues of
NatanAmado
### Describe the bug When trying to run `interpreter.chat()` I get: > AttributeError: module 'interpreter' has no attribute 'chat' This same function worked just a few weeks ago, so I...
bug
### Describe the bug ``` ` def load_chat_history(filename='chat_history.txt'): file_path = create_file_in_appdata(filename) try: with open(file_path, 'r', encoding='utf-8') as file: return json.load(file) except (FileNotFoundError, json.JSONDecodeError) as e: # Log errors rather than...
Bug