Documentation Index
Fetch the complete documentation index at: https://docs.xpander.ai/llms.txt
Use this file to discover all available pages before exploring further.
KnowledgeBases.acreate provisions a new managed knowledge base. The returned KnowledgeBase is empty until you aadd_documents(...) to populate it.
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
name | str | Yes | – | Display name. |
description | str | No | "" | Description. Useful for cataloging. |
Returns KnowledgeBase
A new KnowledgeBase with total_documents=0. Use kb.aadd_documents([...]) to populate it.
Examples
Create + populate
aadd_documents accepts a list of URLs the platform fetches and ingests. See the KnowledgeBase reference.
Sync version
Errors
RaisesModuleException on failure.
