Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,7 @@ call_model.py
app_package_name.py

.claude/
.venv
.venv

# Weights
AutoGLM-Phone-9B/
2 changes: 1 addition & 1 deletion scripts/check_deployment_cn.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
print(f"错误: 消息文件 {args.messages_file} 不存在")
exit(1)

with open(args.messages_file) as f:
with open(args.messages_file, encoding="utf-8") as f:
messages = json.load(f)

base_url = args.base_url
Expand Down
2 changes: 1 addition & 1 deletion scripts/check_deployment_en.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
print(f"Error: Message file {args.messages_file} does not exist")
exit(1)

with open(args.messages_file) as f:
with open(args.messages_file, encoding="utf-8") as f:
messages = json.load(f)

base_url = args.base_url
Expand Down