thank you for letting me know the call has started...
# support
a
why does the agent say its prompt, it should never do that
v
To prevent your agent from saying its prompt, set
firstMessageMode
to
assistantWaitsForUser
and lower the model temperature:
Copy code
javascript
// Agent configuration
{
  "firstMessageMode": "assistantWaitsForUser",
  "temperature": 0.3
}
This prevents unwanted prompting and ensures more predictable responses. Sources: - [Discord Channel](https://discord.com/channels/1211482211119796234/1305065394662408192) - [Discord Channel](https://discord.com/channels/1211482211119796234/1291058129102049300)
a
whats "firstMessageMode":
c
Hey! To help track down this issue, could you share: - The call ID - When exactly this happened (the timestamp) - What response you expected to get - What response you actually got instead This would really help us figure out what went wrong!
2 Views