( name: string, value: string | null, )
| 1643 | } |
| 1644 | |
| 1645 | export function setSystemPromptSectionCacheEntry( |
| 1646 | name: string, |
| 1647 | value: string | null, |
| 1648 | ): void { |
| 1649 | STATE.systemPromptSectionCache.set(name, value) |
| 1650 | } |
| 1651 | |
| 1652 | export function clearSystemPromptSectionState(): void { |
| 1653 | STATE.systemPromptSectionCache.clear() |
no test coverage detected