We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ModuleNotFoundError: No module named 'requests' 等等
The text was updated successfully, but these errors were encountered:
UnicodeDecodeError: 'gbk' codec can't decode byte 0x80 in position 9393: illegal multibyte sequence 有几个地方要加 encoding='utf-8' 才能运行下去
running_recorder.py with open('your_file_path', 'r', encoding='utf-8') as reader: llm_pair = json.load(reader)
mock_input.py with open(os.path.join(self.mock_pair_dir, file_name), "r", encoding='utf-8') as reader: json_data_for_integration = json.load(reader)
Sorry, something went wrong.
感谢你的建议!我们已经修正了这个 bug,并更新了 requirements.txt 列表。 祝好!
Thank you for your suggestion! We have fixed this bug and updated the requirements.txt list. Best wishes!
No branches or pull requests
ModuleNotFoundError: No module named 'requests' 等等
The text was updated successfully, but these errors were encountered: