Can Vapi assistant read data from a website?
# support
a
Can Vapi assistant read data from a website? I need to create a FAQ Assistant so is it possible to scan data from the entire website and retrieve information?
v
Yes, you can enable your Vapi FAQ assistant to retrieve information from your website by first crawling it with Trieve and then importing the dataset into Vapi. Here's a quick workflow: 1. Use Trieve's website crawling feature to index your site's content. 2. Import the Trieve dataset into Vapi as a knowledge base using the API:
Copy code
json
{
  "name": "faq-dataset",
  "provider": "trieve",
  "createPlan": {
    "type": "import",
    "providerId": "<Your Trieve Dataset ID>"
  }
}
This lets your assistant answer questions using your website's content. [See full Trieve integration steps here](https://docs.vapi.ai/knowledge-base/integrating-with-trieve). Source: - [Integrating with Trieve](https://docs.vapi.ai/knowledge-base/integrating-with-trieve)
e
yes, but you will have to use a third party system.
v
Message marked as helpful by @Anwin! 🎉
2 Views