()
| 31 | export type PromptVariant = 'user_intent' | 'stated_intent' |
| 32 | |
| 33 | export function getPromptVariant(): PromptVariant { |
| 34 | return 'user_intent' |
| 35 | } |
| 36 | |
| 37 | export function shouldEnablePromptSuggestion(): boolean { |
| 38 | // Env var overrides everything (for testing) |
no outgoing calls
no test coverage detected