Skip to content

Commit fc72bc3

Browse files
fluffy314cursoragent
authored andcommitted
Mac M4 review evidence for PR-G6
Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 5c42aee commit fc72bc3

4 files changed

Lines changed: 34 additions & 1 deletion

File tree

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[chat] loading tokenizer Qwen/Qwen3-0.6B ...
2+
Kakeya v0.3 chat — 127.0.0.1:50098 (Qwen/Qwen3-0.6B)
3+
Session-bound runtime: server keeps history, you only send new tokens per turn.
4+
Type /help for commands; Ctrl-D or empty line to quit.
5+
6+
you> kakeya> Hello! How can I assist you today?
7+
you> kakeya> I don't have a favorite color, but I can help you with anything else! Let me know if there's something
8+
you> history_length = 77
9+
kv_live_bytes = 7,798,784
10+
idle_seconds = 0.001
11+
inv1_violations= 0
12+
inv2_violations= 0
13+
you> [bye]
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"schema_version": 1,
3+
"kind": "pr_g6_mac_chat_smoke",
4+
"host": {
5+
"platform": "macOS-26.5-arm64-arm-64bit-Mach-O",
6+
"machine": "arm64",
7+
"python": "3.13.12"
8+
},
9+
"n_chat_responses": 2,
10+
"passed": true
11+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
2026-06-05 20:55:15,083 kakeya.grpc-runtime INFO loading verifier backend=cpu id=Qwen/Qwen3-0.6B sink=4 window=64
2+
2026-06-05 20:55:17,120 kakeya.grpc-runtime INFO verifier dims: layers=28 kv_heads=8 head_dim=128 capacity=68
3+
2026-06-05 20:55:17,123 inference_engine.server.grpc_app INFO gRPC RuntimeService bound to 127.0.0.1:50098
4+
2026-06-05 20:55:17,124 kakeya.grpc-runtime INFO kakeya gRPC RuntimeService listening on 127.0.0.1:50098
5+
2026-06-05 20:55:21,921 kakeya.grpc-runtime INFO received signal 15; initiating graceful shutdown
6+
2026-06-05 20:55:21,921 kakeya.grpc-runtime INFO kakeya gRPC RuntimeService stopped cleanly

scripts/review_pr_g6_on_mac.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,10 @@ What is your favorite color?
7575
INPUT
7676

7777
# Acceptance: chat output contains at least 2 'kakeya>' response prompts.
78-
n_responses=$(grep -c '^kakeya> ' "$chat_log" || true)
78+
# With piped stdin, Python's input() prompt and the next printed prompt
79+
# share a line (for example: "you> kakeya> ..."), so count occurrences
80+
# instead of line starts.
81+
n_responses=$( (grep -o 'kakeya> ' "$chat_log" || true) | wc -l | tr -d '[:space:]')
7982
echo " chat_log: $chat_log"
8083
echo " response prompts: $n_responses (expect >=2)"
8184

0 commit comments

Comments
 (0)