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
// SPDX-License-Identifier: Apache-2.0
// Copyright (C) 2025 Michael Dippery <michael@monkey-robot.com>
//! API clients for various AI services.
use HTTPError;
use Debug;
/// A client for an AI service's API.
/// A request to an AI service's API.
///
/// This trait follows a "builder" pattern where elements of the request
/// are built up over time.
///
/// Assuming you have enum called `Model` that specifies available AI models
/// for your service, and a `ConcreteAPIRequest` struct that implements
/// `APIRequest`, you would create an API request like this:
///
/// ```
/// # use usaidwat::ai::client::{AIModel, APIRequest};
/// #
/// # #[derive(Clone, Copy, Debug, Default)]
/// # pub enum Model {
/// # #[default]
/// # AIModel,
/// # }
/// #
/// # impl AIModel for Model {
/// # fn flagship() -> Self {
/// # Model::AIModel
/// # }
/// #
/// # fn best() -> Self {
/// # Model::AIModel
/// # }
/// #
/// # fn fastest() -> Self {
/// # Model::AIModel
/// # }
/// #
/// # fn cheapest() -> Self {
/// # Model::AIModel
/// # }
/// # }
/// #
/// # #[derive(Default)]
/// # pub struct ConcreteAPIRequest;
/// #
/// # impl APIRequest for ConcreteAPIRequest {
/// # type Model = Model;
/// # fn model(self, model: Self::Model) -> Self { self }
/// # fn instructions(self, instructions: impl Into<String>) -> Self { self }
/// # fn input(self, input: impl Into<String>) -> Self { self }
/// # }
/// #
/// let request = ConcreteAPIRequest::default()
/// .model(Model::AIModel)
/// .instructions("Be really snarky.")
/// .input("How do I make an API request?");
/// ```
/// A response from an AI service's API.
/// An API result that includes the response if successful or an error
/// if unsuccessful.
pub type APIResult<T> = ;
/// An API error.
pub type APIError = HTTPError;
/// An AI model specification.