(value: unknown)
| 1068 | } |
| 1069 | |
| 1070 | function normalizeDeveloperPromptContextValue(value: unknown): string | null { |
| 1071 | if (typeof value !== 'string') { |
| 1072 | return null; |
| 1073 | } |
| 1074 | const normalized = value.trim(); |
| 1075 | return normalized || null; |
| 1076 | } |
| 1077 | |
| 1078 | function buildTurnModeDeveloperInstructions( |
| 1079 | context: DeveloperPromptContext | null, |
no outgoing calls
no test coverage detected