objectiveai-sdk 2.0.6

ObjectiveAI SDK, definitions, and utilities
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
//! Schema types for validating Function input.
//!
//! Defines the expected structure and constraints for input data.
//! Used by remote Functions to document and validate their inputs.

use crate::agent;
use indexmap::IndexMap;
use serde::{Deserialize, Serialize};
use schemars::JsonSchema;
use super::InputValue;

/// Schema for validating Function input.
///
/// Defines the expected structure and constraints for input data.
/// Used by remote Functions to document and validate their inputs.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema, arbitrary::Arbitrary)]
#[serde(untagged)]
#[schemars(rename = "functions.expression.InputSchema")]
pub enum InputSchema {
    /// A union of schemas - input must match at least one.
    #[schemars(title = "AnyOf")]
    AnyOf(AnyOfInputSchema),
    /// An object with named properties.
    #[schemars(title = "Object")]
    Object(ObjectInputSchema),
    /// An array of items.
    #[schemars(title = "Array")]
    Array(ArrayInputSchema),
    /// A string value.
    #[schemars(title = "String")]
    String(StringInputSchema),
    /// An integer value.
    #[schemars(title = "Integer")]
    Integer(IntegerInputSchema),
    /// A floating-point number.
    #[schemars(title = "Number")]
    Number(NumberInputSchema),
    /// A boolean value.
    #[schemars(title = "Boolean")]
    Boolean(BooleanInputSchema),
    /// An image (URL or base64).
    #[schemars(title = "Image")]
    Image(ImageInputSchema),
    /// Audio content.
    #[schemars(title = "Audio")]
    Audio(AudioInputSchema),
    /// Video content.
    #[schemars(title = "Video")]
    Video(VideoInputSchema),
    /// A file.
    #[schemars(title = "File")]
    File(FileInputSchema),
}

impl InputSchema {
    /// Returns which media modalities are present anywhere in this schema.
    pub fn modalities(&self) -> Modalities {
        match self {
            InputSchema::Image(_) => Modalities { image: true, ..Modalities::default() },
            InputSchema::Audio(_) => Modalities { audio: true, ..Modalities::default() },
            InputSchema::Video(_) => Modalities { video: true, ..Modalities::default() },
            InputSchema::File(_) => Modalities { file: true, ..Modalities::default() },
            InputSchema::Object(s) => s.modalities(),
            InputSchema::Array(s) => s.modalities(),
            InputSchema::AnyOf(s) => s.modalities(),
            InputSchema::String(_) | InputSchema::Integer(_)
            | InputSchema::Number(_) | InputSchema::Boolean(_) => Modalities::default(),
        }
    }

    /// Validates that an input value conforms to this schema.
    pub fn validate_input(&self, input: &InputValue) -> bool {
        match self {
            InputSchema::Object(schema) => schema.validate_input(input),
            InputSchema::Array(schema) => schema.validate_input(input),
            InputSchema::String(schema) => schema.validate_input(input),
            InputSchema::Integer(schema) => schema.validate_input(input),
            InputSchema::Number(schema) => schema.validate_input(input),
            InputSchema::Boolean(schema) => schema.validate_input(input),
            InputSchema::Image(schema) => schema.validate_input(input),
            InputSchema::Audio(schema) => schema.validate_input(input),
            InputSchema::Video(schema) => schema.validate_input(input),
            InputSchema::File(schema) => schema.validate_input(input),
            InputSchema::AnyOf(schema) => schema.validate_input(input),
        }
    }
}


/// Which media modalities are present in a schema.
#[derive(Debug, Clone, Copy, Default, PartialEq, Eq)]
pub struct Modalities {
    pub image: bool,
    pub audio: bool,
    pub video: bool,
    pub file: bool,
}

impl Modalities {
    /// Merge two `Modalities` (union).
    pub fn merge(self, other: Self) -> Self {
        Self {
            image: self.image || other.image,
            audio: self.audio || other.audio,
            video: self.video || other.video,
            file: self.file || other.file,
        }
    }
}

/// Schema for a union of possible types - input must match at least one.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema, arbitrary::Arbitrary)]
#[serde(rename_all = "camelCase")]
#[schemars(rename = "functions.expression.AnyOfInputSchema")]
pub struct AnyOfInputSchema {
    /// The possible schemas that the input can match.
    pub any_of: Vec<InputSchema>,
}

impl AnyOfInputSchema {
    /// Returns which media modalities are present in any variant.
    pub fn modalities(&self) -> Modalities {
        self.any_of.iter().fold(Modalities::default(), |acc, s| acc.merge(s.modalities()))
    }

    /// Validates that an input matches at least one schema in the union.
    pub fn validate_input(&self, input: &InputValue) -> bool {
        self.any_of
            .iter()
            .any(|schema| schema.validate_input(input))
    }
}

#[derive(Debug, Clone, Copy, Default, PartialEq, Serialize, Deserialize, JsonSchema, arbitrary::Arbitrary)]
#[serde(rename_all = "lowercase")]
#[schemars(rename = "functions.expression.ObjectInputSchemaType")]
pub enum ObjectInputSchemaType {
    #[default]
    Object,
}

/// Schema for an object input with named properties.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema, arbitrary::Arbitrary)]
#[serde(rename_all = "camelCase")]
#[schemars(rename = "functions.expression.ObjectInputSchema")]
pub struct ObjectInputSchema {
    pub r#type: ObjectInputSchemaType,
    /// Human-readable description of the object.
    #[serde(skip_serializing_if = "Option::is_none")]
    #[schemars(extend("omitempty" = true))]
    pub description: Option<String>,
    /// Schema for each property in the object.
    #[arbitrary(with = crate::arbitrary_util::arbitrary_indexmap)]
    pub properties: IndexMap<String, InputSchema>,
    /// List of property names that must be present.
    #[serde(skip_serializing_if = "Option::is_none")]
    #[schemars(extend("omitempty" = true))]
    pub required: Option<Vec<String>>,
}

impl ObjectInputSchema {
    /// Returns which media modalities are present in any property.
    pub fn modalities(&self) -> Modalities {
        self.properties.values().fold(Modalities::default(), |acc, s| acc.merge(s.modalities()))
    }

    /// Validates that an input is an object matching this schema.
    pub fn validate_input(&self, input: &InputValue) -> bool {
        match input {
            InputValue::Object(map) => {
                let required = self.required.as_deref().unwrap_or(&[]);
                self.properties.iter().all(|(key, schema)| {
                    match map.get(key) {
                        Some(value) => schema.validate_input(value),
                        None => !required.contains(key),
                    }
                })
            }
            _ => false,
        }
    }
}

#[derive(Debug, Clone, Copy, Default, PartialEq, Serialize, Deserialize, JsonSchema, arbitrary::Arbitrary)]
#[serde(rename_all = "lowercase")]
#[schemars(rename = "functions.expression.ArrayInputSchemaType")]
pub enum ArrayInputSchemaType {
    #[default]
    Array,
}

/// Schema for an array input.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema, arbitrary::Arbitrary)]
#[serde(rename_all = "camelCase")]
#[schemars(rename = "functions.expression.ArrayInputSchema")]
pub struct ArrayInputSchema {
    pub r#type: ArrayInputSchemaType,
    /// Human-readable description of the array.
    #[serde(skip_serializing_if = "Option::is_none")]
    #[schemars(extend("omitempty" = true))]
    pub description: Option<String>,
    /// Minimum number of items required.
    #[serde(skip_serializing_if = "Option::is_none")]
    #[schemars(extend("omitempty" = true))]
    #[arbitrary(with = crate::arbitrary_util::arbitrary_option_u64)]
    pub min_items: Option<u64>,
    /// Maximum number of items allowed.
    #[serde(skip_serializing_if = "Option::is_none")]
    #[schemars(extend("omitempty" = true))]
    #[arbitrary(with = crate::arbitrary_util::arbitrary_option_u64)]
    pub max_items: Option<u64>,
    /// Schema for each item in the array.
    pub items: Box<InputSchema>,
}

impl ArrayInputSchema {
    /// Returns which media modalities are present in the item schema.
    pub fn modalities(&self) -> Modalities {
        self.items.modalities()
    }

    /// Validates that an input is an array matching this schema.
    pub fn validate_input(&self, input: &InputValue) -> bool {
        match input {
            InputValue::Array(array) => {
                if let Some(min_items) = self.min_items
                    && (array.len() as u64) < min_items
                {
                    false
                } else if let Some(max_items) = self.max_items
                    && (array.len() as u64) > max_items
                {
                    false
                } else {
                    array.iter().all(|item| self.items.validate_input(item))
                }
            }
            _ => false,
        }
    }
}

#[derive(Debug, Clone, Copy, Default, PartialEq, Serialize, Deserialize, JsonSchema, arbitrary::Arbitrary)]
#[serde(rename_all = "lowercase")]
#[schemars(rename = "functions.expression.StringInputSchemaType")]
pub enum StringInputSchemaType {
    #[default]
    String,
}

/// Schema for a string input.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema, arbitrary::Arbitrary)]
#[serde(rename_all = "camelCase")]
#[schemars(rename = "functions.expression.StringInputSchema")]
pub struct StringInputSchema {
    pub r#type: StringInputSchemaType,
    /// Human-readable description of the string.
    #[serde(skip_serializing_if = "Option::is_none")]
    #[schemars(extend("omitempty" = true))]
    pub description: Option<String>,
    /// If provided, the string must be one of these values.
    #[serde(skip_serializing_if = "Option::is_none")]
    #[schemars(extend("omitempty" = true))]
    pub r#enum: Option<Vec<String>>,
}

impl StringInputSchema {
    /// Validates that an input is a string matching this schema.
    pub fn validate_input(&self, input: &InputValue) -> bool {
        match input {
            InputValue::String(s) => {
                if let Some(r#enum) = &self.r#enum {
                    r#enum.contains(s)
                } else {
                    true
                }
            }
            _ => false,
        }
    }
}

#[derive(Debug, Clone, Copy, Default, PartialEq, Serialize, Deserialize, JsonSchema, arbitrary::Arbitrary)]
#[serde(rename_all = "lowercase")]
#[schemars(rename = "functions.expression.IntegerInputSchemaType")]
pub enum IntegerInputSchemaType {
    #[default]
    Integer,
}

/// Schema for an integer input.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema, arbitrary::Arbitrary)]
#[serde(rename_all = "camelCase")]
#[schemars(rename = "functions.expression.IntegerInputSchema")]
pub struct IntegerInputSchema {
    pub r#type: IntegerInputSchemaType,
    /// Human-readable description of the integer.
    #[serde(skip_serializing_if = "Option::is_none")]
    #[schemars(extend("omitempty" = true))]
    pub description: Option<String>,
    /// Minimum allowed value (inclusive).
    #[serde(skip_serializing_if = "Option::is_none")]
    #[schemars(extend("omitempty" = true))]
    #[arbitrary(with = crate::arbitrary_util::arbitrary_option_i64)]
    pub minimum: Option<i64>,
    /// Maximum allowed value (inclusive).
    #[serde(skip_serializing_if = "Option::is_none")]
    #[schemars(extend("omitempty" = true))]
    #[arbitrary(with = crate::arbitrary_util::arbitrary_option_i64)]
    pub maximum: Option<i64>,
}

impl IntegerInputSchema {
    /// Validates that an input is an integer matching this schema.
    pub fn validate_input(&self, input: &InputValue) -> bool {
        match input {
            InputValue::Integer(integer) => {
                if let Some(minimum) = self.minimum
                    && *integer < minimum
                {
                    false
                } else if let Some(maximum) = self.maximum
                    && *integer > maximum
                {
                    false
                } else {
                    true
                }
            }
            InputValue::Number(number)
                if number.is_finite() && number.fract() == 0.0 =>
            {
                let integer = *number as i64;
                if let Some(minimum) = self.minimum
                    && integer < minimum
                {
                    false
                } else if let Some(maximum) = self.maximum
                    && integer > maximum
                {
                    false
                } else {
                    true
                }
            }
            _ => false,
        }
    }
}

#[derive(Debug, Clone, Copy, Default, PartialEq, Serialize, Deserialize, JsonSchema, arbitrary::Arbitrary)]
#[serde(rename_all = "lowercase")]
#[schemars(rename = "functions.expression.NumberInputSchemaType")]
pub enum NumberInputSchemaType {
    #[default]
    Number,
}

/// Schema for a floating-point number input.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema, arbitrary::Arbitrary)]
#[serde(rename_all = "camelCase")]
#[schemars(rename = "functions.expression.NumberInputSchema")]
pub struct NumberInputSchema {
    pub r#type: NumberInputSchemaType,
    /// Human-readable description of the number.
    #[serde(skip_serializing_if = "Option::is_none")]
    #[schemars(extend("omitempty" = true))]
    pub description: Option<String>,
    /// Minimum allowed value (inclusive).
    #[serde(skip_serializing_if = "Option::is_none")]
    #[schemars(extend("omitempty" = true))]
    #[arbitrary(with = crate::arbitrary_util::arbitrary_option_f64)]
    pub minimum: Option<f64>,
    /// Maximum allowed value (inclusive).
    #[serde(skip_serializing_if = "Option::is_none")]
    #[schemars(extend("omitempty" = true))]
    #[arbitrary(with = crate::arbitrary_util::arbitrary_option_f64)]
    pub maximum: Option<f64>,
}

impl NumberInputSchema {
    /// Validates that an input is a number matching this schema.
    pub fn validate_input(&self, input: &InputValue) -> bool {
        match input {
            InputValue::Integer(integer) => {
                let number = *integer as f64;
                if let Some(minimum) = self.minimum
                    && number < minimum
                {
                    false
                } else if let Some(maximum) = self.maximum
                    && number > maximum
                {
                    false
                } else {
                    true
                }
            }
            InputValue::Number(number) => {
                if let Some(minimum) = self.minimum
                    && *number < minimum
                {
                    false
                } else if let Some(maximum) = self.maximum
                    && *number > maximum
                {
                    false
                } else {
                    true
                }
            }
            _ => false,
        }
    }
}

#[derive(Debug, Clone, Copy, Default, PartialEq, Serialize, Deserialize, JsonSchema, arbitrary::Arbitrary)]
#[serde(rename_all = "lowercase")]
#[schemars(rename = "functions.expression.BooleanInputSchemaType")]
pub enum BooleanInputSchemaType {
    #[default]
    Boolean,
}

/// Schema for a boolean input.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema, arbitrary::Arbitrary)]
#[serde(rename_all = "camelCase")]
#[schemars(rename = "functions.expression.BooleanInputSchema")]
pub struct BooleanInputSchema {
    pub r#type: BooleanInputSchemaType,
    /// Human-readable description of the boolean.
    #[serde(skip_serializing_if = "Option::is_none")]
    #[schemars(extend("omitempty" = true))]
    pub description: Option<String>,
}

impl BooleanInputSchema {
    /// Validates that an input is a boolean.
    pub fn validate_input(&self, input: &InputValue) -> bool {
        match input {
            InputValue::Boolean(_) => true,
            _ => false,
        }
    }
}

#[derive(Debug, Clone, Copy, Default, PartialEq, Serialize, Deserialize, JsonSchema, arbitrary::Arbitrary)]
#[serde(rename_all = "lowercase")]
#[schemars(rename = "functions.expression.ImageInputSchemaType")]
pub enum ImageInputSchemaType {
    #[default]
    Image,
}

/// Schema for an image input (URL or base64-encoded).
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema, arbitrary::Arbitrary)]
#[serde(rename_all = "camelCase")]
#[schemars(rename = "functions.expression.ImageInputSchema")]
pub struct ImageInputSchema {
    pub r#type: ImageInputSchemaType,
    /// Human-readable description of the expected image.
    #[serde(skip_serializing_if = "Option::is_none")]
    #[schemars(extend("omitempty" = true))]
    pub description: Option<String>,
}

impl ImageInputSchema {
    /// Validates that an input is an image.
    pub fn validate_input(&self, input: &InputValue) -> bool {
        match input {
            InputValue::RichContentPart(
                agent::completions::message::RichContentPart::ImageUrl {
                    ..
                },
            ) => true,
            _ => false,
        }
    }
}

#[derive(Debug, Clone, Copy, Default, PartialEq, Serialize, Deserialize, JsonSchema, arbitrary::Arbitrary)]
#[serde(rename_all = "lowercase")]
#[schemars(rename = "functions.expression.AudioInputSchemaType")]
pub enum AudioInputSchemaType {
    #[default]
    Audio,
}

/// Schema for an audio input.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema, arbitrary::Arbitrary)]
#[serde(rename_all = "camelCase")]
#[schemars(rename = "functions.expression.AudioInputSchema")]
pub struct AudioInputSchema {
    pub r#type: AudioInputSchemaType,
    /// Human-readable description of the expected audio.
    #[serde(skip_serializing_if = "Option::is_none")]
    #[schemars(extend("omitempty" = true))]
    pub description: Option<String>,
}

impl AudioInputSchema {
    /// Validates that an input is audio content.
    pub fn validate_input(&self, input: &InputValue) -> bool {
        match input {
            InputValue::RichContentPart(
                agent::completions::message::RichContentPart::InputAudio {
                    ..
                },
            ) => true,
            _ => false,
        }
    }
}

#[derive(Debug, Clone, Copy, Default, PartialEq, Serialize, Deserialize, JsonSchema, arbitrary::Arbitrary)]
#[serde(rename_all = "lowercase")]
#[schemars(rename = "functions.expression.VideoInputSchemaType")]
pub enum VideoInputSchemaType {
    #[default]
    Video,
}

/// Schema for a video input (URL or base64-encoded).
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema, arbitrary::Arbitrary)]
#[serde(rename_all = "camelCase")]
#[schemars(rename = "functions.expression.VideoInputSchema")]
pub struct VideoInputSchema {
    pub r#type: VideoInputSchemaType,
    /// Human-readable description of the expected video.
    #[serde(skip_serializing_if = "Option::is_none")]
    #[schemars(extend("omitempty" = true))]
    pub description: Option<String>,
}

impl VideoInputSchema {
    /// Validates that an input is video content.
    pub fn validate_input(&self, input: &InputValue) -> bool {
        match input {
            InputValue::RichContentPart(
                agent::completions::message::RichContentPart::InputVideo {
                    ..
                },
            ) => true,
            InputValue::RichContentPart(
                agent::completions::message::RichContentPart::VideoUrl {
                    ..
                },
            ) => true,
            _ => false,
        }
    }
}

#[derive(Debug, Clone, Copy, Default, PartialEq, Serialize, Deserialize, JsonSchema, arbitrary::Arbitrary)]
#[serde(rename_all = "lowercase")]
#[schemars(rename = "functions.expression.FileInputSchemaType")]
pub enum FileInputSchemaType {
    #[default]
    File,
}

/// Schema for a file input.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema, arbitrary::Arbitrary)]
#[serde(rename_all = "camelCase")]
#[schemars(rename = "functions.expression.FileInputSchema")]
pub struct FileInputSchema {
    pub r#type: FileInputSchemaType,
    /// Human-readable description of the expected file.
    #[serde(skip_serializing_if = "Option::is_none")]
    #[schemars(extend("omitempty" = true))]
    pub description: Option<String>,
}

impl FileInputSchema {
    /// Validates that an input is a file.
    pub fn validate_input(&self, input: &InputValue) -> bool {
        match input {
            InputValue::RichContentPart(
                agent::completions::message::RichContentPart::File { .. },
            ) => true,
            _ => false,
        }
    }
}