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
//! The `Doc` trait for documents stored in spire-ai collections.
/// A document that can be stored in a [`Collection`](crate::Collection).
///
/// Implement this trait manually or use `#[derive(Doc)]` with the `macros` feature.
///
/// # Examples
///
/// Manual implementation:
/// ```rust
/// use spire_ai::Doc;
/// use serde::{Serialize, Deserialize};
///
/// #[derive(Serialize, Deserialize, Clone)]
/// struct Article {
/// slug: String,
/// title: String,
/// content: String,
/// }
///
/// impl Doc for Article {
/// fn id(&self) -> &str { &self.slug }
/// fn embed_text(&self) -> String {
/// format!("{}\n\n{}", self.title, self.content)
/// }
/// }
/// ```