# confidencelevel

## confidencelevel

**Default Value:** 0.5

The speech recognition confidence level, a float value in the range of 0.0 to 1.0. Results are rejected (a nomatch event is thrown) when application.lastresult$.confidence is below this threshold. The platform has been finely tuned to minimize the number of false positives above 0.5, and as such lowering this value is not recommended.

### Example

```markup
<?xml version="1.0"?>
<vxml version="2.0">

<property name="confidencelevel" value="0.75"/>
  <form>
    <field type="boolean">
      <prompt>
        Please say yes or no.
      </prompt>
    </field>
  </form>
</vxml>
```

### Explanation

From this example, the threshold of the confidence level is raised to 0.75, requiring a clear response of a “yes” or “no” answer. Using a high confidence level setting is useful for when you are expecting a precise match to your grammar.

### 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/confidencelevel.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.
