mirror of
https://github.com/earendil-works/pi.git
synced 2026-06-18 15:54:04 +08:00
8a0903ebf2
The root barrel is now core-only and side-effect free: types, createModels/createProvider, auth substrate, lazyStream/lazyApi, faux, utils. Generated catalogs, api-registry, env-api-keys, images, global stream functions, and per-API lazy wrappers leave the root. New @earendil-works/pi-ai/compat preserves the old surface verbatim as a strict superset of the root: api-dispatch stream/complete with env key injection, the builtin registration side effect (skip-if-present so it cannot clobber earlier overrides), deprecated getModel/getModels/ getProviders aliases of the new getBuiltin* reads in providers/all, lazy api wrappers + setBedrockProviderModule, and image generation. Compat dies with the coding-agent ModelManager migration. Packaging: exports map gains ./compat, ./providers/*, ./api/*; sideEffects array lists only the effectful modules. Old-global imports across agent/coding-agent/examples and pi-ai tests switch to /compat (path-only; compat is a superset). The coding-agent extension loader resolves the pi-ai ROOT specifier to compat, so existing user extensions using the old global API keep working at runtime until compat is removed. vitest configs alias /compat to src; browser smoke imports old globals from /compat.
96 lines
3.0 KiB
TypeScript
96 lines
3.0 KiB
TypeScript
import { existsSync, mkdirSync, realpathSync, rmSync } from "node:fs";
|
|
import { tmpdir } from "node:os";
|
|
import { join } from "node:path";
|
|
import { getModel } from "@earendil-works/pi-ai/compat";
|
|
import { afterEach, beforeEach, describe, expect, it } from "vitest";
|
|
import { createAgentSession } from "../src/core/sdk.ts";
|
|
import { SessionManager } from "../src/core/session-manager.ts";
|
|
|
|
describe("createAgentSession session manager defaults", () => {
|
|
let tempDir: string;
|
|
let cwd: string;
|
|
let agentDir: string;
|
|
|
|
beforeEach(() => {
|
|
tempDir = join(tmpdir(), `pi-sdk-session-test-${Date.now()}-${Math.random().toString(36).slice(2)}`);
|
|
cwd = join(tempDir, "project");
|
|
agentDir = join(tempDir, "agent");
|
|
mkdirSync(cwd, { recursive: true });
|
|
mkdirSync(agentDir, { recursive: true });
|
|
});
|
|
|
|
afterEach(() => {
|
|
if (tempDir && existsSync(tempDir)) {
|
|
rmSync(tempDir, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
it("uses agentDir for the default persisted session path", async () => {
|
|
const model = getModel("anthropic", "claude-sonnet-4-5");
|
|
expect(model).toBeTruthy();
|
|
|
|
const { session } = await createAgentSession({
|
|
cwd,
|
|
agentDir,
|
|
model: model!,
|
|
});
|
|
|
|
const safePath = `--${cwd.replace(/^[/\\]/, "").replace(/[/\\:]/g, "-")}--`;
|
|
const expectedSessionDir = join(agentDir, "sessions", safePath);
|
|
const sessionDir = session.sessionManager.getSessionDir();
|
|
const sessionFile = session.sessionManager.getSessionFile();
|
|
|
|
expect(sessionDir).toBe(expectedSessionDir);
|
|
expect(sessionFile?.startsWith(`${expectedSessionDir}/`)).toBe(true);
|
|
|
|
session.dispose();
|
|
});
|
|
|
|
it("keeps an explicit sessionManager override", async () => {
|
|
const model = getModel("anthropic", "claude-sonnet-4-5");
|
|
expect(model).toBeTruthy();
|
|
|
|
const sessionManager = SessionManager.inMemory(cwd);
|
|
const { session } = await createAgentSession({
|
|
cwd,
|
|
agentDir,
|
|
model: model!,
|
|
sessionManager,
|
|
});
|
|
|
|
expect(session.sessionManager).toBe(sessionManager);
|
|
expect(session.sessionManager.isPersisted()).toBe(false);
|
|
|
|
session.dispose();
|
|
});
|
|
|
|
it("derives cwd from an explicit sessionManager when cwd is omitted", async () => {
|
|
const model = getModel("anthropic", "claude-sonnet-4-5");
|
|
expect(model).toBeTruthy();
|
|
|
|
const sessionCwd = join(tempDir, "session-project");
|
|
mkdirSync(sessionCwd, { recursive: true });
|
|
const sessionManager = SessionManager.inMemory(sessionCwd);
|
|
const { session } = await createAgentSession({
|
|
agentDir,
|
|
model: model!,
|
|
sessionManager,
|
|
});
|
|
|
|
expect(session.sessionManager).toBe(sessionManager);
|
|
expect(session.systemPrompt).toContain(`Current working directory: ${sessionCwd}`);
|
|
|
|
const bashTool = session.agent.state.tools.find((tool) => tool.name === "bash");
|
|
expect(bashTool).toBeTruthy();
|
|
const result = await bashTool!.execute("test", { command: "pwd" });
|
|
const output = result.content
|
|
.filter((item): item is { type: "text"; text: string } => item.type === "text")
|
|
.map((item) => item.text)
|
|
.join("");
|
|
|
|
expect(realpathSync(output.trim())).toBe(realpathSync(sessionCwd));
|
|
|
|
session.dispose();
|
|
});
|
|
});
|