Skip to content

Commit 4d6ee3b

Browse files
committed
Fix build
1 parent be90473 commit 4d6ee3b

3 files changed

Lines changed: 3 additions & 1 deletion

File tree

tools/develop/aix-gemini-antigravity-probe/probe.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ function createRecordingTransmitter(): { pt: IParticleTransmitter; log: LogEntry
4646
appendAutoText_weak: rec('appendAutoText_weak'),
4747
appendAudioInline: rec('appendAudioInline'),
4848
appendImageInline: rec('appendImageInline'),
49+
appendVideoInline: rec('appendVideoInline'),
4950
appendHostedResource: rec('appendHostedResource'),
5051
startFunctionCallInvocation: rec('startFunctionCallInvocation'),
5152
appendFunctionCallInvocationArgs: rec('appendFunctionCallInvocationArgs'),

tools/develop/llm-parameter-sweep/sweep.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -457,6 +457,7 @@ class SweepCollectorTransmitter implements IParticleTransmitter {
457457
appendAutoText_weak(textChunk: string): void { this.text += textChunk; }
458458
appendAudioInline(_mimeType: string, _base64Data: string, _label: string, _generator: string, _durationMs: number): void { /* no-op */ }
459459
appendImageInline(_mimeType: string, _base64Data: string, _label: string, _generator: string, _prompt: string): void { /* no-op */ }
460+
appendVideoInline(_mimeType: string, _base64Data: string, _label: string, _generator: string): void { /* no-op */ }
460461
appendHostedResource(_hres: any): void { /* no-op */ }
461462
startFunctionCallInvocation(id: string | null, functionName: string, _expectedArgsFmt: 'incr_str' | 'json_object', args: string | object | null): void {
462463
this.fnInvocationCount++;

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,5 @@
4343
// this is here only because otherwise, during standalone build the process would update this file
4444
"dist/types/**/*.ts"
4545
],
46-
"exclude": ["node_modules", "dist", "electron", "**/*.test.ts", "**/*.test.tsx", "**/*.spec.ts", "**/*.spec.tsx", "**/unused/**"]
46+
"exclude": ["node_modules", "dist", "electron", "tools", "**/*.test.ts", "**/*.test.tsx", "**/*.spec.ts", "**/*.spec.tsx", "**/unused/**"]
4747
}

0 commit comments

Comments
 (0)