For the complete documentation index, see llms.txt. This page is also available as Markdown.

External Knowledge Base

External Knowledge Base type

For the External Knowledge Base in the Knowledge Management (KM) system, users must provide the following:

  • Target Endpoint: This is the URL of the API that will be used to retrieve data. The endpoint is essential for establishing a connection to the external knowledge source and allows the KM system to access and integrate information from that external resource effectively.

Payload:
{ "message": "<string>", "message_en": "<string>" }

Response: 
{
  "total": <number>,
  "data": [
    {
      "score": <number>,
      "document": {
        "content": "<string>",
        "path": "<string>" // optional
      }
  ]
}

Last updated