research-agent 0.1.0

Long-term research assistant: index papers, articles, and PDFs
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
use async_trait::async_trait;
use llm_kernel::llm::{
    AnthropicClient, ChatMessage, LLMClient, LLMRequest, ModelConfig, OpenAIClient,
};
use llm_kernel::safety::sanitize_output;
use llm_kernel::tokens::estimate_tokens;

use crate::domain::knowledge_gap::{GapType, KnowledgeGap};
use crate::domain::paper::Paper;
use crate::domain::research_report::{ReportSection, ResearchReport};
use crate::error::{ResearchError, Result};
use crate::ports::index_store::IndexStore;
use crate::ports::research_engine::ResearchEngine;

pub struct LlmResearchEngine {
    store: Box<dyn IndexStore>,
    config: Option<ModelConfig>,
}

impl LlmResearchEngine {
    pub fn new(store: Box<dyn IndexStore>) -> Self {
        Self {
            store,
            config: None,
        }
    }

    pub fn with_config(store: Box<dyn IndexStore>, config: ModelConfig) -> Self {
        Self {
            store,
            config: Some(config),
        }
    }

    fn make_client(config: &ModelConfig) -> Result<Box<dyn LLMClient>> {
        if config.provider == "anthropic" {
            AnthropicClient::new(config)
                .map(|c| Box::new(c) as Box<dyn LLMClient>)
                .map_err(|e| ResearchError::Source(e.to_string()))
        } else {
            OpenAIClient::new(config)
                .map(|c| Box::new(c) as Box<dyn LLMClient>)
                .map_err(|e| ResearchError::Source(e.to_string()))
        }
    }

    /// Build the gap-analysis context (paper abstracts) for a single topic.
    /// Returns only papers explicitly linked to the topic via `topic_papers`.
    /// When the topic has no linked papers, returns a clearly-marked placeholder
    /// so the LLM never receives arbitrary papers from unrelated topics.
    fn gap_context_for_topic(&self, topic_id: &str) -> Result<String> {
        // No count limit: the store already orders linked papers by relevance
        // DESC, so the token cap below — not an arbitrary count — decides how
        // much context the LLM sees.
        let papers = self.store.list_papers_by_topic(topic_id, None)?;
        if papers.is_empty() {
            return Ok("(no papers indexed for this topic yet)".into());
        }
        let abstracts: String = papers
            .iter()
            .map(|p| format!("Title: {}\nAbstract: {}\n", p.title, p.abstract_text))
            .collect::<Vec<_>>()
            .join("\n---\n");
        Ok(if estimate_tokens(&abstracts) > 6000 {
            abstracts.chars().take(24000).collect()
        } else {
            abstracts
        })
    }

    /// Build the per-topic paper block for report context. Returns only papers
    /// linked to the topic; a placeholder is emitted when none are linked, so
    /// the report never describes arbitrary papers as belonging to the topic.
    fn report_context_for_topic(&self, topic_id: &str) -> Result<String> {
        // No count limit: papers arrive relevance-ordered and the token
        // budget below decides how many fit — a fixed count silently drops
        // linked papers (and with equal scores, arbitrary ones).
        let papers = self.store.list_papers_by_topic(topic_id, None)?;
        if papers.is_empty() {
            return Ok("  (no papers indexed for this topic yet)\n".into());
        }
        let mut out = String::new();
        let mut budget = REPORT_CONTEXT_TOKENS;
        for (i, paper) in papers.iter().enumerate() {
            let line = format!("- {}: {}\n", paper.title, paper.abstract_text);
            let cost = estimate_tokens(&line);
            // Papers arrive relevance-ordered; the first one that no longer
            // fits ends the block (the first paper is always included).
            if i > 0 && cost > budget {
                break;
            }
            budget = budget.saturating_sub(cost);
            out.push_str(&line);
        }
        Ok(out)
    }
}

/// Token budget for report context: include as many linked papers (highest
/// relevance first) as fit instead of a fixed count.
const REPORT_CONTEXT_TOKENS: usize = 4000;
/// Context budget for one enrichment batch. Smaller than the gap budget:
/// keyword generation only needs the title and a slice of the abstract.
const KEYWORD_CONTEXT_TOKENS: usize = 3000;

/// Parse `GAP_TYPE|description` lines out of an LLM response. A non-empty
/// response yielding zero parseable lines means the model ignored the format
/// (common with free/OpenRouter models) — that is an error, not an empty gap
/// list; returning `Ok(vec![])` surfaces downstream as a misleading
/// "No gaps found".
fn parse_gaps(text: &str, topic_id: &str) -> Result<Vec<KnowledgeGap>> {
    let gaps: Vec<KnowledgeGap> = text
        .lines()
        .filter_map(|line| {
            let mut parts = line.splitn(2, '|');
            let gap_type = match parts.next()?.trim() {
                "MissingLiterature" => GapType::MissingLiterature,
                "UnansweredQuestion" => GapType::UnansweredQuestion,
                "MethodologyGap" => GapType::MethodologyGap,
                "ConnectionGap" => GapType::ConnectionGap,
                _ => return None,
            };
            let desc = parts.next()?.trim().to_string();
            Some(KnowledgeGap::new(desc, topic_id.to_string(), gap_type))
        })
        .collect();
    if gaps.is_empty() && !text.trim().is_empty() {
        return Err(ResearchError::Source(format!(
            "gap analysis response matched no 'GAP_TYPE|description' lines; \
             model ignored the format. Response start: {:?}",
            text.chars().take(300).collect::<String>()
        )));
    }
    Ok(gaps)
}

/// Parse `paper_id|kw1; kw2; kw3` lines out of an enrichment response. Lines
/// without a separator are skipped (models like to add a preamble), but a
/// non-empty response yielding zero parseable lines is an error for the same
/// reason as `parse_gaps`: silently returning nothing would look like "this
/// paper has no keywords" instead of "the model ignored the format".
fn parse_keywords(text: &str) -> Result<Vec<(String, String)>> {
    let pairs: Vec<(String, String)> = text
        .lines()
        .filter_map(|line| {
            let (id, kws) = line.split_once('|')?;
            let id = id.trim();
            let kws = kws.trim();
            if id.is_empty() || kws.is_empty() {
                return None;
            }
            Some((id.to_string(), kws.to_string()))
        })
        .collect();
    if pairs.is_empty() && !text.trim().is_empty() {
        return Err(ResearchError::Source(format!(
            "keyword response matched no 'paper_id|keywords' lines; \
             model ignored the format. Response start: {:?}",
            text.chars().take(300).collect::<String>()
        )));
    }
    Ok(pairs)
}

#[async_trait]
impl ResearchEngine for LlmResearchEngine {
    async fn analyze_gaps(&self, topic_id: &str) -> Result<Vec<KnowledgeGap>> {
        let topic = self.store.get_topic(topic_id)?;
        let topic_name = topic.as_ref().map(|t| t.name.as_str()).unwrap_or("unknown");

        let Some(config) = &self.config else {
            return Ok(vec![
                KnowledgeGap::new(
                    format!("No comprehensive survey exists for '{topic_name}'"),
                    topic_id.to_string(),
                    GapType::MissingLiterature,
                ),
                KnowledgeGap::new(
                    format!("Reproducibility of key experiments in '{topic_name}' is unclear"),
                    topic_id.to_string(),
                    GapType::MethodologyGap,
                ),
            ]);
        };

        let context = self.gap_context_for_topic(topic_id)?;

        let prompt = format!(
            "Topic: {topic_name}\n\nPapers:\n{context}\n\n\
             Identify 3-5 specific knowledge gaps. \
             For each gap output one line: GAP_TYPE|description\n\
             GAP_TYPE must be one of: MissingLiterature, UnansweredQuestion, MethodologyGap, ConnectionGap"
        );

        let client = Self::make_client(config)?;
        let response = client
            .complete(LLMRequest {
                system: Some(
                    "You are a research analyst identifying knowledge gaps in academic literature."
                        .into(),
                ),
                messages: vec![ChatMessage::user(prompt)],
                temperature: 0.3,
                max_tokens: Some(512),
                ..LLMRequest::default()
            })
            .await
            .map_err(|e| ResearchError::Source(e.to_string()))?;

        let text = sanitize_output(&response.content);

        parse_gaps(&text, topic_id)
    }

    async fn extract_keywords(&self, papers: &[Paper]) -> Result<Vec<(String, String)>> {
        if papers.is_empty() {
            return Ok(vec![]);
        }
        // No [llm] section: this is a normal state, not a failure. The caller
        // (`research enrich`) prints the work queue instead so a host agent can
        // do the generation and write results back.
        let Some(config) = &self.config else {
            return Ok(vec![]);
        };

        let mut context = String::new();
        let mut used = 0usize;
        for paper in papers {
            let abstract_snippet: String = paper.abstract_text.chars().take(600).collect();
            let block = format!("{}|{}\n{}\n\n", paper.id, paper.title, abstract_snippet);
            let cost = estimate_tokens(&block);
            if used + cost > KEYWORD_CONTEXT_TOKENS {
                break;
            }
            used += cost;
            context.push_str(&block);
        }

        let prompt = format!(
            "For each paper below, output one line: paper_id|keyword; keyword; keyword\n\n\
             Give 5-10 English search keywords per paper. Prefer synonyms, expanded \
             acronyms, broader field terms, and alternative phrasings that a searcher \
             might use but the abstract does not contain. Do not repeat words already \
             present in the title or abstract — those are already indexed.\n\n\
             Papers (format: id|title, then abstract):\n\n{context}"
        );

        let client = Self::make_client(config)?;
        let response = client
            .complete(LLMRequest {
                system: Some(
                    "You generate search keywords for academic papers. Output only \
                     'paper_id|keywords' lines, nothing else."
                        .into(),
                ),
                messages: vec![ChatMessage::user(prompt)],
                temperature: 0.2,
                max_tokens: Some(1024),
                ..LLMRequest::default()
            })
            .await
            .map_err(|e| ResearchError::Source(e.to_string()))?;

        parse_keywords(&sanitize_output(&response.content))
    }

    async fn generate_report(&self, title: &str, topic_ids: &[String]) -> Result<ResearchReport> {
        let mut report = ResearchReport::new(title.to_string(), topic_ids.to_vec());

        let Some(config) = &self.config else {
            report.sections.push(ReportSection {
                heading: "Introduction".into(),
                content: format!(
                    "This report covers {} topic(s): {}.",
                    topic_ids.len(),
                    topic_ids.join(", ")
                ),
            });
            report.sections.push(ReportSection {
                heading: "Knowledge Gaps".into(),
                content: "Gap analysis requires LLM configuration.".into(),
            });
            report.sections.push(ReportSection {
                heading: "Recommendations".into(),
                content: "Configure an LLM provider to generate recommendations.".into(),
            });
            return Ok(report);
        };

        let mut context = format!(
            "Report title: {title}\nTopics: {}\n\n",
            topic_ids.join(", ")
        );
        for topic_id in topic_ids {
            if let Some(topic) = self.store.get_topic(topic_id)? {
                context.push_str(&format!("## Topic: {}\n", topic.name));
                let papers_block = self.report_context_for_topic(topic_id)?;
                context.push_str(&papers_block);
                context.push('\n');
            }
        }

        let sections_to_write = [
            (
                "Introduction",
                "Write a 1-2 paragraph introduction covering the research area and scope.",
            ),
            (
                "Knowledge Gaps",
                "Identify and describe 3-5 specific knowledge gaps based on the papers.",
            ),
            (
                "Recommendations",
                "Provide 3-5 concrete, actionable research recommendations.",
            ),
        ];

        let client = Self::make_client(config)?;
        for (heading, instruction) in &sections_to_write {
            let prompt = format!("{context}\n\nTask: {instruction}");
            let response = client
                .complete(LLMRequest {
                    system: Some(
                        "You are an expert research analyst. Be specific and evidence-based."
                            .into(),
                    ),
                    messages: vec![ChatMessage::user(prompt)],
                    temperature: 0.4,
                    max_tokens: Some(512),
                    ..LLMRequest::default()
                })
                .await
                .map_err(|e| ResearchError::Source(e.to_string()))?;
            report.sections.push(ReportSection {
                heading: heading.to_string(),
                content: sanitize_output(&response.content),
            });
        }

        Ok(report)
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::adapters::sqlite_store::SqliteStore;
    use crate::domain::paper::Paper;
    use crate::domain::research_topic::ResearchTopic;

    fn setup() -> (Box<dyn IndexStore>, String) {
        let store = SqliteStore::open_in_memory().unwrap();
        let topic = ResearchTopic::new("Transformers".into());
        let topic_id = topic.id.clone();
        store.insert_topic(&topic).unwrap();
        (Box::new(store), topic_id)
    }

    /// Build a store with two topics, one linked paper each, plus an unlinked
    /// paper. Returns the boxed store and the three paper titles so tests can
    /// assert on context contents without holding the paper structs.
    fn setup_with_papers() -> (
        Box<dyn IndexStore>,
        String, // topic A id
        String, // topic B id
        String, // paper A title
        String, // paper B title
        String, // unlinked paper title
    ) {
        let store = SqliteStore::open_in_memory().unwrap();
        let topic_a = ResearchTopic::new("Transformers".into());
        let topic_b = ResearchTopic::new("Diffusion".into());
        let topic_a_id = topic_a.id.clone();
        let topic_b_id = topic_b.id.clone();
        store.insert_topic(&topic_a).unwrap();
        store.insert_topic(&topic_b).unwrap();

        let mut paper_a = Paper::new("Attention Is All You Need".into());
        paper_a.abstract_text = "Transformer architecture for sequence modeling".into();
        let mut paper_b = Paper::new("Denoising Diffusion Probabilistic Models".into());
        paper_b.abstract_text = "Generative models via iterative denoising".into();
        let mut paper_unlinked = Paper::new("Unlinked Graph Neural Net Survey".into());
        paper_unlinked.abstract_text = "Must never appear in a topic-scoped context".into();

        let title_a = paper_a.title.clone();
        let title_b = paper_b.title.clone();
        let title_unlinked = paper_unlinked.title.clone();
        store.insert_paper(&paper_a).unwrap();
        store.insert_paper(&paper_b).unwrap();
        store.insert_paper(&paper_unlinked).unwrap();
        store
            .link_paper_to_topic(&paper_a.id, &topic_a_id, 0.9)
            .unwrap();
        store
            .link_paper_to_topic(&paper_b.id, &topic_b_id, 0.9)
            .unwrap();

        (
            Box::new(store),
            topic_a_id,
            topic_b_id,
            title_a,
            title_b,
            title_unlinked,
        )
    }

    #[tokio::test]
    async fn analyze_gaps_fallback_returns_heuristic() {
        let (store, topic_id) = setup();
        let engine = LlmResearchEngine::new(store);
        let gaps = engine.analyze_gaps(&topic_id).await.unwrap();
        assert_eq!(gaps.len(), 2);
        assert_eq!(gaps[0].topic_id, topic_id);
    }

    #[tokio::test]
    async fn generate_report_fallback_returns_sections() {
        let (store, topic_id) = setup();
        let engine = LlmResearchEngine::new(store);
        let report = engine
            .generate_report("Test Report", &[topic_id])
            .await
            .unwrap();
        assert_eq!(report.title, "Test Report");
        assert_eq!(report.sections.len(), 3);
        assert!(report.to_markdown().contains("# Test Report"));
    }

    #[test]
    fn gap_context_scopes_to_requested_topic() {
        // Regression for the bug where analyze_gaps called list_papers(Some(20))
        // and fed arbitrary papers to the LLM. The context must contain only
        // papers linked to the requested topic.
        let (store, topic_a_id, topic_b_id, title_a, title_b, title_unlinked) = setup_with_papers();
        let engine = LlmResearchEngine::new(store);

        let ctx_a = engine.gap_context_for_topic(&topic_a_id).unwrap();
        assert!(
            ctx_a.contains(&title_a),
            "topic A context must include its own paper"
        );
        assert!(
            !ctx_a.contains(&title_b),
            "must not leak another topic's paper"
        );
        assert!(
            !ctx_a.contains(&title_unlinked),
            "must not leak an unlinked paper"
        );

        let ctx_b = engine.gap_context_for_topic(&topic_b_id).unwrap();
        assert!(ctx_b.contains(&title_b));
        assert!(!ctx_b.contains(&title_a));
        assert!(!ctx_b.contains(&title_unlinked));
    }

    #[test]
    fn gap_context_empty_topic_does_not_leak_arbitrary_papers() {
        // A topic with no linked papers must yield an explicit placeholder, not
        // a dump of arbitrary recent papers from the store.
        let (store, _topic_a_id, _topic_b_id, title_a, title_b, title_unlinked) =
            setup_with_papers();
        let engine = LlmResearchEngine::new(store);

        let empty_topic = ResearchTopic::new("Brand New Topic".into());
        let empty_id = empty_topic.id.clone();
        engine.store.insert_topic(&empty_topic).unwrap();

        let ctx = engine.gap_context_for_topic(&empty_id).unwrap();
        assert!(
            ctx.contains("no papers indexed"),
            "empty topic must produce the placeholder, got: {ctx}"
        );
        assert!(!ctx.contains(&title_a));
        assert!(!ctx.contains(&title_b));
        assert!(!ctx.contains(&title_unlinked));
    }

    #[test]
    fn report_context_scopes_to_requested_topic() {
        // Regression for the bug where generate_report called list_papers(Some(5))
        // inside the per-topic loop, emitting the SAME arbitrary papers for every
        // topic. Each topic's block must contain only its own papers.
        let (store, topic_a_id, topic_b_id, title_a, title_b, title_unlinked) = setup_with_papers();
        let engine = LlmResearchEngine::new(store);

        let block_a = engine.report_context_for_topic(&topic_a_id).unwrap();
        assert!(block_a.contains(&title_a));
        assert!(!block_a.contains(&title_b));
        assert!(!block_a.contains(&title_unlinked));

        let block_b = engine.report_context_for_topic(&topic_b_id).unwrap();
        assert!(block_b.contains(&title_b));
        assert!(!block_b.contains(&title_a));
        assert!(!block_b.contains(&title_unlinked));
    }

    #[test]
    fn report_context_empty_topic_does_not_leak_arbitrary_papers() {
        let (store, _topic_a_id, _topic_b_id, title_a, title_b, title_unlinked) =
            setup_with_papers();
        let engine = LlmResearchEngine::new(store);

        let empty_topic = ResearchTopic::new("Brand New Topic".into());
        let empty_id = empty_topic.id.clone();
        engine.store.insert_topic(&empty_topic).unwrap();

        let block = engine.report_context_for_topic(&empty_id).unwrap();
        assert!(
            block.contains("no papers indexed"),
            "empty topic must produce the placeholder, got: {block}"
        );
        assert!(!block.contains(&title_a));
        assert!(!block.contains(&title_b));
        assert!(!block.contains(&title_unlinked));
    }

    #[test]
    fn parse_gaps_reads_valid_lines() {
        let gaps = parse_gaps(
            "MissingLiterature|no survey of X\nUnansweredQuestion| does Y hold? \n",
            "topic-1",
        )
        .unwrap();
        assert_eq!(gaps.len(), 2);
        assert_eq!(gaps[0].description, "no survey of X");
        assert_eq!(gaps[1].topic_id, "topic-1");
    }

    #[test]
    fn parse_gaps_empty_response_is_ok_empty() {
        assert!(parse_gaps("", "t").unwrap().is_empty());
        assert!(parse_gaps("  \n ", "t").unwrap().is_empty());
    }

    #[test]
    fn parse_gaps_errors_on_unparseable_response() {
        // Regression: a prose answer that matches zero `GAP_TYPE|description`
        // lines used to become an empty vec, printed as "No gaps found".
        let err = parse_gaps(
            "Here are some gaps:\n1. Nobody has studied X\n2. Y is unclear",
            "t",
        );
        assert!(
            err.is_err(),
            "prose response must be an error, not empty ok"
        );
    }

    #[test]
    fn report_context_includes_all_linked_papers_within_budget() {
        // Regression: the report context capped linked papers at a fixed 5,
        // silently dropping the rest — with equal relevance scores the
        // dropped ones were whichever the store sorted last.
        let store = SqliteStore::open_in_memory().unwrap();
        let topic = ResearchTopic::new("Many papers".into());
        let topic_id = topic.id.clone();
        store.insert_topic(&topic).unwrap();

        let titles: Vec<String> = (0..7)
            .map(|i| {
                let mut paper = Paper::new(format!("Paper number {i}"));
                paper.abstract_text = "short abstract".into();
                store.insert_paper(&paper).unwrap();
                store
                    .link_paper_to_topic(&paper.id, &topic_id, 0.5)
                    .unwrap();
                paper.title
            })
            .collect();

        let engine = LlmResearchEngine::new(Box::new(store));
        let block = engine.report_context_for_topic(&topic_id).unwrap();
        for title in &titles {
            assert!(
                block.contains(title.as_str()),
                "linked paper '{title}' missing from report context, got: {block}"
            );
        }
    }

    #[test]
    fn parse_keywords_maps_ids_to_keyword_strings() {
        let text = "abc-1|transformer; self-attention\nxyz-2|graph neural network; message passing";
        let got = parse_keywords(text).unwrap();
        assert_eq!(got.len(), 2);
        assert_eq!(got[0].0, "abc-1");
        assert_eq!(got[0].1, "transformer; self-attention");
        assert_eq!(got[1].0, "xyz-2");
    }

    #[test]
    fn parse_keywords_rejects_unparseable_nonempty_response() {
        // A model that ignores the format must surface as an error, not as
        // "no keywords" — same rule as parse_gaps.
        let err = parse_keywords("Sure! Here are some keywords for your papers.");
        assert!(err.is_err(), "expected format violation to error");
    }

    #[test]
    fn parse_keywords_accepts_empty_response() {
        assert!(parse_keywords("   ").unwrap().is_empty());
    }

    #[test]
    fn parse_keywords_skips_lines_without_separator() {
        let text = "preamble line\nabc-1|alpha; beta\ntrailing note";
        let got = parse_keywords(text).unwrap();
        assert_eq!(got.len(), 1);
        assert_eq!(got[0].0, "abc-1");
    }
}