find_similar_terms
Discover terms similar to a specified term within biological and medical ontologies using LLM embeddings. Input a term IRI and ontology identifier to retrieve a JSON list of related terms.
Instructions
Find terms similar to the given term using LLM embeddings.
Args: term_iri: The IRI of the reference term ontology: The ontology identifier size: Maximum number of similar terms to return
Returns: JSON formatted list of similar terms
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ontology | Yes | ||
size | No | ||
term_iri | Yes |
Input Schema (JSON Schema)
{
"properties": {
"ontology": {
"title": "Ontology",
"type": "string"
},
"size": {
"default": 10,
"title": "Size",
"type": "integer"
},
"term_iri": {
"title": "Term Iri",
"type": "string"
}
},
"required": [
"term_iri",
"ontology"
],
"type": "object"
}