Skip to content

Commit 29421b8

Browse files
committed
memory: harden LongMemEval methodology and provenance
1 parent faee8bf commit 29421b8

67 files changed

Lines changed: 7300 additions & 6827 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/prc.yml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,10 @@ jobs:
7272
import subprocess
7373
7474
source_root = "trpc.group/trpc-go/trpc-agent-go"
75-
# The contributor fork hosts the stacked root support commit until
76-
# that commit is merged upstream and the pin is updated.
75+
expected_remote_root = "github.com/print-happy/trpc-agent-go"
76+
expected_version = "v0.0.0-20260716032212-1b3adb2f4bb8"
7777
allowed_remote_roots = {
78-
"github.com/trpc-group/trpc-agent-go",
79-
"github.com/print-happy/trpc-agent-go",
78+
expected_remote_root,
8079
}
8180
module = json.loads(
8281
subprocess.check_output(["go", "mod", "edit", "-json"])
@@ -114,7 +113,15 @@ jobs:
114113
"trpc-agent-go replacements use different versions: "
115114
+ ", ".join(sorted(versions))
116115
)
117-
print("trpc-agent-go dependency pin:", versions.pop())
116+
version = versions.pop()
117+
if pinned_roots != {expected_remote_root} or version != expected_version:
118+
raise SystemExit(
119+
"unexpected trpc-agent-go dependency pin: "
120+
+ ", ".join(sorted(pinned_roots))
121+
+ "@"
122+
+ version
123+
)
124+
print("trpc-agent-go dependency pin:", version)
118125
PY
119126
- name: Verify module dependencies
120127
working-directory: memory/trpc-agent-go-impl

memory/README.md

Lines changed: 104 additions & 72 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)