rust-memex 0.6.5

Operator CLI + MCP server: canonical corpus second: semantic index second to aicx
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
//! Auto-detection module for embedding providers.
//!
//! Detects Ollama, MLX server, and other embedding providers automatically.

use anyhow::Result;
use reqwest::Client;
use serde::Deserialize;
use std::time::Duration;

/// Detected embedding provider information.
#[derive(Debug, Clone)]
pub struct DetectedProvider {
    /// Provider type
    pub kind: ProviderKind,
    /// Base URL where provider is running
    pub base_url: String,
    /// Port number
    pub port: u16,
    /// List of available models (if detected)
    pub models: Vec<String>,
    /// Suggested model to use
    pub suggested_model: Option<String>,
    /// Connection status
    pub status: ProviderStatus,
}

impl DetectedProvider {
    /// Get a human-readable description
    pub fn summary_line(&self) -> String {
        match &self.status {
            ProviderStatus::Online(model) => {
                format!("{} at {} - {}", self.kind.label(), self.base_url, model)
            }
            ProviderStatus::OnlineNoModel => {
                format!(
                    "{} at {} (no embedding model)",
                    self.kind.label(),
                    self.base_url
                )
            }
            ProviderStatus::Offline => {
                format!("{} at {} (offline)", self.kind.label(), self.base_url)
            }
        }
    }

    /// Get provider summary for UI
    pub fn summary(&self) -> String {
        self.summary_line()
    }

    /// Check if provider is usable
    pub fn is_usable(&self) -> bool {
        matches!(self.status, ProviderStatus::Online(_))
    }

    /// Get the model to use
    pub fn model(&self) -> Option<&str> {
        if let ProviderStatus::Online(ref model) = self.status {
            Some(model.as_str())
        } else {
            self.suggested_model.as_deref()
        }
    }
}

fn looks_like_embedding_model(model: &str) -> bool {
    let model = model.to_ascii_lowercase();
    model.contains("embedding")
        || model.contains("embed")
        || model.contains("bge")
        || model.contains("nomic")
        || model.contains("mxbai")
        || model.contains("minilm")
}

fn pick_embedding_model(models: &[String]) -> Option<String> {
    models
        .iter()
        .find(|m| looks_like_embedding_model(m))
        .cloned()
}

/// Type of embedding provider.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum ProviderKind {
    /// Ollama with embedding models
    Ollama,
    /// MLX embedding server
    Mlx,
    /// Generic OpenAI-compatible endpoint
    OpenAICompat,
    /// Manual configuration
    Manual,
}

impl ProviderKind {
    pub fn label(&self) -> &'static str {
        match self {
            ProviderKind::Ollama => "Ollama",
            ProviderKind::Mlx => "MLX Server",
            ProviderKind::OpenAICompat => "OpenAI-Compatible",
            ProviderKind::Manual => "Manual",
        }
    }
}

/// Provider connection status.
#[derive(Debug, Clone)]
pub enum ProviderStatus {
    /// Provider is online with a usable model
    Online(String),
    /// Provider is online but no embedding model found
    OnlineNoModel,
    /// Provider is offline
    Offline,
}

/// Response from Ollama /api/tags endpoint.
#[derive(Debug, Deserialize)]
struct OllamaTagsResponse {
    models: Vec<OllamaModel>,
}

#[derive(Debug, Deserialize)]
struct OllamaModel {
    name: String,
}

/// Response from OpenAI-compatible /v1/models endpoint.
#[derive(Debug, Deserialize)]
struct ModelsResponse {
    data: Vec<ModelInfo>,
}

#[derive(Debug, Deserialize)]
struct ModelInfo {
    id: String,
}

/// Detect embedding providers on standard ports.
pub async fn detect_providers() -> Vec<DetectedProvider> {
    let client = Client::builder()
        .timeout(Duration::from_secs(3))
        .connect_timeout(Duration::from_secs(2))
        .build()
        .unwrap_or_default();

    let mut providers = Vec::new();

    // Check Ollama on localhost:11434
    if let Some(provider) = detect_ollama(&client, "http://localhost", 11434).await {
        providers.push(provider);
    }

    // Check MLX on localhost:12345
    if let Some(provider) = detect_mlx(&client, "http://localhost", 12345).await {
        providers.push(provider);
    }

    // Check dragon:12345 (common remote MLX server)
    if let Some(provider) = detect_mlx(&client, "http://dragon", 12345).await {
        providers.push(provider);
    }

    providers
}

/// Check if a URL is reachable (simple health check).
/// Used for quick provider connectivity verification.
pub async fn check_health(url: &str) -> bool {
    let client = Client::builder()
        .timeout(Duration::from_secs(3))
        .connect_timeout(Duration::from_secs(2))
        .build()
        .unwrap_or_default();
    client.get(url).send().await.is_ok()
}

/// Detect Ollama on a given host/port.
async fn detect_ollama(client: &Client, host: &str, port: u16) -> Option<DetectedProvider> {
    let base_url = format!("{}:{}", host, port);
    let tags_url = format!("{}/api/tags", base_url);

    // Try to get list of models
    let response = match client.get(&tags_url).send().await {
        Ok(r) if r.status().is_success() => r,
        _ => {
            return Some(DetectedProvider {
                kind: ProviderKind::Ollama,
                base_url: base_url.clone(),
                port,
                models: vec![],
                suggested_model: None,
                status: ProviderStatus::Offline,
            });
        }
    };

    let tags: OllamaTagsResponse = match response.json().await {
        Ok(t) => t,
        Err(_) => {
            return Some(DetectedProvider {
                kind: ProviderKind::Ollama,
                base_url,
                port,
                models: vec![],
                suggested_model: None,
                status: ProviderStatus::OnlineNoModel,
            });
        }
    };

    let models: Vec<String> = tags.models.iter().map(|m| m.name.clone()).collect();

    let embedding_model = pick_embedding_model(&models);

    let status = if let Some(ref model) = embedding_model {
        ProviderStatus::Online(model.clone())
    } else {
        ProviderStatus::OnlineNoModel
    };

    Some(DetectedProvider {
        kind: ProviderKind::Ollama,
        base_url,
        port,
        models,
        suggested_model: embedding_model,
        status,
    })
}

/// Detect MLX embedding server on a given host/port.
async fn detect_mlx(client: &Client, host: &str, port: u16) -> Option<DetectedProvider> {
    let base_url = format!("{}:{}", host, port);
    let models_url = format!("{}/v1/models", base_url);

    // Try OpenAI-compatible endpoint
    let response = match client.get(&models_url).send().await {
        Ok(r) if r.status().is_success() => r,
        _ => {
            // Don't report offline MLX servers unless we were explicitly looking for them
            return None;
        }
    };

    let models_resp: ModelsResponse = match response.json().await {
        Ok(m) => m,
        Err(_) => {
            return Some(DetectedProvider {
                kind: ProviderKind::Mlx,
                base_url,
                port,
                models: vec![],
                suggested_model: None,
                status: ProviderStatus::OnlineNoModel,
            });
        }
    };

    let models: Vec<String> = models_resp.data.iter().map(|m| m.id.clone()).collect();

    let embedding_model = pick_embedding_model(&models);

    let status = if let Some(ref model) = embedding_model {
        ProviderStatus::Online(model.clone())
    } else {
        ProviderStatus::OnlineNoModel
    };

    Some(DetectedProvider {
        kind: ProviderKind::Mlx,
        base_url,
        port,
        models,
        suggested_model: embedding_model,
        status,
    })
}

/// Check a custom endpoint for OpenAI-compatibility.
pub async fn check_custom_endpoint(url: &str) -> Result<DetectedProvider> {
    let client = Client::builder()
        .timeout(Duration::from_secs(5))
        .connect_timeout(Duration::from_secs(3))
        .build()?;

    let base_url = url.trim_end_matches('/');

    // Extract port from URL
    let port = reqwest::Url::parse(base_url)
        .ok()
        .and_then(|u| u.port())
        .unwrap_or(80);

    // Try /v1/models first
    let models_url = format!("{}/v1/models", base_url);
    if let Ok(resp) = client.get(&models_url).send().await {
        if resp.status().is_success() {
            let body = resp.text().await.unwrap_or_default();
            if let Ok(models_resp) = serde_json::from_str::<ModelsResponse>(&body) {
                let models: Vec<String> = models_resp.data.iter().map(|m| m.id.clone()).collect();

                let embedding_model = models
                    .iter()
                    .find(|m| m.contains("embedding") || m.contains("Embedding"))
                    .cloned();

                let status = if let Some(ref model) = embedding_model {
                    ProviderStatus::Online(model.clone())
                } else {
                    ProviderStatus::OnlineNoModel
                };

                return Ok(DetectedProvider {
                    kind: ProviderKind::OpenAICompat,
                    base_url: base_url.to_string(),
                    port,
                    models,
                    suggested_model: embedding_model,
                    status,
                });
            } else {
                tracing::debug!(
                    "Failed to parse /v1/models response: {}",
                    &body[..body.len().min(200)]
                );
            }
        } else {
            let status = resp.status();
            let body = resp.text().await.unwrap_or_default();
            tracing::debug!(
                "OpenAI endpoint returned HTTP {}: {}",
                status,
                &body[..body.len().min(200)]
            );
        }
    }

    // Try Ollama endpoint
    let tags_url = format!("{}/api/tags", base_url);
    if let Ok(resp) = client.get(&tags_url).send().await {
        if resp.status().is_success() {
            let body = resp.text().await.unwrap_or_default();
            if let Ok(tags) = serde_json::from_str::<OllamaTagsResponse>(&body) {
                let models: Vec<String> = tags.models.iter().map(|m| m.name.clone()).collect();

                let embedding_model = pick_embedding_model(&models);

                let status = if let Some(ref model) = embedding_model {
                    ProviderStatus::Online(model.clone())
                } else if !models.is_empty() {
                    ProviderStatus::OnlineNoModel
                } else {
                    ProviderStatus::Offline
                };

                return Ok(DetectedProvider {
                    kind: ProviderKind::Ollama,
                    base_url: base_url.to_string(),
                    port,
                    models,
                    suggested_model: embedding_model,
                    status,
                });
            } else {
                tracing::debug!(
                    "Failed to parse /api/tags response: {}",
                    &body[..body.len().min(200)]
                );
            }
        } else {
            let status = resp.status();
            let body = resp.text().await.unwrap_or_default();
            tracing::debug!(
                "Ollama endpoint returned HTTP {}: {}",
                status,
                &body[..body.len().min(200)]
            );
        }
    }

    Ok(DetectedProvider {
        kind: ProviderKind::OpenAICompat,
        base_url: base_url.to_string(),
        port,
        models: vec![],
        suggested_model: None,
        status: ProviderStatus::Offline,
    })
}

/// Get dimension explanation for UI.
/// Reports the verified dimension without guessing model variants.
pub fn dimension_explanation(dim: usize) -> String {
    format!("{dim} dims — ensure all providers match this dimension")
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_provider_kind_display() {
        assert_eq!(ProviderKind::Ollama.label(), "Ollama");
        assert_eq!(ProviderKind::Mlx.label(), "MLX Server");
    }

    #[test]
    fn pick_embedding_model_finds_embedding_keyword() {
        let models = vec!["llama3:8b".to_string(), "qwen3-embedding:8b".to_string()];
        assert_eq!(
            pick_embedding_model(&models).as_deref(),
            Some("qwen3-embedding:8b")
        );
    }

    #[test]
    fn dimension_explanation_is_dynamic() {
        let explanation = dimension_explanation(1536);
        assert!(explanation.contains("1536"));
    }
}