diff --git a/src/ai/sms_client.rs b/src/ai/sms_client.rs index cddac00..b59c266 100644 --- a/src/ai/sms_client.rs +++ b/src/ai/sms_client.rs @@ -262,20 +262,8 @@ impl SmsApiClient { /// - "semantic" embedding similarity /// - "hybrid" both merged via reciprocal rank fusion (recommended) /// - /// Equivalent to `search_messages_with_contact(query, mode, limit, None)`; - /// kept as a convenience for callers that don't filter by contact. - pub async fn search_messages( - &self, - query: &str, - mode: &str, - limit: usize, - ) -> Result> { - self.search_messages_with_contact(query, mode, limit, None).await - } - - /// Same shape as `search_messages` but with optional `contact_id`. The - /// SMS-API endpoint accepts contact_id natively; date filtering is the - /// caller's responsibility (post-filter on the returned rows). + /// The SMS-API endpoint accepts `contact_id` natively; date filtering is + /// the caller's responsibility (post-filter on the returned rows). pub async fn search_messages_with_contact( &self, query: &str,