Create Vectorstore

Create vector stores from files, URLs, and text

Create Vectorstore Swagger Endpint

File Loader

Current supported file types txt, html, md, csv, pdf Upload files by making a POST request to /files then retrieve files by making a GET request to /files pass the files by including their name and extension.

Data Loaders

Gitbook Loader
{
  "type": "gitbook",
  "urls": [
    "https://help.form.io"
  ]
}
Web Page Loader
{
  "type": "web_base",
  "urls": [
    "https://form.io"
  ]
}
Sitemap Loader
{
  "type": "sitemap",
  "urls": [
    "https://about.gitlab.com/sitemap.xml"
  ]
}
Website Loader
{
  "type": "website",
  "urls": [
    "https://form.io"
  ]
}
Multi URL Loader
{
  "type": "urls",
  "urls": [
    "https://form.io"
  ]
}
Copy/Paste Loader
{
  "type": "copy",
  "urls": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat."
}

Last updated