pinecall 0.2.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. package/README.md +12 -5
  2. package/dist/cli/chat.d.ts.map +1 -1
  3. package/dist/cli/chat.js +4 -2
  4. package/dist/cli/chat.js.map +1 -1
  5. package/dist/cli/index.d.ts.map +1 -1
  6. package/dist/cli/index.js +5 -2
  7. package/dist/cli/index.js.map +1 -1
  8. package/dist/cli/knowledge.d.ts.map +1 -1
  9. package/dist/cli/knowledge.js +6 -3
  10. package/dist/cli/knowledge.js.map +1 -1
  11. package/dist/cli/line.d.ts.map +1 -1
  12. package/dist/cli/line.js +9 -6
  13. package/dist/cli/line.js.map +1 -1
  14. package/dist/cli/prompt.d.ts.map +1 -1
  15. package/dist/cli/prompt.js +2 -1
  16. package/dist/cli/prompt.js.map +1 -1
  17. package/dist/cli/run-console.d.ts +15 -0
  18. package/dist/cli/run-console.d.ts.map +1 -0
  19. package/dist/cli/run-console.js +49 -0
  20. package/dist/cli/run-console.js.map +1 -0
  21. package/dist/cli/run-screens.d.ts +1 -0
  22. package/dist/cli/run-screens.d.ts.map +1 -1
  23. package/dist/cli/run-screens.js +1 -1
  24. package/dist/cli/run-screens.js.map +1 -1
  25. package/dist/cli/run.d.ts +4 -5
  26. package/dist/cli/run.d.ts.map +1 -1
  27. package/dist/cli/run.js +73 -46
  28. package/dist/cli/run.js.map +1 -1
  29. package/dist/cli/serve/server.d.ts +35 -0
  30. package/dist/cli/serve/server.d.ts.map +1 -0
  31. package/dist/cli/serve/server.js +199 -0
  32. package/dist/cli/serve/server.js.map +1 -0
  33. package/dist/cli/serve/sidecar.d.ts +31 -0
  34. package/dist/cli/serve/sidecar.d.ts.map +1 -0
  35. package/dist/cli/serve/sidecar.js +74 -0
  36. package/dist/cli/serve/sidecar.js.map +1 -0
  37. package/dist/cli/serve.d.ts +14 -0
  38. package/dist/cli/serve.d.ts.map +1 -0
  39. package/dist/cli/serve.js +81 -0
  40. package/dist/cli/serve.js.map +1 -0
  41. package/dist/cli/testing/reproduction.d.ts +6 -1
  42. package/dist/cli/testing/reproduction.d.ts.map +1 -1
  43. package/dist/cli/testing/reproduction.js +11 -1
  44. package/dist/cli/testing/reproduction.js.map +1 -1
  45. package/dist/cli/ui/admin/assets/{index-DotmbMtQ.js → index-BpdIOuyO.js} +1 -1
  46. package/dist/cli/ui/admin/index.html +1 -1
  47. package/dist/cli/ui/console/assets/index-BUlGAwqn.css +1 -0
  48. package/dist/cli/ui/console/assets/index-D9StTnoH.js +102 -0
  49. package/dist/cli/ui/console/index.html +2 -2
  50. package/dist/client/client.d.ts +6 -0
  51. package/dist/client/client.d.ts.map +1 -1
  52. package/dist/client/client.js +20 -0
  53. package/dist/client/client.js.map +1 -1
  54. package/package.json +1 -1
  55. package/dist/cli/ui/console/assets/index-BVvP6fgr.js +0 -100
  56. package/dist/cli/ui/console/assets/index-DPF4-rtt.css +0 -1
@@ -0,0 +1,14 @@
1
+ /** `pinecall serve`: the sandbox's console on this machine, and nothing else. */
2
+ import type { Group } from "./groups.js";
3
+ export declare const group: Group;
4
+ /** What the verb can be told besides argv: where to print, and how a browser is opened. Tests only. */
5
+ export interface Serving {
6
+ out?: NodeJS.WritableStream;
7
+ err?: NodeJS.WritableStream;
8
+ open?: (url: string) => void;
9
+ until?: () => Promise<void>;
10
+ }
11
+ /** Why a production key serves nothing here, naming where production IS watched. */
12
+ export declare function notTheSandbox(gateway: string): string;
13
+ export declare function run(argv: string[], serving?: Serving): Promise<number>;
14
+ //# sourceMappingURL=serve.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"serve.d.ts","sourceRoot":"","sources":["../../src/cli/serve.ts"],"names":[],"mappings":"AAAA,iFAAiF;AAMjF,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AAOzC,eAAO,MAAM,KAAK,EAAE,KAkBnB,CAAC;AAEF,uGAAuG;AACvG,MAAM,WAAW,OAAO;IACtB,GAAG,CAAC,EAAE,MAAM,CAAC,cAAc,CAAC;IAC5B,GAAG,CAAC,EAAE,MAAM,CAAC,cAAc,CAAC;IAC5B,IAAI,CAAC,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,CAAC;IAC7B,KAAK,CAAC,EAAE,MAAM,OAAO,CAAC,IAAI,CAAC,CAAC;CAC7B;AAED,oFAAoF;AACpF,wBAAgB,aAAa,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAKrD;AAED,wBAAsB,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,OAAO,GAAE,OAAY,GAAG,OAAO,CAAC,MAAM,CAAC,CA0ChF"}
@@ -0,0 +1,81 @@
1
+ /** `pinecall serve`: the sandbox's console on this machine, and nothing else. */
2
+ import { parseArgs } from "node:util";
3
+ import { openInABrowser } from "./browser.js";
4
+ import { theDoor } from "./env.js";
5
+ import { forever } from "./run-screens.js";
6
+ import { DEFAULT_PORT } from "./serve/server.js";
7
+ import { NoSidecar, openOrReuse } from "./serve/sidecar.js";
8
+ import { cannotTell, PRODUCTION, standing } from "./world.js";
9
+ export const group = {
10
+ purpose: "the sandbox's console on this machine: your copies, your calls, http://localhost:4100",
11
+ usage: `usage: pinecall serve [--port <n>] [--no-open]
12
+
13
+ The console for what YOU are running, on http://localhost:${DEFAULT_PORT}: your sandbox copies of the
14
+ agents, their calls as they happen, chat, evals, knowledge, memory, the widget. It mounts no
15
+ agent — \`pinecall run\` does that, and \`pinecall run --serve\` does both in one terminal.
16
+
17
+ The gateway's own console shows production and only production. This one is the other half, and
18
+ it asks the same gateway: every request the page makes is forwarded there with this machine's
19
+ sandbox key on it. The key never reaches the browser, so there is nothing to sign in to.
20
+
21
+ One per machine. A second \`serve\` for the same gateway and org finds the first and says where
22
+ it is; two projects share one page.
23
+
24
+ --port <n> another port than ${DEFAULT_PORT}
25
+ --no-open print the URL and do not open a browser`,
26
+ run,
27
+ };
28
+ /** Why a production key serves nothing here, naming where production IS watched. */
29
+ export function notTheSandbox(gateway) {
30
+ return (`this key opens ${PRODUCTION}, and production is watched at ${gateway} — \`pinecall serve\` is your sandbox.\n`
31
+ + " `pinecall use <profile>` for a sandbox key — `pinecall config` lists them.");
32
+ }
33
+ export async function run(argv, serving = {}) {
34
+ const out = serving.out ?? process.stdout;
35
+ const err = serving.err ?? process.stderr;
36
+ const { values } = parseArgs({
37
+ args: argv,
38
+ options: { port: { type: "string" }, "no-open": { type: "boolean", default: false } },
39
+ });
40
+ const port = values.port === undefined ? DEFAULT_PORT : Number(values.port);
41
+ if (!Number.isInteger(port) || port < 1 || port > 65535) {
42
+ err.write(`--port takes a port number, not ${JSON.stringify(values.port)}\n`);
43
+ return 2;
44
+ }
45
+ const door = theDoor(process.env, err);
46
+ if (door === undefined)
47
+ return 2;
48
+ let who;
49
+ try {
50
+ who = await standing(door);
51
+ }
52
+ catch (failed) {
53
+ err.write(`${cannotTell("serve", failed)}\n`);
54
+ return 2;
55
+ }
56
+ if (who.env === PRODUCTION) {
57
+ err.write(`${notTheSandbox(door.url)}\n`);
58
+ return 2;
59
+ }
60
+ try {
61
+ const sidecar = await openOrReuse(door, who, port);
62
+ if (!sidecar.ours) {
63
+ out.write(`console ${sidecar.url} (already being served on this machine)\n`);
64
+ return 0;
65
+ }
66
+ out.write(`gateway ${door.url} · key from ${door.source}\n`);
67
+ out.write(`console ${sidecar.url} (your sandbox; Ctrl-C closes it)\n`);
68
+ if (values["no-open"] !== true)
69
+ (serving.open ?? openInABrowser)(sidecar.url);
70
+ await (serving.until ?? forever)();
71
+ await sidecar.close();
72
+ return 0;
73
+ }
74
+ catch (failed) {
75
+ if (!(failed instanceof NoSidecar))
76
+ throw failed;
77
+ err.write(`${failed.message}\n`);
78
+ return 2;
79
+ }
80
+ }
81
+ //# sourceMappingURL=serve.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"serve.js","sourceRoot":"","sources":["../../src/cli/serve.ts"],"names":[],"mappings":"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"}
@@ -1,5 +1,5 @@
1
1
  /** A golden that broke, written out whole: what the model was asked, and everything that happened. */
2
- import type { Entry, EvalRun } from "./gateway.js";
2
+ import type { Cell, Entry, EvalRun } from "./gateway.js";
3
3
  import type { Golden } from "./goldens.js";
4
4
  /** Where a broken golden is left, under the directory the suite was run in. One folder per run. */
5
5
  export declare const REPRODUCTIONS = ".pinecall/evals";
@@ -14,6 +14,11 @@ export declare const NOT_RECORDED: string;
14
14
  * run that is being reproduced is the one reader that asks the runtime for the text.
15
15
  */
16
16
  export declare function writtenOut(run: EvalRun, goldens: Golden[], logs: Record<string, Entry[]>, under?: string): string[];
17
+ /**
18
+ * The name a cell is written under: the golden's, and — when the run broke it on more than one
19
+ * model — the model's beside it, with its slash turned into a dash, since the name is a file's.
20
+ */
21
+ export declare function fileNameOf(cell: Pick<Cell, "golden" | "model">, severalModels: boolean): string;
17
22
  /** The line the report prints under a broken golden, once, naming the folder and not each file. */
18
23
  export declare function whereTheyAre(paths: string[]): string[];
19
24
  //# sourceMappingURL=reproduction.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"reproduction.d.ts","sourceRoot":"","sources":["../../../src/cli/testing/reproduction.ts"],"names":[],"mappings":"AAAA,sGAAsG;AAKtG,OAAO,KAAK,EAAQ,KAAK,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AACzD,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,cAAc,CAAC;AAE3C,mGAAmG;AACnG,eAAO,MAAM,aAAa,oBAAoB,CAAC;AAE/C,4FAA4F;AAC5F,eAAO,MAAM,YAAY,QAEyD,CAAC;AAEnF;;;;;;;GAOG;AACH,wBAAgB,UAAU,CACxB,GAAG,EAAE,OAAO,EACZ,OAAO,EAAE,MAAM,EAAE,EACjB,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,KAAK,EAAE,CAAC,EAC7B,KAAK,GAAE,MAAsB,GAC5B,MAAM,EAAE,CAWV;AAiCD,mGAAmG;AACnG,wBAAgB,YAAY,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,MAAM,EAAE,CAItD"}
1
+ {"version":3,"file":"reproduction.d.ts","sourceRoot":"","sources":["../../../src/cli/testing/reproduction.ts"],"names":[],"mappings":"AAAA,sGAAsG;AAKtG,OAAO,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AACzD,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,cAAc,CAAC;AAE3C,mGAAmG;AACnG,eAAO,MAAM,aAAa,oBAAoB,CAAC;AAE/C,4FAA4F;AAC5F,eAAO,MAAM,YAAY,QAEyD,CAAC;AAEnF;;;;;;;GAOG;AACH,wBAAgB,UAAU,CACxB,GAAG,EAAE,OAAO,EACZ,OAAO,EAAE,MAAM,EAAE,EACjB,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,KAAK,EAAE,CAAC,EAC7B,KAAK,GAAE,MAAsB,GAC5B,MAAM,EAAE,CAcV;AAED;;;GAGG;AACH,wBAAgB,UAAU,CAAC,IAAI,EAAE,IAAI,CAAC,IAAI,EAAE,QAAQ,GAAG,OAAO,CAAC,EAAE,aAAa,EAAE,OAAO,GAAG,MAAM,CAE/F;AAiCD,mGAAmG;AACnG,wBAAgB,YAAY,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,MAAM,EAAE,CAItD"}
@@ -20,13 +20,23 @@ export function writtenOut(run, goldens, logs, under = REPRODUCTIONS) {
20
20
  return [];
21
21
  const folder = join(under, run.id);
22
22
  mkdirSync(folder, { recursive: true });
23
+ // A matrix breaks one golden on two models as two cells, and one file per golden kept whichever
24
+ // was written last: the nightly's haiku reproduction was gpt-4.1-mini's (2026-09-17).
25
+ const models = new Set(broken.map((cell) => cell.model));
23
26
  return broken.map((cell) => {
24
27
  const call = callOf(run, cell);
25
- const path = join(folder, `${cell.golden}.json`);
28
+ const path = join(folder, `${fileNameOf(cell, models.size > 1)}.json`);
26
29
  writeFileSync(path, `${JSON.stringify(aReproduction(run, cell, call, goldens, logs[call] ?? []), null, 2)}\n`);
27
30
  return path;
28
31
  });
29
32
  }
33
+ /**
34
+ * The name a cell is written under: the golden's, and — when the run broke it on more than one
35
+ * model — the model's beside it, with its slash turned into a dash, since the name is a file's.
36
+ */
37
+ export function fileNameOf(cell, severalModels) {
38
+ return severalModels ? `${cell.golden} · ${cell.model.replace(/[/\\]/g, "-")}` : cell.golden;
39
+ }
30
40
  /** One broken cell as a file: the declaration, the requests, the log, and every verdict on it. */
31
41
  function aReproduction(run, cell, call, goldens, log) {
32
42
  return {
@@ -1 +1 @@
1
- {"version":3,"file":"reproduction.js","sourceRoot":"","sources":["../../../src/cli/testing/reproduction.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"reproduction.js","sourceRoot":"","sources":["../../../src/cli/testing/reproduction.ts"],"names":[],"mappings":"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"}