You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AIMON_RERANKER_TASK_DEFINITION: dto.AIMON_RERANKER_TASK_DEFINITION.unwrap_or("Your task is to grade the relevance of context document(s) against the specified user query.".to_string()),
tool_description:Some("Search for relevant information in the knowledge base. You can use this tool multiple times if the information you need is not found in the first search.".to_string()),
2904
+
query_parameter_description:Some("The search query to find relevant information".to_string()),
2905
+
price_filter_description:Some("The price filter to use for the search".to_string()),
2906
+
max_price_option_description:Some("The maximum price to filter by".to_string()),
2907
+
min_price_option_description:Some("The minimum price to filter by".to_string()),
2908
+
}),
2909
+
}),
2885
2910
}
2886
2911
}
2887
2912
}
@@ -2933,6 +2958,7 @@ impl From<DatasetConfiguration> for DatasetConfigurationDTO {
@@ -2979,7 +3005,16 @@ impl Default for DatasetConfiguration {
2979
3005
DISABLE_ANALYTICS:false,
2980
3006
PAGEFIND_ENABLED:false,
2981
3007
AIMON_RERANKER_TASK_DEFINITION:"Your task is to grade the relevance of context document(s) against the specified user query.".to_string(),
2982
-
}
3008
+
TOOL_CONFIGURATION:ToolConfiguration{
3009
+
query_tool_options:Some(QueryToolOptions{
3010
+
tool_description:Some("Search for relevant information in the knowledge base. You can use this tool multiple times if the information you need is not found in the first search.".to_string()),
3011
+
query_parameter_description:Some("The search query to find relevant information".to_string()),
3012
+
price_filter_description:Some("The price filter to use for the search".to_string()),
3013
+
max_price_option_description:Some("The maximum price to filter by".to_string()),
3014
+
min_price_option_description:Some("The minimum price to filter by".to_string()),
}).unwrap_or("Your task is to grade the relevance of context document(s) against the specified user query.".to_string()),
3319
+
TOOL_CONFIGURATION: configuration
3320
+
.get("TOOL_CONFIGURATION")
3321
+
.unwrap_or(&json!(ToolConfiguration{
3322
+
query_tool_options:Some(QueryToolOptions{
3323
+
tool_description:Some("Search for relevant information in the knowledge base. You can use this tool multiple times if the information you need is not found in the first search.".to_string()),
3324
+
query_parameter_description:Some("The search query to find relevant information".to_string()),
3325
+
price_filter_description:Some("The price filter to use for the search".to_string()),
3326
+
max_price_option_description:Some("The maximum price to filter by".to_string()),
3327
+
min_price_option_description:Some("The minimum price to filter by".to_string()),
tool_description:Some("Search for relevant information in the knowledge base. You can use this tool multiple times if the information you need is not found in the first search.".to_string()),
3343
+
query_parameter_description:Some("The search query to find relevant information".to_string()),
3344
+
price_filter_description:Some("The price filter to use for the search".to_string()),
3345
+
max_price_option_description:Some("The maximum price to filter by".to_string()),
3346
+
min_price_option_description:Some("The minimum price to filter by".to_string()),
0 commit comments