Merge pull request #32 from patlux/fix/use-host-pi-core-packages
perf: reduce pi extension RAM usage by using host core packages
This commit is contained in:
@@ -0,0 +1,417 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
import { mkdtemp, readFile, writeFile } from "node:fs/promises"
|
||||
import { tmpdir } from "node:os"
|
||||
import { join, resolve } from "node:path"
|
||||
import { execFile, spawn } from "node:child_process"
|
||||
import process from "node:process"
|
||||
import { promisify } from "node:util"
|
||||
|
||||
const execFileAsync = promisify(execFile)
|
||||
|
||||
const KIB_PER_MIB = 1024
|
||||
const RUNS = positiveInteger(process.env.MEMORY_BENCHMARK_RUNS, 6)
|
||||
const WARMUP_MS = positiveInteger(process.env.MEMORY_BENCHMARK_WARMUP_MS, 2500)
|
||||
const SAMPLE_COUNT = positiveInteger(process.env.MEMORY_BENCHMARK_SAMPLES, 12)
|
||||
const SAMPLE_INTERVAL_MS = positiveInteger(process.env.MEMORY_BENCHMARK_INTERVAL_MS, 100)
|
||||
|
||||
const basePath = requiredPath("MEMORY_BENCHMARK_BASE_PATH")
|
||||
const headPath = requiredPath("MEMORY_BENCHMARK_HEAD_PATH")
|
||||
const piCli = requiredPath("MEMORY_BENCHMARK_PI_CLI")
|
||||
const outputPath = resolve(process.env.MEMORY_BENCHMARK_OUTPUT ?? "memory-benchmark.md")
|
||||
const jsonOutputPath = resolve(process.env.MEMORY_BENCHMARK_JSON_OUTPUT ?? "memory-benchmark.json")
|
||||
const baseSha = process.env.MEMORY_BENCHMARK_BASE_SHA ?? "base"
|
||||
const headSha = process.env.MEMORY_BENCHMARK_HEAD_SHA ?? "head"
|
||||
const piVersion = process.env.MEMORY_BENCHMARK_PI_VERSION ?? "unknown"
|
||||
const runtimeName = process.versions.bun ? "Bun" : "Node"
|
||||
const runtimeVersion = process.versions.bun ?? process.versions.node
|
||||
|
||||
const benchmarkDir = await mkdtemp(join(tmpdir(), "pi-memory-benchmark-"))
|
||||
const cachePath = join(benchmarkDir, "commandcode-models.json")
|
||||
await writeFile(
|
||||
cachePath,
|
||||
`${JSON.stringify(
|
||||
{
|
||||
version: 1,
|
||||
models: [
|
||||
{
|
||||
id: "memory-benchmark-model",
|
||||
name: "Memory Benchmark Model (CC)",
|
||||
reasoning: true,
|
||||
contextWindow: 128_000,
|
||||
maxTokens: 65_536,
|
||||
},
|
||||
],
|
||||
},
|
||||
null,
|
||||
2,
|
||||
)}\n`,
|
||||
)
|
||||
|
||||
const variants = {
|
||||
baseline: { label: "pi without extension", extensionPath: undefined },
|
||||
base: { label: `Base (${shortSha(baseSha)})`, extensionPath: basePath },
|
||||
head: { label: `PR (${shortSha(headSha)})`, extensionPath: headPath },
|
||||
}
|
||||
|
||||
const results = Object.fromEntries(Object.keys(variants).map((key) => [key, []]))
|
||||
|
||||
console.log(
|
||||
`Benchmarking ${RUNS} alternating rounds with pi ${piVersion}, ${runtimeName} ${runtimeVersion}, ` +
|
||||
`${SAMPLE_COUNT} samples after ${WARMUP_MS} ms warm-up`,
|
||||
)
|
||||
|
||||
// Discard one cold run per variant before collecting measurements.
|
||||
for (const key of ["baseline", "base", "head"]) {
|
||||
console.log(`Cold warm-up: ${variants[key].label}`)
|
||||
await measureProcess(variants[key].extensionPath)
|
||||
}
|
||||
|
||||
for (let round = 0; round < RUNS; round += 1) {
|
||||
const order = round % 2 === 0 ? ["baseline", "base", "head"] : ["baseline", "head", "base"]
|
||||
console.log(`Round ${round + 1}/${RUNS}: ${order.map((key) => variants[key].label).join(" → ")}`)
|
||||
|
||||
for (const key of order) {
|
||||
const measurement = await measureProcess(variants[key].extensionPath)
|
||||
results[key].push(measurement)
|
||||
console.log(` ${variants[key].label}: ${formatProgress(measurement)}`)
|
||||
}
|
||||
}
|
||||
|
||||
const summary = Object.fromEntries(
|
||||
Object.entries(results).map(([key, measurements]) => [key, summarize(measurements)]),
|
||||
)
|
||||
const comparisons = summarizeComparisons(results)
|
||||
const report = renderReport(summary, comparisons)
|
||||
|
||||
await writeFile(outputPath, report)
|
||||
await writeFile(
|
||||
jsonOutputPath,
|
||||
`${JSON.stringify(
|
||||
{
|
||||
metadata: {
|
||||
baseSha,
|
||||
headSha,
|
||||
piVersion,
|
||||
runtimeName,
|
||||
runtimeVersion,
|
||||
runs: RUNS,
|
||||
warmupMs: WARMUP_MS,
|
||||
sampleCount: SAMPLE_COUNT,
|
||||
sampleIntervalMs: SAMPLE_INTERVAL_MS,
|
||||
},
|
||||
runs: results,
|
||||
summary,
|
||||
comparisons,
|
||||
},
|
||||
null,
|
||||
2,
|
||||
)}\n`,
|
||||
)
|
||||
|
||||
console.log(`Wrote ${outputPath}`)
|
||||
console.log(`Wrote ${jsonOutputPath}`)
|
||||
|
||||
async function measureProcess(extensionPath) {
|
||||
const args = [
|
||||
piCli,
|
||||
"--mode",
|
||||
"rpc",
|
||||
"--no-session",
|
||||
"--no-extensions",
|
||||
"--no-skills",
|
||||
"--no-prompt-templates",
|
||||
"--no-themes",
|
||||
"--no-context-files",
|
||||
]
|
||||
if (extensionPath) args.push("-e", extensionPath)
|
||||
|
||||
const child = spawn(process.execPath, args, {
|
||||
detached: true,
|
||||
env: {
|
||||
...process.env,
|
||||
PI_CODING_AGENT_DIR: join(benchmarkDir, "pi-agent"),
|
||||
PI_OFFLINE: "1",
|
||||
COMMANDCODE_MODELS_CACHE: cachePath,
|
||||
COMMANDCODE_MODELS_URL: "http://127.0.0.1:9/provider/v1/models",
|
||||
},
|
||||
stdio: ["pipe", "pipe", "pipe"],
|
||||
})
|
||||
|
||||
let stderr = ""
|
||||
child.stdout.resume()
|
||||
child.stderr.on("data", (chunk) => {
|
||||
stderr += chunk.toString("utf8")
|
||||
if (stderr.length > 16_384) stderr = stderr.slice(-16_384)
|
||||
})
|
||||
|
||||
try {
|
||||
await wait(WARMUP_MS)
|
||||
ensureRunning(child, stderr)
|
||||
|
||||
const samples = []
|
||||
for (let index = 0; index < SAMPLE_COUNT; index += 1) {
|
||||
samples.push(await readSampledMemory(child.pid))
|
||||
await wait(SAMPLE_INTERVAL_MS)
|
||||
ensureRunning(child, stderr)
|
||||
}
|
||||
|
||||
const sampled = Object.fromEntries(
|
||||
Object.keys(samples[0]).map((metric) => [
|
||||
metric,
|
||||
metric === "peakRss"
|
||||
? Math.max(...samples.map((sample) => sample[metric]))
|
||||
: median(samples.map((sample) => sample[metric])),
|
||||
]),
|
||||
)
|
||||
const snapshot = process.platform === "darwin" ? await readDarwinFootprint(child.pid) : {}
|
||||
return { ...sampled, ...snapshot }
|
||||
} finally {
|
||||
stopProcessGroup(child)
|
||||
await Promise.race([onceExit(child), wait(3000)])
|
||||
stopProcessGroup(child, "SIGKILL")
|
||||
}
|
||||
}
|
||||
|
||||
async function readSampledMemory(pid) {
|
||||
if (process.platform === "darwin") {
|
||||
const { stdout } = await execFileAsync("/bin/ps", ["-o", "rss=", "-p", String(pid)])
|
||||
const rssKiB = Number.parseInt(stdout.trim(), 10)
|
||||
if (!Number.isFinite(rssKiB)) throw new Error(`Could not parse RSS from ps output: ${stdout}`)
|
||||
return { rss: rssKiB / KIB_PER_MIB }
|
||||
}
|
||||
|
||||
if (process.platform === "linux") return readLinuxMemory(pid)
|
||||
throw new Error(`Unsupported memory benchmark platform: ${process.platform}`)
|
||||
}
|
||||
|
||||
async function readDarwinFootprint(pid) {
|
||||
const { stdout } = await execFileAsync("/usr/bin/footprint", [
|
||||
"-p",
|
||||
String(pid),
|
||||
"-f",
|
||||
"bytes",
|
||||
"--noCategories",
|
||||
])
|
||||
const footprint = /Footprint:\s*(\d+) B/.exec(stdout)
|
||||
const peak = /phys_footprint_peak:\s*(\d+) B/.exec(stdout)
|
||||
if (!footprint || !peak) throw new Error(`Could not parse macOS footprint output:\n${stdout}`)
|
||||
|
||||
return {
|
||||
physicalFootprint: Number(footprint[1]) / 1024 / 1024,
|
||||
physicalPeak: Number(peak[1]) / 1024 / 1024,
|
||||
}
|
||||
}
|
||||
|
||||
async function readLinuxMemory(pid) {
|
||||
const [status, smaps] = await Promise.all([
|
||||
readFile(`/proc/${pid}/status`, "utf8"),
|
||||
readFile(`/proc/${pid}/smaps_rollup`, "utf8"),
|
||||
])
|
||||
const statusValues = parseKiBFields(status)
|
||||
const smapsValues = parseKiBFields(smaps)
|
||||
const privateMemory =
|
||||
(smapsValues.Private_Clean ?? 0) +
|
||||
(smapsValues.Private_Dirty ?? 0) +
|
||||
(smapsValues.Private_Hugetlb ?? 0)
|
||||
|
||||
return {
|
||||
rss: requireMetric(statusValues, "VmRSS"),
|
||||
anonymousRss: requireMetric(statusValues, "RssAnon"),
|
||||
pss: requireMetric(smapsValues, "Pss"),
|
||||
uss: privateMemory,
|
||||
peakRss: requireMetric(statusValues, "VmHWM"),
|
||||
}
|
||||
}
|
||||
|
||||
function parseKiBFields(contents) {
|
||||
const result = {}
|
||||
for (const line of contents.split("\n")) {
|
||||
const match = /^([A-Za-z_]+):\s+(\d+) kB$/.exec(line.trim())
|
||||
if (match) result[match[1]] = Number(match[2]) / KIB_PER_MIB
|
||||
}
|
||||
return result
|
||||
}
|
||||
|
||||
function summarize(measurements) {
|
||||
return Object.fromEntries(
|
||||
Object.keys(measurements[0]).map((metric) => {
|
||||
const values = measurements.map((measurement) => measurement[metric])
|
||||
const center = median(values)
|
||||
return [
|
||||
metric,
|
||||
{ median: center, mad: median(values.map((value) => Math.abs(value - center))) },
|
||||
]
|
||||
}),
|
||||
)
|
||||
}
|
||||
|
||||
function summarizeComparisons(measurements) {
|
||||
const metrics = Object.keys(measurements.baseline[0])
|
||||
const paired = (left, right, metric) =>
|
||||
left.map((measurement, index) => measurement[metric] - right[index][metric])
|
||||
const estimate = (values) => {
|
||||
const center = median(values)
|
||||
return { median: center, mad: median(values.map((value) => Math.abs(value - center))) }
|
||||
}
|
||||
|
||||
return Object.fromEntries(
|
||||
metrics.map((metric) => [
|
||||
metric,
|
||||
{
|
||||
headMinusBase: estimate(paired(measurements.head, measurements.base, metric)),
|
||||
baseOverhead: estimate(paired(measurements.base, measurements.baseline, metric)),
|
||||
headOverhead: estimate(paired(measurements.head, measurements.baseline, metric)),
|
||||
},
|
||||
]),
|
||||
)
|
||||
}
|
||||
|
||||
function renderReport(summary, comparisons) {
|
||||
const metrics =
|
||||
process.platform === "darwin"
|
||||
? [
|
||||
["rss", "Stable RSS"],
|
||||
["physicalFootprint", "Physical footprint"],
|
||||
["physicalPeak", "Physical peak"],
|
||||
]
|
||||
: [
|
||||
["rss", "Stable RSS"],
|
||||
["anonymousRss", "Anonymous RSS"],
|
||||
["pss", "PSS"],
|
||||
["uss", "USS (private memory)"],
|
||||
["peakRss", "Peak RSS"],
|
||||
]
|
||||
|
||||
const comparisonRows = metrics
|
||||
.map(([key, label]) => {
|
||||
const base = summary.base[key]
|
||||
const head = summary.head[key]
|
||||
const difference = comparisons[key].headMinusBase
|
||||
const percentage = base.median === 0 ? 0 : (difference.median / base.median) * 100
|
||||
return `| ${label} | ${formatEstimate(base)} | ${formatEstimate(head)} | ${formatSignedEstimate(difference)} | ${formatSigned(percentage, "%")} |`
|
||||
})
|
||||
.join("\n")
|
||||
|
||||
const clearChanges = metrics
|
||||
.map(([key, label]) => [label, comparisons[key].headMinusBase])
|
||||
.filter(([, estimate]) => Math.abs(estimate.median) > estimate.mad)
|
||||
const interpretation =
|
||||
clearChanges.length === 0
|
||||
? "No metric shows a clear Base-to-PR difference beyond its measured run-to-run variation."
|
||||
: `Differences larger than their measured MAD: ${clearChanges
|
||||
.map(([label, estimate]) => `${label} ${formatSignedEstimate(estimate)}`)
|
||||
.join(", ")}.`
|
||||
|
||||
const overheadRows = metrics
|
||||
.map(([key, label]) => {
|
||||
const comparison = comparisons[key]
|
||||
return `| ${label} | ${formatSignedEstimate(comparison.baseOverhead)} | ${formatSignedEstimate(comparison.headOverhead)} | ${formatSignedEstimate(comparison.headMinusBase)} |`
|
||||
})
|
||||
.join("\n")
|
||||
|
||||
return (
|
||||
`## Memory benchmark\n\n` +
|
||||
`Compared base \`${shortSha(baseSha)}\` with PR head \`${shortSha(headSha)}\` on the same GitHub-hosted ${process.platform} runner. Lower values are better.\n\n` +
|
||||
`| Metric | Base | PR | PR − Base | Change |\n` +
|
||||
`|---|---:|---:|---:|---:|\n` +
|
||||
`${comparisonRows}\n\n` +
|
||||
`**Interpretation:** ${interpretation}\n\n` +
|
||||
`### Extension overhead above pi baseline\n\n` +
|
||||
`| Metric | Base overhead | PR overhead | Difference |\n` +
|
||||
`|---|---:|---:|---:|\n` +
|
||||
`${overheadRows}\n\n` +
|
||||
`Values are medians of ${RUNS} alternating, paired runs. The value after \`±\` is the median absolute deviation (MAD). ` +
|
||||
`Each process was sampled ${SAMPLE_COUNT} times after a ${WARMUP_MS} ms warm-up.\n\n` +
|
||||
`Environment: pi \`${piVersion}\`, ${runtimeName} \`${runtimeVersion}\`, ${process.platform} \`${process.arch}\`. ` +
|
||||
measurementSource() +
|
||||
`\n\n> This is a comparative signal, not a pass/fail threshold. GitHub-hosted runner noise can affect absolute values.\n`
|
||||
)
|
||||
}
|
||||
|
||||
function measurementSource() {
|
||||
if (process.platform === "darwin") {
|
||||
return "RSS comes from `ps`; physical footprint and peak come from macOS `footprint`."
|
||||
}
|
||||
return "PSS and USS come from `/proc/<pid>/smaps_rollup`; RSS metrics come from `/proc/<pid>/status`."
|
||||
}
|
||||
|
||||
function median(values) {
|
||||
const sorted = [...values].sort((left, right) => left - right)
|
||||
const middle = Math.floor(sorted.length / 2)
|
||||
return sorted.length % 2 === 0 ? (sorted[middle - 1] + sorted[middle]) / 2 : sorted[middle]
|
||||
}
|
||||
|
||||
function formatProgress(measurement) {
|
||||
if (process.platform === "darwin") {
|
||||
return `${formatMiB(measurement.rss)} RSS, ${formatMiB(measurement.physicalFootprint)} physical`
|
||||
}
|
||||
return `${formatMiB(measurement.rss)} RSS, ${formatMiB(measurement.pss)} PSS`
|
||||
}
|
||||
|
||||
function formatEstimate(value) {
|
||||
return `${formatMiB(value.median)} ± ${value.mad.toFixed(1)} MiB`
|
||||
}
|
||||
|
||||
function formatMiB(value) {
|
||||
return `${value.toFixed(1)} MiB`
|
||||
}
|
||||
|
||||
function formatSignedEstimate(value) {
|
||||
return `${formatSigned(value.median)} ± ${value.mad.toFixed(1)} MiB`
|
||||
}
|
||||
|
||||
function formatSigned(value, suffix = " MiB") {
|
||||
const sign = value > 0 ? "+" : ""
|
||||
return `${sign}${value.toFixed(1)}${suffix}`
|
||||
}
|
||||
|
||||
function requiredPath(name) {
|
||||
const value = process.env[name]
|
||||
if (!value) throw new Error(`${name} is required`)
|
||||
return resolve(value)
|
||||
}
|
||||
|
||||
function positiveInteger(value, fallback) {
|
||||
if (value === undefined) return fallback
|
||||
const parsed = Number.parseInt(value, 10)
|
||||
if (!Number.isInteger(parsed) || parsed <= 0)
|
||||
throw new Error(`Expected a positive integer, got ${value}`)
|
||||
return parsed
|
||||
}
|
||||
|
||||
function requireMetric(values, name) {
|
||||
const value = values[name]
|
||||
if (value === undefined) throw new Error(`Missing ${name} in Linux process memory data`)
|
||||
return value
|
||||
}
|
||||
|
||||
function shortSha(sha) {
|
||||
return sha.slice(0, 7)
|
||||
}
|
||||
|
||||
function ensureRunning(child, stderr) {
|
||||
if (child.exitCode !== null || child.signalCode !== null) {
|
||||
throw new Error(
|
||||
`pi exited before memory sampling completed (code ${child.exitCode}, signal ${child.signalCode})\n${stderr}`,
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
function stopProcessGroup(child, signal = "SIGTERM") {
|
||||
if (!child.pid) return
|
||||
try {
|
||||
process.kill(-child.pid, signal)
|
||||
} catch (error) {
|
||||
if (error?.code !== "ESRCH") throw error
|
||||
}
|
||||
}
|
||||
|
||||
function onceExit(child) {
|
||||
if (child.exitCode !== null || child.signalCode !== null) return Promise.resolve()
|
||||
return new Promise((resolveExit) => child.once("exit", resolveExit))
|
||||
}
|
||||
|
||||
function wait(milliseconds) {
|
||||
return new Promise((resolveWait) => setTimeout(resolveWait, milliseconds))
|
||||
}
|
||||
@@ -0,0 +1,154 @@
|
||||
name: Memory benchmark
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches: [main]
|
||||
types: [opened, synchronize, reopened, ready_for_review]
|
||||
|
||||
concurrency:
|
||||
group: memory-benchmark-${{ github.event.pull_request.number }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
compare:
|
||||
name: Compare base and PR memory
|
||||
runs-on: macos-14
|
||||
timeout-minutes: 15
|
||||
permissions:
|
||||
contents: read
|
||||
env:
|
||||
PI_VERSION: 0.82.1
|
||||
BUN_VERSION: 1.3.11
|
||||
NODE_VERSION: 22.19.0
|
||||
MEMORY_BENCHMARK_RUNS: 6
|
||||
MEMORY_BENCHMARK_WARMUP_MS: 2500
|
||||
MEMORY_BENCHMARK_SAMPLES: 12
|
||||
MEMORY_BENCHMARK_INTERVAL_MS: 100
|
||||
|
||||
steps:
|
||||
- name: Check out benchmark implementation
|
||||
uses: actions/checkout@v7
|
||||
with:
|
||||
ref: ${{ github.event.pull_request.head.sha }}
|
||||
path: benchmark
|
||||
persist-credentials: false
|
||||
|
||||
- name: Check out base revision
|
||||
uses: actions/checkout@v7
|
||||
with:
|
||||
ref: ${{ github.event.pull_request.base.sha }}
|
||||
path: base
|
||||
persist-credentials: false
|
||||
|
||||
- name: Check out PR revision
|
||||
uses: actions/checkout@v7
|
||||
with:
|
||||
ref: ${{ github.event.pull_request.head.sha }}
|
||||
path: head
|
||||
persist-credentials: false
|
||||
|
||||
- uses: actions/setup-node@v7
|
||||
with:
|
||||
node-version: ${{ env.NODE_VERSION }}
|
||||
cache: npm
|
||||
cache-dependency-path: |
|
||||
base/package-lock.json
|
||||
head/package-lock.json
|
||||
|
||||
- uses: oven-sh/setup-bun@v2.2.0
|
||||
with:
|
||||
bun-version: ${{ env.BUN_VERSION }}
|
||||
|
||||
- name: Install base dependencies
|
||||
working-directory: base
|
||||
run: npm ci --ignore-scripts
|
||||
|
||||
- name: Install PR dependencies
|
||||
working-directory: head
|
||||
run: npm ci --ignore-scripts
|
||||
|
||||
- name: Install pinned pi host
|
||||
run: |
|
||||
npm install \
|
||||
--prefix pi-host \
|
||||
--ignore-scripts \
|
||||
--no-save \
|
||||
"@earendil-works/pi-coding-agent@$PI_VERSION"
|
||||
|
||||
- name: Compare memory usage
|
||||
env:
|
||||
MEMORY_BENCHMARK_BASE_PATH: ${{ github.workspace }}/base
|
||||
MEMORY_BENCHMARK_HEAD_PATH: ${{ github.workspace }}/head
|
||||
MEMORY_BENCHMARK_PI_CLI: ${{ github.workspace }}/pi-host/node_modules/@earendil-works/pi-coding-agent/dist/cli.js
|
||||
MEMORY_BENCHMARK_BASE_SHA: ${{ github.event.pull_request.base.sha }}
|
||||
MEMORY_BENCHMARK_HEAD_SHA: ${{ github.event.pull_request.head.sha }}
|
||||
MEMORY_BENCHMARK_PI_VERSION: ${{ env.PI_VERSION }}
|
||||
MEMORY_BENCHMARK_OUTPUT: ${{ github.workspace }}/memory-benchmark.md
|
||||
MEMORY_BENCHMARK_JSON_OUTPUT: ${{ github.workspace }}/memory-benchmark.json
|
||||
run: bun benchmark/.github/scripts/memory-benchmark.mjs
|
||||
|
||||
- name: Add benchmark to job summary
|
||||
if: always() && hashFiles('memory-benchmark.md') != ''
|
||||
run: cat memory-benchmark.md >> "$GITHUB_STEP_SUMMARY"
|
||||
|
||||
- name: Upload benchmark report
|
||||
if: always() && hashFiles('memory-benchmark.md') != ''
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: memory-benchmark-report
|
||||
path: |
|
||||
memory-benchmark.md
|
||||
memory-benchmark.json
|
||||
retention-days: 30
|
||||
|
||||
comment:
|
||||
name: Update PR comment
|
||||
needs: compare
|
||||
if: >-
|
||||
always() &&
|
||||
needs.compare.result == 'success' &&
|
||||
github.event.pull_request.head.repo.full_name == github.repository
|
||||
runs-on: ubuntu-24.04
|
||||
permissions:
|
||||
actions: read
|
||||
contents: read
|
||||
pull-requests: write
|
||||
|
||||
steps:
|
||||
- name: Download benchmark report
|
||||
uses: actions/download-artifact@v8
|
||||
with:
|
||||
name: memory-benchmark-report
|
||||
|
||||
- name: Update sticky PR comment
|
||||
uses: actions/github-script@v9
|
||||
env:
|
||||
REPORT_PATH: memory-benchmark.md
|
||||
with:
|
||||
script: |
|
||||
const fs = require("node:fs")
|
||||
const marker = "<!-- pi-commandcode-memory-benchmark -->"
|
||||
const report = fs.readFileSync(process.env.REPORT_PATH, "utf8")
|
||||
const body = `${marker}\n${report}`
|
||||
const { owner, repo } = context.repo
|
||||
const issue_number = context.issue.number
|
||||
const comments = await github.paginate(github.rest.issues.listComments, {
|
||||
owner,
|
||||
repo,
|
||||
issue_number,
|
||||
per_page: 100,
|
||||
})
|
||||
const previous = comments.find(
|
||||
(comment) => comment.user?.type === "Bot" && comment.body?.includes(marker),
|
||||
)
|
||||
|
||||
if (previous) {
|
||||
await github.rest.issues.updateComment({
|
||||
owner,
|
||||
repo,
|
||||
comment_id: previous.id,
|
||||
body,
|
||||
})
|
||||
} else {
|
||||
await github.rest.issues.createComment({ owner, repo, issue_number, body })
|
||||
}
|
||||
@@ -1,5 +1,9 @@
|
||||
# Changelog
|
||||
|
||||
## Unreleased
|
||||
|
||||
- Use the host-provided `pi-ai` and `pi-coding-agent` core packages instead of installing private runtime copies, including for local and out-of-store development checkouts.
|
||||
|
||||
## 0.4.4 - 2026-08-03
|
||||
|
||||
- Fix cached input tokens being counted twice.
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
# pi-commandcode-provider
|
||||
|
||||
[](https://github.com/patlux/pi-commandcode-provider/actions/workflows/ci.yml)
|
||||
[](https://github.com/patlux/pi-commandcode-provider/actions/workflows/memory-benchmark.yml)
|
||||
|
||||
A [pi](https://github.com/badlogic/pi-mono) custom provider that connects pi to the [Command Code](https://commandcode.ai) API.
|
||||
|
||||
> **Disclaimer:** This is an unofficial, community-maintained package. I am not affiliated with, endorsed by, or connected to Command Code in any way. This provider simply forwards requests to the public Command Code API using your own API key.
|
||||
|
||||
Generated
+7
-1244
File diff suppressed because it is too large
Load Diff
+6
-5
@@ -28,7 +28,7 @@
|
||||
"LICENSE"
|
||||
],
|
||||
"scripts": {
|
||||
"test": "npm run typecheck && tsx tests/test-pure-functions.ts && tsx tests/test-models.ts && tsx tests/test-pricing.ts && tsx tests/test-cost.ts && tsx tests/test-oauth.ts && tsx tests/test-abort.ts && tsx tests/test-stream.ts && tsx tests/test-retry.ts && node tests/test-pi-local.mjs && node tests/test-omp-compat.mjs",
|
||||
"test": "npm run typecheck && tsx tests/test-package-manifest.ts && tsx tests/test-pure-functions.ts && tsx tests/test-models.ts && tsx tests/test-pricing.ts && tsx tests/test-cost.ts && tsx tests/test-oauth.ts && tsx tests/test-abort.ts && tsx tests/test-stream.ts && tsx tests/test-retry.ts && node tests/test-pi-local.mjs && node tests/test-omp-compat.mjs",
|
||||
"typecheck": "tsc --noEmit",
|
||||
"format:check": "prettier --check '**/*.{ts,mjs,json,md}'",
|
||||
"format": "prettier --write '**/*.{ts,mjs,json,md}'",
|
||||
@@ -54,13 +54,14 @@
|
||||
"tsx": "4.22.4",
|
||||
"typescript": "6.0.3"
|
||||
},
|
||||
"dependencies": {
|
||||
"@earendil-works/pi-ai": "0.75.5"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@earendil-works/pi-coding-agent": "^0.75.5"
|
||||
"@earendil-works/pi-ai": "*",
|
||||
"@earendil-works/pi-coding-agent": "*"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
"@earendil-works/pi-ai": {
|
||||
"optional": true
|
||||
},
|
||||
"@earendil-works/pi-coding-agent": {
|
||||
"optional": true
|
||||
}
|
||||
|
||||
+1
-1
@@ -13,7 +13,7 @@ export function calculateCommandCodeCost(model: ModelLike, usage: Usage): void {
|
||||
usage.cost.input = (model.cost.input / 1_000_000) * usage.input
|
||||
usage.cost.output = (model.cost.output / 1_000_000) * usage.output
|
||||
usage.cost.cacheRead = (model.cost.cacheRead / 1_000_000) * usage.cacheRead
|
||||
usage.cost.cacheWrite = (model.cost.cacheWrite / 1_000_000) * usage.cacheWrite
|
||||
usage.cost.cacheWrite = (model.cost.cacheWrite * usage.cacheWrite) / 1_000_000
|
||||
usage.cost.total =
|
||||
usage.cost.input + usage.cost.output + usage.cost.cacheRead + usage.cost.cacheWrite
|
||||
}
|
||||
|
||||
+34
-27
@@ -3,19 +3,22 @@
|
||||
*
|
||||
* The provider ships its own cost function because Oh My Pi's legacy pi-ai
|
||||
* shim does not export `calculateCost` (see issue #24). This test locks the
|
||||
* local implementation to pi-ai's upstream `calculateCost` so the two cannot
|
||||
* drift while pi remains the reference host.
|
||||
* local implementation to pi-ai's documented per-million-token arithmetic
|
||||
* without installing another pi-ai runtime next to the extension.
|
||||
*/
|
||||
|
||||
import assert from "node:assert/strict"
|
||||
import { describe, it } from "node:test"
|
||||
|
||||
import { calculateCost, type Model } from "@earendil-works/pi-ai"
|
||||
|
||||
import { calculateCommandCodeCost } from "../src/cost.ts"
|
||||
import type { Usage } from "../src/types.ts"
|
||||
|
||||
type CostTable = Model<"openai-completions">["cost"]
|
||||
interface CostTable {
|
||||
input: number
|
||||
output: number
|
||||
cacheRead: number
|
||||
cacheWrite: number
|
||||
}
|
||||
|
||||
const COST_FIXTURES: Record<string, CostTable> = {
|
||||
"zero-cost-model": { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },
|
||||
@@ -38,17 +41,12 @@ const USAGE_CASES = [
|
||||
{ input: 7, output: 999_999_999, cacheRead: 0.5, cacheWrite: 42 },
|
||||
]
|
||||
|
||||
function piAiModel(id: string, cost: CostTable): Model<"openai-completions"> {
|
||||
function commandCodeModel(id: string, cost: CostTable) {
|
||||
return {
|
||||
id,
|
||||
name: id,
|
||||
api: "openai-completions",
|
||||
api: "commandcode-custom",
|
||||
provider: "commandcode",
|
||||
baseUrl: "https://api.commandcode.ai",
|
||||
reasoning: false,
|
||||
input: ["text"],
|
||||
cost,
|
||||
contextWindow: 1_000_000,
|
||||
maxTokens: 65_536,
|
||||
}
|
||||
}
|
||||
@@ -61,31 +59,40 @@ function freshUsage(tokens: (typeof USAGE_CASES)[number]): Usage {
|
||||
}
|
||||
}
|
||||
|
||||
function expectedCost(cost: CostTable, tokens: (typeof USAGE_CASES)[number]): Usage["cost"] {
|
||||
const input = (cost.input / 1_000_000) * tokens.input
|
||||
const output = (cost.output / 1_000_000) * tokens.output
|
||||
const cacheRead = (cost.cacheRead / 1_000_000) * tokens.cacheRead
|
||||
const cacheWrite = (cost.cacheWrite * tokens.cacheWrite) / 1_000_000
|
||||
return {
|
||||
input,
|
||||
output,
|
||||
cacheRead,
|
||||
cacheWrite,
|
||||
total: input + output + cacheRead + cacheWrite,
|
||||
}
|
||||
}
|
||||
|
||||
describe("calculateCommandCodeCost()", () => {
|
||||
it("matches pi-ai calculateCost exactly for all cost fields", () => {
|
||||
it("applies per-million-token rates to all cost fields", () => {
|
||||
for (const [id, cost] of Object.entries(COST_FIXTURES)) {
|
||||
const model = piAiModel(id, cost)
|
||||
const model = commandCodeModel(id, cost)
|
||||
|
||||
for (const tokens of USAGE_CASES) {
|
||||
const ours = freshUsage(tokens)
|
||||
const upstream = freshUsage(tokens)
|
||||
const usage = freshUsage(tokens)
|
||||
calculateCommandCodeCost(model, usage)
|
||||
|
||||
calculateCommandCodeCost(model, ours)
|
||||
calculateCost(model, upstream)
|
||||
|
||||
for (const key of ["input", "output", "cacheRead", "cacheWrite", "total"] as const) {
|
||||
assert.equal(
|
||||
ours.cost[key],
|
||||
upstream.cost[key],
|
||||
`${id} cost.${key} for tokens=${JSON.stringify(tokens)}`,
|
||||
)
|
||||
}
|
||||
assert.deepEqual(
|
||||
usage.cost,
|
||||
expectedCost(cost, tokens),
|
||||
`${id} cost for tokens=${JSON.stringify(tokens)}`,
|
||||
)
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
it("writes the total as the sum of all cost components", () => {
|
||||
const model = piAiModel("claude-sonnet-4-6", COST_FIXTURES["claude-sonnet-4-6"])
|
||||
const model = commandCodeModel("claude-sonnet-4-6", COST_FIXTURES["claude-sonnet-4-6"])
|
||||
const usage = freshUsage({ input: 1_000, output: 500, cacheRead: 10_000, cacheWrite: 2_000 })
|
||||
|
||||
calculateCommandCodeCost(model, usage)
|
||||
|
||||
@@ -0,0 +1,30 @@
|
||||
import assert from "node:assert/strict"
|
||||
import { readFile } from "node:fs/promises"
|
||||
import { describe, it } from "node:test"
|
||||
|
||||
interface PackageManifest {
|
||||
dependencies?: Record<string, string>
|
||||
devDependencies?: Record<string, string>
|
||||
peerDependencies?: Record<string, string>
|
||||
peerDependenciesMeta?: Record<string, { optional?: boolean }>
|
||||
}
|
||||
|
||||
const CORE_PEERS = ["@earendil-works/pi-ai", "@earendil-works/pi-coding-agent"] as const
|
||||
|
||||
async function readPackageManifest(): Promise<PackageManifest> {
|
||||
const contents = await readFile(new URL("../package.json", import.meta.url), "utf-8")
|
||||
return JSON.parse(contents) as PackageManifest
|
||||
}
|
||||
|
||||
describe("package manifest", () => {
|
||||
it("uses pi's bundled core packages instead of installing private runtime copies", async () => {
|
||||
const manifest = await readPackageManifest()
|
||||
|
||||
for (const packageName of CORE_PEERS) {
|
||||
assert.equal(manifest.dependencies?.[packageName], undefined)
|
||||
assert.equal(manifest.devDependencies?.[packageName], undefined)
|
||||
assert.equal(manifest.peerDependencies?.[packageName], "*")
|
||||
assert.equal(manifest.peerDependenciesMeta?.[packageName]?.optional, true)
|
||||
}
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user