chore: set detect voicemail false by default

This commit is contained in:
Abhishek Kumar 2025-12-27 09:43:14 +05:30
parent df71dcdb13
commit a6222a3c99
2 changed files with 4 additions and 4 deletions

View file

@ -54,7 +54,7 @@ class NodeDataDTO(BaseModel):
add_global_prompt: bool = True
wait_for_user_response: bool = False
wait_for_user_response_timeout: Optional[float] = None
detect_voicemail: bool = True
detect_voicemail: bool = False
delayed_start: bool = False
delayed_start_duration: Optional[float] = None
trigger_path: Optional[str] = None

View file

@ -49,7 +49,7 @@ export const StartCall = memo(({ data, selected, id }: StartCallNodeProps) => {
const [name, setName] = useState(data.name);
const [allowInterrupt, setAllowInterrupt] = useState(data.allow_interrupt ?? true);
const [addGlobalPrompt, setAddGlobalPrompt] = useState(data.add_global_prompt ?? true);
const [detectVoicemail, setDetectVoicemail] = useState(data.detect_voicemail ?? true);
const [detectVoicemail, setDetectVoicemail] = useState(data.detect_voicemail ?? false);
const [delayedStart, setDelayedStart] = useState(data.delayed_start ?? false);
const [delayedStartDuration, setDelayedStartDuration] = useState(data.delayed_start_duration ?? 2);
@ -78,7 +78,7 @@ export const StartCall = memo(({ data, selected, id }: StartCallNodeProps) => {
setName(data.name);
setAllowInterrupt(data.allow_interrupt ?? true);
setAddGlobalPrompt(data.add_global_prompt ?? true);
setDetectVoicemail(data.detect_voicemail ?? true);
setDetectVoicemail(data.detect_voicemail ?? false);
setDelayedStart(data.delayed_start ?? false);
setDelayedStartDuration(data.delayed_start_duration ?? 3);
}
@ -92,7 +92,7 @@ export const StartCall = memo(({ data, selected, id }: StartCallNodeProps) => {
setName(data.name);
setAllowInterrupt(data.allow_interrupt ?? true);
setAddGlobalPrompt(data.add_global_prompt ?? true);
setDetectVoicemail(data.detect_voicemail ?? true);
setDetectVoicemail(data.detect_voicemail ?? false);
setDelayedStart(data.delayed_start ?? false);
setDelayedStartDuration(data.delayed_start_duration ?? 3);
}