diff options
| author | jerop <[email protected]> | 2025-06-11 04:46:39 +0000 |
|---|---|---|
| committer | Jerop Kipruto <[email protected]> | 2025-06-11 01:18:40 -0400 |
| commit | d1e23b7c71e6a0e1c7d920e147ec15a0dbbf689c (patch) | |
| tree | 80242ba70949c1e8b982ee1c827147ff387ea7b5 /packages/core/src/config/config.test.ts | |
| parent | 95fdc66e7d719eae731c1afd61103f94f7fe3131 (diff) | |
refactor: Centralize session ID generation and propagation
Diffstat (limited to 'packages/core/src/config/config.test.ts')
| -rw-r--r-- | packages/core/src/config/config.test.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/core/src/config/config.test.ts b/packages/core/src/config/config.test.ts index df3b3de3..2827f581 100644 --- a/packages/core/src/config/config.test.ts +++ b/packages/core/src/config/config.test.ts @@ -49,6 +49,7 @@ describe('Server Config (config.ts)', () => { const USER_MEMORY = 'Test User Memory'; const TELEMETRY = false; const EMBEDDING_MODEL = 'gemini-embedding'; + const SESSION_ID = 'test-session-id'; const baseParams: ConfigParameters = { contentGeneratorConfig: { apiKey: API_KEY, @@ -62,6 +63,7 @@ describe('Server Config (config.ts)', () => { fullContext: FULL_CONTEXT, userMemory: USER_MEMORY, telemetry: TELEMETRY, + sessionId: SESSION_ID, }; beforeEach(() => { |
