# incompletetimeout

## incompletetimeout <a href="#incompletetimeout" id="incompletetimeout"></a>

**Default Value:** 1 second

The required length of silence following user speech after which a recognizer finalizes a result. The minimum value for incompletetimeout is 500ms.

### Example

```markup
<?xml version="1.0"?>
<vxml version="2.0">
  <form>
    <property name="incompletetimeout" value="5s"/>
    <field name="myfield">
      <grammar type="application/x-jsgf" mode="voice">
        ( one | two )+
      </grammar>
      <prompt>
        Say any number of the digits one or two.
      </prompt>
      <filled>
        You said <value expr="myfield"/>.
      </filled>
      <nomatch>
        You did not say any ones or twos.
        <reprompt/>
      </nomatch>
      <noinput>
        You did not say anything.
        <reprompt/>
      </noinput>
    </field>
  </form>
</vxml>
```

### Explanation

From this example, the user has 5 seconds to say either one or two. If the user does not say anything within these 5 seconds, then an incompletetimeout will occur and return a \<noinput> to the user. When a user begins to say either one or two, the application waits for 5 seconds due to incompletetimeout. Once 5 seconds has passed, the application returns a response to the user.

### Notes

None


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.plumvoice.com/dev/voicexml/properties/incompletetimeout.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
