Create Knowledge Source
Create a new knowledge source from various data sources such as web content, files, or raw text. The knowledge source will be processed and indexed to enable semantic search and retrieval.
Best practices
To maximize the effectiveness of Knowledge, consider the following best practices:
Assess and optimize content: Regularly evaluate your existing Knowledge sources for accuracy, relevance, and coverage. Identify any gaps or outdated information that could hinder the Assistant's performance.
Simplify and structure content: Ensure that the content is clear and concise. Use headings, bullet points, and metadata to make information straightforward to navigate for both the AI Assistant and your users.
Prioritize high-impact content: Focus on updating and maintaining content that is frequently accessed or critical to customer interactions. Consider using analytics to determine which Knowledge entries are most valuable.
Request body
Example request
{
"name": "Company FAQ Knowledge Base",
"source": {
"type": "Text",
"content": "This is the raw text content that will be processed as knowledge."
}
}Response
Created
Example response
{
"id": "know_knowledge_00000000000000000000000000",
"name": "Company FAQ Knowledge Base",
"description": "Frequently asked questions and answers for customer support",
"status": "COMPLETED",
"source": {
"type": "Web",
"url": "https://example.com/faq",
"crawlDepth": 2,
"crawlPeriod": "NEVER"
},
"createdAt": "2026-01-15T10:30:00Z",
"updatedAt": "2026-01-15T11:45:00Z"
}