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
//! Tool output types.
/// Output returned by a tool handler.
///
/// Contains the content string that will be sent back to the LLM.
/// For application-level metadata (metrics, request IDs, etc.), use
/// the context parameter to write to shared state instead.
///
/// # Example
///
/// ```rust
/// use llm_stack::tool::ToolOutput;
///
/// let output = ToolOutput::new("Result: 42");
/// ```