> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://developers.deepgram.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://developers.deepgram.com/_mcp/server.

## New `thought_signature` field for Gemini function calling

The Voice Agent API now includes an optional `thought_signature` field in function call messages. Some Gemini models (3.0 and 3.1 families) require this as an additional function call identifier.

This field appears in two places:

- **Settings message** — in `agent.context.messages[].function_calls[]` when providing function call history
- **FunctionCallRequest** — in `functions[]` when the server requests a function call

### Example

```json
{
  "type": "FunctionCallRequest",
  "functions": [
    {
      "id": "fc_12345678-90ab-cdef-1234-567890abcdef",
      "name": "get_weather",
      "arguments": "{\"location\": \"Fremont, CA 94539\"}",
      "client_side": true,
      "thought_signature": "abc123"
    }
  ]
}
```

The `thought_signature` field is optional and only relevant when using Google Gemini models. This change addresses the degraded function calling performance that some users experienced with the Gemini 3.0 and 3.1 model families.

For more details, see the [Function Call Request](/docs/voice-agent-function-call-request) documentation, the [Voice Agent API Reference](/reference/voice-agent/voice-agent), or [Gemini's Thought Signatures Documentation](https://ai.google.dev/gemini-api/docs/thought-signatures).

## New `volume` parameter for Cartesia TTS

The Voice Agent API now supports an optional `agent.speak.provider.volume` parameter when using Cartesia as the TTS provider. Valid values range from `0.5` to `2.0`.

For more details, see [Configure the Voice Agent](/docs/configure-voice-agent) or the [Cartesia volume, speed, and emotion documentation](https://docs.cartesia.ai/build-with-cartesia/sonic-3/volume-speed-emotion#volume-speed-and-emotion).