Yes since your number is on Twilio, you’ll need to handle it there (or in whatever is triggering the SMS send, if it’s coming from Vapi via Twilio).
Twilio itself doesn’t limit message length by default, but you can control what gets sent before it hits Twilio. So the real fix is usually in your sending logic (Vapi tool / middleware / API function), where you truncate or split the message before calling Twilio’s send message endpoint.
If you want a quick Twilio-side safety check, you can review your messaging logs in Twilio Console to confirm how long the payloads are but the actual length control won’t be a Twilio setting toggle.
Hope you understand me @Selina