Manage the knowledge bases in your active environment.

Getting Knowledge Base Status

To get the status of an existing knowledge base, run the following command. For built-in knowledge bases, this will include a Ready property, which denotes whether your index has been successfully created and the knowledge base is ready to use:

[BASH]
orchestrate knowledge-bases status --name my-base-name

Updating Knowledge Base

To update a knowledge base, run the patch command and pass the knowledge base name and the file path that contains your updates:

[BASH]
orchestrate knowledge-bases patch -n <name of the Knowlege base you want to update> -f <path the Knowledge Base file that you want to update>

Removing Knowledge Base

To remove an existing knowledge base, run the following command:

[BASH]
orchestrate knowledge-bases remove --name my-base-name

Listing Knowledge Bases

To list all knowledge bases, run the following command:

[BASH]
orchestrate knowledge-bases list