removedInput schema / properties / region / default
Removed value: -"india"
changedInput schema / properties / region / description
Previous value: -"Region filter for the news search"New value: +"Required region filter for the news search. If missing from the user's request, ask the user which region/country they want."
changedInput schema / properties / search_string / description
Previous value: -"Free form search string/topic to search for news (e.g., 'latest in AI', '2024 Olympics')"New value: +"Free form search string/topic to search for news (e.g., 'latest in AI', '2024 Olympics'). For multi-query search, separate topics with 'or', e.g. 'abc or xyz or pqr'."
addedInput schema / properties / search_type / anyOf
Added value: +[
+ {
+ "enum": [
+ "vector",
+ "hybrid",
+ "sparse",
+ "exact"
+ ],
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+]
changedInput schema / properties / search_type / default
Previous value: -"hybrid"New value: +null
changedInput schema / properties / search_type / description
Previous value: -"Use Hybrid search for semantic + similar word search. Select Sparse for keyword-prefered search and Vector for semantic-preferred search. Use Vector search for languages other than English. Use Exact search when an exact match is required but remember it is language and case sensitive."New value: +"- Use \"vector\" if the query is a free-form topic or question that would benefit from semantic understanding (e.g., \"latest trends in AI\", \"impact of climate change on agriculture\",\"entertainment\").\n - Use \"sparse\" if the query consists of specific keywords or phrases without much context (e.g., \"Apple earnings report\", \"Olympics 2024 schedule\").\n - Use \"exact\" if the query is looking for a precise match, such as a specific news headline or article title (e.g., \"Tesla Model 3 recall\", \"COVID-19 vaccine approval date\").\n - Use \"hybrid\" if the query contains a mix of free-form language and specific keywords, or if it's ambiguous and could benefit from both semantic and keyword search (e.g., \"effects of inflation on housing market\", \"best smartphones 2024\")."
removedInput schema / properties / search_type / enum
Removed value: -[
- "vector",
- "hybrid",
- "sparse",
- "exact"
-]
removedInput schema / properties / search_type / type
Removed value: -"string"
changedInput schema / required
Previous value: -[
- "search_string"
-]New value: +[
+ "search_string",
+ "region"
+]