Source file content.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
type t =
  | Text of { text : string }
  | Tool_call of {
      tool_call_type : string;
      tool_call_id : string;
      tool_name : string;
      args : string;
    }
  | Reasoning of {
      text : string;
      signature : string option;
      provider_options : Provider_options.t;
    }
  | File of {
      data : bytes;
      media_type : string;
    }