find_related_papers
Discover research papers related to a specific title using keyword similarity, filtered by category and similarity threshold, with customizable result limits.
Instructions
Find papers related to a given paper title using keyword similarity.
:param paper_title: Title of the reference paper :param max_results: Maximum number of related papers to return :param similarity_threshold: Minimum similarity score (0.0 to 1.0) :param category: Optional category filter
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | ||
max_results | No | ||
paper_title | Yes | ||
similarity_threshold | No |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Category"
},
"max_results": {
"default": 10,
"title": "Max Results",
"type": "integer"
},
"paper_title": {
"title": "Paper Title",
"type": "string"
},
"similarity_threshold": {
"default": 0.7,
"title": "Similarity Threshold",
"type": "number"
}
},
"required": [
"paper_title"
],
"type": "object"
}