changedInput schema / properties / n / maximum
Previous value: -10New value: +20
addedInput schema / properties / query / default
Added value: +""
changedInput schema / properties / query / description
Previous value: -"Natural language search query (e.g. 'flashinfer OOM on GB10'). Multi-word queries are tokenized and TF-IDF ranked."New value: +"Natural language search query (e.g. 'flashinfer OOM on GB10'). Multi-word queries are tokenized and TF-IDF ranked. Pass empty string to list articles without ranking by relevance."
addedInput schema / properties / sort
Added value: +{
+ "default": "relevance",
+ "description": "Result ordering. 'relevance' uses TF-IDF score (default for non-empty query). 'date_desc' sorts newest first (default behaviour when query is empty). When query is empty, 'relevance' is treated as 'date_desc'.",
+ "enum": [
+ "relevance",
+ "date_desc"
+ ],
+ "title": "Sort",
+ "type": "string"
+}
addedInput schema / properties / tag
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Optional tag filter (e.g. 'setup', 'fixes', 'strategy'). Only articles with this tag are considered. Use list_tags to discover available tags.",
+ "title": "Tag"
+}
removedInput schema / required
Removed value: -[
- "query"
-]
addedOutput schema / $defs / SearchResult / properties / date
Added value: +{
+ "default": "",
+ "description": "Publication date (ISO 8601)",
+ "title": "Date",
+ "type": "string"
+}
changedOutput schema / $defs / SearchResult / properties / quality_score / description
Previous value: -"Build-time quality score, unbounded weighted composite across 13 signals from the editorial pipeline (style-aware, higher is better; thresholds depend on style)"New value: +"Build-time editorial quality score"
changedOutput schema / $defs / SearchResult / properties / quality_style / description
Previous value: -"Editorial style category (e.g. 'best_practice_learnings', 'werthaltige_code_beispiele', 'conclusion', 'smart_infotainment'). Empty if not categorised."New value: +"Editorial style category"
changedOutput schema / $defs / SearchResult / properties / relevance_score / description
Previous value: -"TF-IDF cosine similarity score, range 0.0 to 1.0 (higher is more relevant)"New value: +"TF-IDF cosine similarity score, 0.0 to 1.0 (1.0 = direct date-sorted hit when query is empty)"