catalog search

This commit is contained in:
dal 2025-03-19 09:23:17 -06:00
parent 2058b0551f
commit e9e9fbc6ce
No known key found for this signature in database
GPG Key ID: 16F4B0E1E9F61122
1 changed files with 1 additions and 2 deletions

View File

@ -43,7 +43,7 @@ struct RawLLMResponse {
const CATALOG_SEARCH_PROMPT: &str = r#" const CATALOG_SEARCH_PROMPT: &str = r#"
You are a dataset search assistant tasked with finding highly relevant datasets that SPECIFICALLY match the user's requirements. You are a dataset search assistant tasked with finding highly relevant datasets that SPECIFICALLY match the user's requirements.
Your task is to identify only the most relevant datasets based on the following search request: Your task is to identify the most relevant datasets based on the following search request:
{queries_joined_with_newlines} {queries_joined_with_newlines}
@ -158,7 +158,6 @@ impl SearchDataCatalogTool {
session_id: session_id.to_string(), session_id: session_id.to_string(),
trace_id: session_id.to_string(), trace_id: session_id.to_string(),
}), }),
reasoning_effort: Some("low".to_string()),
max_completion_tokens: Some(8092), max_completion_tokens: Some(8092),
..Default::default() ..Default::default()
}; };