Trieve ( Depracated )
# support
d
v
Trieve is shutting down on November 1st, 2025. A recommended alternative is to migrate to a Custom Knowledge Base for full control and automatic retrieval. Here’s how to create one via cURL:
Copy code
bash
curl --location 'https://api.vapi.ai/knowledge-base' \
  --header 'Content-Type: application/json' \
  --header 'Authorization: Bearer YOUR_VAPI_API_KEY' \
  --data '{
    "provider": "custom-knowledge-base",
    "server": {
      "url": "https://your-domain.com/kb/search",
      "secret": "your-webhook-secret"
    }
  }'
This ensures your assistant continues to work efficiently after Trieve deprecation. For more details, see the [migration guide](https://docs.vapi.ai/knowledge-base/migrating-from-trieve). Source: - [Migrating from Trieve](https://docs.vapi.ai/knowledge-base/migrating-from-trieve)
v
Message marked as helpful by @DanToy! 🎉
c
Hi DanToy, To proceed with the migration from Trieve to a Custom Knowledge Base, you can use the provided cURL command. This will set up a custom server that supports automatic retrieval, similar to the functionality you had with Trieve. For alternatives, you might consider integrating with other knowledge base providers like Algolia or Elasticsearch, which could fit different use cases based on your requirements. For implementation timelines or to confirm the current setup's efficiency, it would be best to consult with your internal team managing the migration. You can also refer to the [migration guide](https://docs.vapi.ai/knowledge-base/migrating-from-trieve) for more details on setting up and optimizing your new knowledge base.