mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-08-09 00:16:57 -07:00
24 lines
523 B
TypeScript
24 lines
523 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2026 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
import type { SidecarConfig } from './types.js';
|
|
|
|
export const testTruncateProfile: SidecarConfig = {
|
|
budget: {
|
|
retainedTokens: 65000,
|
|
maxTokens: 150000,
|
|
},
|
|
pipelines: [
|
|
{
|
|
name: 'Emergency Backstop (Truncate Only)',
|
|
triggers: ['gc_backstop', 'retained_exceeded'],
|
|
execution: 'blocking',
|
|
processors: [
|
|
{ processorId: 'HistoryTruncationProcessor', options: {} },
|
|
],
|
|
},
|
|
],
|
|
};
|