Problem after connecting the Trieve dataset to VAP...
# support
c
All datasets for agents have the same name, no way to find what is wat. Is my error in the process or something else? I'm using provided automation to connect the pieces. @Vapi Support Bot https://cdn.discordapp.com/attachments/1348550236032864337/1348550236238254081/image.png?ex=67cfdec7&is=67ce8d47&hm=c402de69ced1b7ba9137b700ec20191b73d66b3c7275ffd7f6b97afaa4e50dfc&
n
You can set the name of your knowledge base when you make the api request to create it
k
Hey @CAMRAK you can update your KB name using PATCH/knowledge-base/:id API request.
Copy code
curl -X PATCH https://api.vapi.ai/knowledge-base/insert-kb-id-here \
     -H "Authorization: Bearer insert-token-here" \
     -H "Content-Type: application/json" \
     -d '{
  "provider": "trieve",
  "name": "insert-new-name-here"
}'