Your knowledge base

The knowledge base details page displays:

  • A unique ID for your knowledge base (e.g., kb_2b747…)
  • The name of your knowledge base
  • A list of all documents in your knowledge base
  • Document metadata including title, source URL, tags, and last updated time

Uploading documents

  1. Click the Upload Documents button in the top-right corner
  2. In the modal that appears, you can:
    • Drag and drop a JSONL file into the designated area
    • Browse and select a JSONL file
  3. The system will show a preview of the first few items
  4. Review the file information (file name, size, number of documents)
  5. Click Import to add the documents to your knowledge base

Note: JSONL files must be 100MB or less.

Example Documents

Documents can be imported via JSONL files with structured data. Each line in your JSONL file should contain a complete JSON object representing a document. Unlike JSON objects, JSONL files do not have opening and closing brackets:

{
    "title": "Example Document 1",
    "content": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam auctor, nisl eget ultricies tincidunt, nisl nisl aliquam nisl, eget ultricies nisl nisl eget nisl. Sed vitae nisl eget nisl aliquam tincidunt.",
    "tags": ["Lorem", "Ipsum"],
    "source": "https://www.example.com/document1"
}
{
    "title": "Example Document 2",
    "content": "Praesent euismod, nisl eget ultricies tincidunt, nisl nisl aliquam nisl, eget ultricies nisl nisl eget nisl. Sed vitae nisl eget nisl aliquam tincidunt. Nullam auctor, nisl eget ultricies tincidunt.",
}

Knowledge base documents:

FieldTypeRequiredDescription
titlestringYesThe title of your document
contentstringYesThe content inside each document
tagsstring[]NoEasily identifiable keywords associated with your document
sourcestringNoThe url of the document