butterfly-bot 0.2.1

Butterfly Bot is an opinionated personal-ops AI assistant built for people who want results, not setup overhead.
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
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
use std::sync::Mutex;
use std::time::Duration;

use async_trait::async_trait;
use reqwest::Client;
use serde_json::{json, Value};

use crate::error::Result;
use crate::interfaces::plugins::{Tool, ToolSecret};
use crate::vault;

#[derive(Debug, Clone)]
struct SearchInternetState {
    api_key: Option<String>,
    provider: String,
    model: String,
    citations: bool,
    grok_web_search: bool,
    grok_x_search: bool,
    grok_timeout: u64,
    network_allow: Vec<String>,
    default_deny: bool,
}

impl Default for SearchInternetState {
    fn default() -> Self {
        Self {
            api_key: None,
            provider: "openai".to_string(),
            model: "".to_string(),
            citations: true,
            grok_web_search: true,
            grok_x_search: true,
            grok_timeout: 90,
            network_allow: Vec::new(),
            default_deny: false,
        }
    }
}

pub struct SearchInternetTool {
    state: Mutex<SearchInternetState>,
}

impl SearchInternetTool {
    pub fn new() -> Self {
        Self {
            state: Mutex::new(SearchInternetState::default()),
        }
    }

    fn snapshot(&self) -> SearchInternetState {
        self.state
            .lock()
            .map(|state| state.clone())
            .unwrap_or_default()
    }

    fn set_defaults(state: &mut SearchInternetState, model_set_from_config: bool) {
        if model_set_from_config {
            return;
        }
        match state.provider.as_str() {
            "perplexity" => state.model = "sonar".to_string(),
            "openai" => state.model = "gpt-4o-mini-search-preview".to_string(),
            "grok" => state.model = "grok-4-1-fast-non-reasoning".to_string(),
            _ => state.model = "".to_string(),
        }
    }

    fn get_tool_config(config: &Value) -> Option<&Value> {
        config
            .get("tools")
            .and_then(|tools| tools.get("search_internet"))
    }

    fn get_settings_config(config: &Value) -> Option<&Value> {
        config.get("tools").and_then(|tools| tools.get("settings"))
    }

    fn parse_allowlist(value: &Value) -> Vec<String> {
        value
            .as_array()
            .map(|items| {
                items
                    .iter()
                    .filter_map(|item| item.as_str().map(|s| s.to_string()))
                    .collect()
            })
            .unwrap_or_default()
    }

    fn is_domain_allowed(domain: &str, allowlist: &[String], default_deny: bool) -> bool {
        if allowlist.iter().any(|entry| entry == "*") {
            return true;
        }
        if allowlist.is_empty() {
            return !default_deny;
        }
        allowlist.iter().any(|entry| {
            if entry == domain {
                return true;
            }
            if let Some(suffix) = entry.strip_prefix("*.") {
                return domain.ends_with(suffix);
            }
            false
        })
    }

    fn network_denied_value(domain: &str) -> Value {
        json!({
            "status": "error",
            "message": format!("Network access denied for {}", domain),
        })
    }

    fn extract_query(params: Value) -> Option<String> {
        params
            .get("query")
            .and_then(|v| v.as_str())
            .map(|v| v.to_string())
            .filter(|v| !v.trim().is_empty())
    }

    fn format_sources(label: &str, sources: &[String]) -> String {
        if sources.is_empty() {
            return String::new();
        }
        let mut out = String::new();
        out.push_str("\n\n");
        out.push_str(label);
        out.push('\n');
        for (idx, url) in sources.iter().enumerate() {
            out.push_str(&format!("[{}] {}\n", idx + 1, url));
        }
        out.trim_end().to_string()
    }

    async fn search_openai(&self, query: &str, state: &SearchInternetState) -> Result<Value> {
        if !Self::is_domain_allowed("api.openai.com", &state.network_allow, state.default_deny) {
            return Ok(Self::network_denied_value("api.openai.com"));
        }
        let api_key = match &state.api_key {
            Some(key) if !key.trim().is_empty() => key.clone(),
            _ => {
                return Ok(json!({
                    "status": "error",
                    "message": "API key not configured",
                }))
            }
        };

        let payload = json!({
            "model": state.model,
            "messages": [
                {
                    "role": "system",
                    "content": "You are a helpful assistant that searches the internet for current information."
                },
                {
                    "role": "user",
                    "content": query
                }
            ]
        });

        let response = Client::new()
            .post("https://api.openai.com/v1/chat/completions")
            .bearer_auth(api_key)
            .json(&payload)
            .send()
            .await;

        let response = match response {
            Ok(resp) => resp,
            Err(err) => {
                return Ok(json!({
                    "status": "error",
                    "message": "OpenAI API error",
                    "details": err.to_string(),
                }))
            }
        };

        if !response.status().is_success() {
            let status = response.status().as_u16();
            let text = response.text().await.unwrap_or_default();
            return Ok(json!({
                "status": "error",
                "message": format!("Failed to search: {}", status),
                "details": text,
            }));
        }

        let data: Value = response.json().await.unwrap_or(Value::Null);
        let content = data
            .get("choices")
            .and_then(|v| v.get(0))
            .and_then(|v| v.get("message"))
            .and_then(|v| v.get("content"))
            .and_then(|v| v.as_str())
            .unwrap_or("")
            .to_string();

        Ok(json!({
            "status": "success",
            "result": content,
            "model_used": state.model,
        }))
    }

    async fn search_perplexity(&self, query: &str, state: &SearchInternetState) -> Result<Value> {
        if !Self::is_domain_allowed(
            "api.perplexity.ai",
            &state.network_allow,
            state.default_deny,
        ) {
            return Ok(Self::network_denied_value("api.perplexity.ai"));
        }
        let api_key = match &state.api_key {
            Some(key) if !key.trim().is_empty() => key.clone(),
            _ => {
                return Ok(json!({
                    "status": "error",
                    "message": "API key not configured",
                }))
            }
        };

        let system_content = if state.citations {
            "You search the Internet for current information. Include detailed information with citations like [1], [2], etc."
        } else {
            "You search the Internet for current information. Provide a comprehensive answer without citations or source references."
        };

        let payload = json!({
            "model": state.model,
            "messages": [
                {"role": "system", "content": system_content},
                {"role": "user", "content": query}
            ]
        });

        let response = Client::new()
            .post("https://api.perplexity.ai/chat/completions")
            .bearer_auth(api_key)
            .json(&payload)
            .send()
            .await;

        let response = match response {
            Ok(resp) => resp,
            Err(err) => {
                return Ok(json!({
                    "status": "error",
                    "message": "Perplexity API error",
                    "details": err.to_string(),
                }))
            }
        };

        if !response.status().is_success() {
            let status = response.status().as_u16();
            let text = response.text().await.unwrap_or_default();
            return Ok(json!({
                "status": "error",
                "message": format!("Failed to search: {}", status),
                "details": text,
            }));
        }

        let data: Value = response.json().await.unwrap_or(Value::Null);
        let mut content = data
            .get("choices")
            .and_then(|v| v.get(0))
            .and_then(|v| v.get("message"))
            .and_then(|v| v.get("content"))
            .and_then(|v| v.as_str())
            .unwrap_or("")
            .to_string();

        if state.citations {
            if let Some(split) = content.split("Sources:").next() {
                content = split.trim().to_string();
            }
            let citations: Vec<String> = data
                .get("citations")
                .and_then(|v| v.as_array())
                .map(|arr| {
                    arr.iter()
                        .filter_map(|item| {
                            if let Some(url) = item.as_str() {
                                Some(url.to_string())
                            } else {
                                item.get("url")
                                    .and_then(|u| u.as_str())
                                    .map(|u| u.to_string())
                            }
                        })
                        .collect()
                })
                .unwrap_or_default();
            let sources = Self::format_sources("**Sources:**", &citations);
            content.push_str(&sources);
        }

        Ok(json!({
            "status": "success",
            "result": content,
            "model_used": state.model,
        }))
    }

    async fn search_grok(&self, query: &str, state: &SearchInternetState) -> Result<Value> {
        if !Self::is_domain_allowed("api.x.ai", &state.network_allow, state.default_deny) {
            return Ok(Self::network_denied_value("api.x.ai"));
        }
        let api_key = match &state.api_key {
            Some(key) if !key.trim().is_empty() => key.clone(),
            _ => {
                return Ok(json!({
                    "status": "error",
                    "message": "API key not configured",
                }))
            }
        };

        let mut tools = Vec::new();
        if state.grok_web_search {
            tools.push(json!({"type": "web_search"}));
        }
        if state.grok_x_search {
            tools.push(json!({"type": "x_search"}));
        }
        if tools.is_empty() {
            tools.push(json!({"type": "web_search"}));
        }

        let payload = json!({
            "model": state.model,
            "input": [
                {"role": "user", "content": query}
            ],
            "tools": tools,
        });

        let client = Client::builder()
            .timeout(Duration::from_secs(state.grok_timeout))
            .build();
        let client = match client {
            Ok(client) => client,
            Err(err) => {
                return Ok(json!({
                    "status": "error",
                    "message": "Grok client error",
                    "details": err.to_string(),
                }))
            }
        };

        let response = client
            .post("https://api.x.ai/v1/responses")
            .bearer_auth(api_key)
            .json(&payload)
            .send()
            .await;

        let response = match response {
            Ok(resp) => resp,
            Err(err) => {
                return Ok(json!({
                    "status": "error",
                    "message": "Grok API error",
                    "details": err.to_string(),
                }))
            }
        };

        if !response.status().is_success() {
            let status = response.status().as_u16();
            let text = response.text().await.unwrap_or_default();
            return Ok(json!({
                "status": "error",
                "message": format!("Failed to search: {}", status),
                "details": text,
            }));
        }

        let data: Value = response.json().await.unwrap_or(Value::Null);
        let mut content = String::new();
        let mut sources = Vec::new();
        if let Some(items) = data.get("output").and_then(|v| v.as_array()) {
            for item in items {
                if item.get("type").and_then(|v| v.as_str()) == Some("message") {
                    if let Some(parts) = item.get("content").and_then(|v| v.as_array()) {
                        for part in parts {
                            if part.get("type").and_then(|v| v.as_str()) == Some("output_text") {
                                if let Some(text) = part.get("text").and_then(|v| v.as_str()) {
                                    content = text.to_string();
                                }
                                if let Some(annotations) =
                                    part.get("annotations").and_then(|v| v.as_array())
                                {
                                    for annotation in annotations {
                                        if annotation.get("type").and_then(|v| v.as_str())
                                            == Some("url_citation")
                                        {
                                            if let Some(url) =
                                                annotation.get("url").and_then(|v| v.as_str())
                                            {
                                                if !sources.contains(&url.to_string()) {
                                                    sources.push(url.to_string());
                                                }
                                            }
                                        }
                                    }
                                }
                                break;
                            }
                        }
                    }
                    break;
                }
            }
        }

        if state.citations {
            let formatted = Self::format_sources("**Sources:**", &sources);
            content.push_str(&formatted);
        }

        Ok(json!({
            "status": "success",
            "result": content,
            "model_used": state.model,
        }))
    }
}

impl Default for SearchInternetTool {
    fn default() -> Self {
        Self::new()
    }
}

#[async_trait]
impl Tool for SearchInternetTool {
    fn name(&self) -> &str {
        "search_internet"
    }

    fn description(&self) -> &str {
        "Search the internet for current information using Perplexity, OpenAI, or Grok."
    }

    fn parameters(&self) -> Value {
        json!({
            "type": "object",
            "properties": {
                "query": {
                    "type": "string",
                    "description": "Search query text"
                }
            },
            "required": ["query"],
            "additionalProperties": false
        })
    }

    fn required_secrets_for_config(&self, config: &Value) -> Vec<ToolSecret> {
        let provider = Self::get_tool_config(config)
            .and_then(|cfg| cfg.get("provider"))
            .and_then(|v| v.as_str())
            .unwrap_or("openai");
        match provider {
            "perplexity" => vec![ToolSecret::new(
                "search_internet_perplexity_api_key",
                "Perplexity API key",
            )],
            "grok" => vec![ToolSecret::new(
                "search_internet_grok_api_key",
                "Grok API key",
            )],
            _ => vec![ToolSecret::new(
                "search_internet_openai_api_key",
                "OpenAI API key (for search_internet)",
            )],
        }
    }

    fn configure(&self, config: &Value) -> Result<()> {
        let mut state = self.state.lock().map_err(|_| {
            crate::error::ButterflyBotError::Runtime("Failed to lock tool state".to_string())
        })?;
        let mut model_set_from_config = false;

        if let Some(settings) = Self::get_settings_config(config) {
            if let Some(perms) = settings.get("permissions") {
                if let Some(default_deny) = perms.get("default_deny").and_then(|v| v.as_bool()) {
                    state.default_deny = default_deny;
                }
                if let Some(allow) = perms.get("network_allow") {
                    state.network_allow = Self::parse_allowlist(allow);
                }
            }
        }

        if let Some(tool_cfg) = Self::get_tool_config(config) {
            if let Some(perms) = tool_cfg.get("permissions") {
                if let Some(allow) = perms.get("network_allow") {
                    state.network_allow = Self::parse_allowlist(allow);
                }
            }
            if let Some(api_key) = tool_cfg.get("api_key").and_then(|v| v.as_str()) {
                state.api_key = Some(api_key.to_string());
            }
            if let Some(provider) = tool_cfg.get("provider").and_then(|v| v.as_str()) {
                state.provider = provider.to_string();
            }
            if let Some(model) = tool_cfg.get("model").and_then(|v| v.as_str()) {
                state.model = model.to_string();
                model_set_from_config = true;
            }
            if let Some(citations) = tool_cfg.get("citations").and_then(|v| v.as_bool()) {
                state.citations = citations;
            }
            if let Some(web) = tool_cfg.get("grok_web_search").and_then(|v| v.as_bool()) {
                state.grok_web_search = web;
            }
            if let Some(x_search) = tool_cfg.get("grok_x_search").and_then(|v| v.as_bool()) {
                state.grok_x_search = x_search;
            }
            if let Some(timeout) = tool_cfg.get("grok_timeout").and_then(|v| v.as_u64()) {
                state.grok_timeout = timeout;
            }
        }

        if state.api_key.is_none() {
            let primary = match state.provider.as_str() {
                "perplexity" => "search_internet_perplexity_api_key",
                "grok" => "search_internet_grok_api_key",
                _ => "search_internet_openai_api_key",
            };
            let fallbacks = [
                "search_internet_grok_api_key",
                "search_internet_perplexity_api_key",
                "search_internet_openai_api_key",
            ];
            for name in std::iter::once(primary).chain(fallbacks.into_iter()) {
                if let Some(secret) = vault::get_secret(name)? {
                    if !secret.trim().is_empty() {
                        state.api_key = Some(secret);
                        break;
                    }
                }
            }
        }

        if state.api_key.is_none() {
            if let Some(openai_key) = config
                .get("openai")
                .and_then(|v| v.get("api_key"))
                .and_then(|v| v.as_str())
            {
                if !openai_key.trim().is_empty() {
                    state.api_key = Some(openai_key.to_string());
                }
            }
        }

        Self::set_defaults(&mut state, model_set_from_config);
        Ok(())
    }

    async fn execute(&self, params: Value) -> Result<Value> {
        let query = match Self::extract_query(params) {
            Some(query) => query,
            None => {
                return Ok(json!({
                    "status": "error",
                    "message": "query is required"
                }))
            }
        };

        let state = self.snapshot();

        match state.provider.as_str() {
            "perplexity" => self.search_perplexity(&query, &state).await,
            "grok" => self.search_grok(&query, &state).await,
            _ => self.search_openai(&query, &state).await,
        }
    }
}

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

    #[test]
    fn network_allowlist_allows_wildcard() {
        let allow = vec!["*".to_string()];
        assert!(SearchInternetTool::is_domain_allowed(
            "api.openai.com",
            &allow,
            true
        ));
    }

    #[test]
    fn network_allowlist_allows_suffix() {
        let allow = vec!["*.openai.com".to_string()];
        assert!(SearchInternetTool::is_domain_allowed(
            "api.openai.com",
            &allow,
            true
        ));
        assert!(!SearchInternetTool::is_domain_allowed(
            "api.perplexity.ai",
            &allow,
            true
        ));
    }

    #[test]
    fn network_allowlist_default_deny() {
        let allow = Vec::new();
        assert!(!SearchInternetTool::is_domain_allowed(
            "api.openai.com",
            &allow,
            true
        ));
        assert!(SearchInternetTool::is_domain_allowed(
            "api.openai.com",
            &allow,
            false
        ));
    }
}