removedOutput schema / properties / result / items / properties / daily_refresh_time
Removed value: -{
- "type": "string"
-}
addedOutput schema / properties / result / items / properties / enable_decay
Added value: +{
+ "type": "boolean"
+}
addedOutput schema / properties / result / items / properties / last_n_hours
Added value: +{
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ]
+}
addedOutput schema / properties / result / items / properties / search_type
Added value: +{
+ "enum": [
+ "vector",
+ "hybrid",
+ "sparse",
+ "exact"
+ ],
+ "type": "string"
+}
addedOutput schema / properties / result / items / properties / similarity_threshold
Added value: +{
+ "enum": [
+ "high",
+ "medium",
+ "none"
+ ],
+ "type": "string"
+}
changedOutput schema / properties / result / items / required
Previous value: -[
- "id",
- "category",
- "region",
- "language",
- "daily_refresh_time"
-]New value: +[
+ "id",
+ "category",
+ "region",
+ "language",
+ "last_n_hours",
+ "search_type",
+ "enable_decay",
+ "similarity_threshold"
+]