addedInput schema / properties / criteria / properties / rank
Added value: +{
+ "description": "How to order matches. 'rising' (default) ranks by forecasted breakout impact first (the impact_pct momentum model), falling back to novelty when a paper is not impact-scored yet; 'novelty' ranks most-novel first; 'recent' ranks newest first; 'relevance' ranks by closeness to a similar target (needs a similar target, else behaves as rising). For a creator or stay-current watch, leave it as rising.",
+ "enum": [
+ "rising",
+ "novelty",
+ "recent",
+ "relevance"
+ ],
+ "type": "string"
+}
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "match_count": {
+ "type": "number"
+ },
+ "message": {
+ "type": "string"
+ },
+ "needs_similarity": {
+ "type": "boolean"
+ },
+ "ok": {
+ "type": "boolean"
+ },
+ "sample": {
+ "description": "A sample of matching papers.",
+ "items": {
+ "additionalProperties": {},
+ "description": "A paper record. Verbose calls add extraction fields (method_name, datasets, baselines, ...).",
+ "properties": {
+ "arxiv_id": {
+ "type": "string"
+ },
+ "arxiv_url": {
+ "type": "string"
+ },
+ "authors": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "categories": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "citation_count": {
+ "type": "number"
+ },
+ "github_stars": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "github_url": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "has_code": {
+ "type": "boolean"
+ },
+ "impact_pct": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "impact_tier": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "institution_tags": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "llm_novelty_score": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "llm_significance": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "llm_summary": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "pdf_url": {
+ "type": "string"
+ },
+ "primary_category": {
+ "type": "string"
+ },
+ "published_date": {
+ "type": "string"
+ },
+ "rank_score": {
+ "type": "number"
+ },
+ "similarity": {
+ "type": "number"
+ },
+ "title": {
+ "type": "string"
+ },
+ "venue_name": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "year": {
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "window_days": {
+ "type": "number"
+ }
+ },
+ "type": "object"
+}