This commit is contained in:
2026-04-25 02:32:22 +09:00
parent 52aaa4d1f6
commit 8a8c0c9713
38 changed files with 1033 additions and 38 deletions

15
.old/predict.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
# Arguments: working_dir tja_path difficulty
WORKING_DIR=${1:-"."}
TJA_PATH=${2}
DIFFICULTY=${3:-"oni"}
if [ -z "$TJA_PATH" ]; then
echo "Usage: ./predict.sh <working_dir> <tja_path> [difficulty: oni|edit]"
exit 1
fi
echo "Running prediction for $TJA_PATH..."
# script_dir 인자가 사라졌으므로, 예측 스크립트 실행 시 인자 순서에 맞춰 실행
bun script/predict.ts "$WORKING_DIR" "$TJA_PATH" "$DIFFICULTY"