Node Description

The Internal Link Recommendation analyzes and suggests the most relevant internal links to pass to your LLM—enhancing your internal linking strategy effortlessly.

Node Inputs

Required Fields

URL Dataset:
A csv file with a list of URLs, title and page rank. The file should have the following columns:

  • url
  • title
  • inrank

Example: “url-dataset.csv”

Number of links to return:
The number of links to return.
You can return up from 1 to 20 links.

Example: 10
Default: 5

Semantic Weight:
The weight of semantic in the selection algorithm versus the weight of page rank.
You can choose a value between 0 and 1.
Example: 0.5
Default: 0.8

PageRank Weight:
The weight of page rank in the selection algorithm versus the weight of semantic.
You can choose a value between 0 and 1.
Example: 0.2
Default: 0.4

Node Output

Output:
The recommended internal links.

Example Output:

[{
    "url": "https://www.example.com/page1",
    "title": "Page 1",
    "inrank": 0,
    "similarity": 0.8,
    "final_score": 0.65
},
{
    "url": "https://www.example.com/page2",
    "title": "Page 2",
    "inrank": 1,
    "similarity": 0.7,
    "final_score": 0.51
}]