Video recording in Assistant overrides?
# support
s
Is videoRecordingEnabled not a valid field for assistant overrides? seeing the error - "assistantOverrides.property videoRecordingEnabled should not exist"
v
@Sangy That's correct,
videoRecordingEnabled
is not a valid field for assistant overrides within the context of VAPI. The error message you're seeing indicates that the system does not recognize
videoRecordingEnabled
as a valid property for the assistant overrides configuration. If you need to enable or configure video recording, you might need to look into the specific documentation for the API or service you're using, as it may require a different approach or setting. If you need further assistance with this, please let me know!
You can continue this conversation by mentioning me in the message.
s
@User can we add this? is there any other way for users to select audio vs video after assistant creation?
@Shubham Bajaj just checking if you saw this?
s
Hey @Sangy thanks for reminding me on this. The
videoRecordingEnabled
is part of
artifactPlan
.
Copy code
{
  "assistantOverrides": {
    "artifactPlan": {
      "videoRecordingEnabled": false
    }
  }
}
s
Thanks
2 Views