This interface defines the structure of the request body used when updating an existing AI Knowledge Base.
export interface UpdateAiKnowledgeBaseRequest {
    name?: string;
    description?: string;
    is_active?: boolean;
}

Properties

  • name (string, optional): The updated name of the AI knowledge base.
  • description (string, optional): The updated description of the AI knowledge base.
  • is_active (boolean, optional): The updated active status of the knowledge base.