get_citation_context
Extract the specific context in which one academic paper cites another, providing detailed citation information for analysis or referencing purposes.
Instructions
Get the context in which one paper cites another.
Args:
paper_id: ID of the paper being cited
citing_paper_id: ID of the paper doing the citing
Returns:
Citation context information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
citing_paper_id | Yes | ||
paper_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"citing_paper_id": {
"title": "Citing Paper Id",
"type": "string"
},
"paper_id": {
"title": "Paper Id",
"type": "string"
}
},
"required": [
"paper_id",
"citing_paper_id"
],
"title": "get_citation_contextArguments",
"type": "object"
}