File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import type { SessionManager } from "@mariozechner/pi-coding-agent";
33import { expect , vi } from "vitest" ;
44import type { TranscriptPolicy } from "./transcript-policy.js" ;
55
6- export type SessionEntry = { type : string ; customType : string ; data : unknown } ;
6+ type SessionEntry = { type : string ; customType : string ; data : unknown } ;
77export type SanitizeSessionHistoryFn = ( params : {
88 messages : AgentMessage [ ] ;
99 modelApi : string ;
@@ -14,7 +14,7 @@ export type SanitizeSessionHistoryFn = (params: {
1414 modelId ?: string ;
1515 policy ?: TranscriptPolicy ;
1616} ) => Promise < AgentMessage [ ] > ;
17- export type SanitizeSessionHistoryMockedHelpers = typeof import ( "./pi-embedded-helpers.js" ) ;
17+ type SanitizeSessionHistoryMockedHelpers = typeof import ( "./pi-embedded-helpers.js" ) ;
1818export type SanitizeSessionHistoryHarness = {
1919 sanitizeSessionHistory : SanitizeSessionHistoryFn ;
2020 mockedHelpers : SanitizeSessionHistoryMockedHelpers ;
@@ -171,7 +171,7 @@ export function expectOpenAIResponsesStrictSanitizeCall(
171171 ) ;
172172}
173173
174- export function makeSnapshotChangedOpenAIReasoningScenario ( ) {
174+ function makeSnapshotChangedOpenAIReasoningScenario ( ) {
175175 const sessionEntries = [
176176 makeModelSnapshotEntry ( {
177177 provider : "anthropic" ,
You can’t perform that action at this time.
0 commit comments