mirror of
https://github.com/CJackHwang/ds2api.git
synced 2026-05-05 00:45:29 +08:00
17 lines
405 B
Bash
Executable File
17 lines
405 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ROOT_DIR="$(cd "$(dirname "$0")/../.." && pwd)"
|
|
cd "$ROOT_DIR"
|
|
|
|
REPORT_DIR="artifacts/raw-stream-sim"
|
|
mkdir -p "$REPORT_DIR"
|
|
REPORT_PATH="$REPORT_DIR/report-$(date -u +%Y%m%dT%H%M%SZ).json"
|
|
|
|
node tests/tools/deepseek-sse-simulator.mjs \
|
|
--samples-root tests/raw_stream_samples \
|
|
--report "$REPORT_PATH" \
|
|
"$@"
|
|
|
|
echo "[run-raw-stream-sim] report: $REPORT_PATH"
|