acorn-lib 0.1.59

ACORN library
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
//! Module for interacting with OpenAI-compatible interfaces
//!
//! See <https://platform.openai.com/docs/api-reference> for more information
//!
use crate::io::api::{ApiResult, Configuration, Endpoint, Fallback, Param, Params, RemoteResource};
use crate::param;
use crate::prelude::var;
use crate::util::Label;
use bon::Builder;
use color_eyre::eyre::eyre;
use dotenvy;
use serde::{Deserialize, Serialize};
use tracing::debug;

/// Raw OpenAI chat completion response payload.
///
/// The OpenAPI schema for chat completions is broad and evolves quickly,
/// so the baseline implementation preserves the full JSON document.
pub type ChatCompletionListResponse = serde_json::Value;
/// Raw OpenAI chat completion response payload.
///
/// The OpenAPI schema for chat completions is broad and evolves quickly,
/// so the baseline implementation preserves the full JSON document.
pub type ChatCompletionResponse = serde_json::Value;
/// Raw OpenAI response payload for chat completion message lists.
///
/// The OpenAPI schema for chat completion messages is broad and evolves quickly,
/// so the baseline implementation preserves the full JSON document.
pub type ChatCompletionMessagesResponse = serde_json::Value;
/// Raw OpenAI responses API payload.
///
/// The OpenAPI schema for responses is broad and evolves quickly,
/// so the baseline implementation preserves the full JSON document.
pub type CreateResponseOutput = serde_json::Value;
/// Raw OpenAI responses deletion payload.
///
/// The OpenAPI schema for response deletion is broad and evolves quickly,
/// so the baseline implementation preserves the full JSON document.
pub type DeleteResponseOutput = serde_json::Value;
/// Raw OpenAI model deletion payload.
///
/// The OpenAPI schema for model deletion is broad and evolves quickly,
/// so the baseline implementation preserves the full JSON document.
pub type ModelDeleteOutput = serde_json::Value;
/// Raw OpenAI response input item list payload.
///
/// The OpenAPI schema for response input items is broad and evolves quickly,
/// so the baseline implementation preserves the full JSON document.
pub type ResponseInputItemsOutput = serde_json::Value;
/// OpenAI API error payload
///
/// Matches `#/components/schemas/Error` from the OpenAI OpenAPI specification.
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct Error {
    /// Stable error code, when available
    pub code: Option<String>,
    /// Human-readable error message
    pub message: String,
    /// Parameter associated with this error, when applicable
    pub param: Option<String>,
    /// Error type identifier
    #[serde(rename = "type")]
    pub error_type: String,
}
/// OpenAI API error response
///
/// Matches `#/components/schemas/ErrorResponse` from the OpenAI OpenAPI specification.
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct ErrorResponse {
    /// Wrapped error details
    pub error: Error,
}
/// OpenAI list models response
///
/// Matches baseline fields from `#/components/schemas/ListModelsResponse`.
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct ListModelsResponse {
    /// Object type, expected to be `list`
    pub object: String,
    /// Collection of models available to the caller
    pub data: Vec<Model>,
}
/// OpenAI model descriptor
///
/// Matches baseline fields from `#/components/schemas/Model`.
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct Model {
    /// Model identifier (for example, `gpt-5.4`)
    pub id: String,
    /// Object type, typically `model`
    pub object: String,
    /// Unix timestamp (seconds) when model metadata was created
    pub created: i64,
    /// Owning organization
    pub owned_by: String,
}
/// OpenAI API options
///
/// Configuration options used across OpenAI API operations.
#[derive(Builder, Clone, Debug)]
#[builder(start_fn = with_token, on(String, into))]
pub struct Options {
    /// Bearer token for authentication
    #[builder(start_fn)]
    pub token: String,
    /// Request body payload for POST requests
    pub body: Option<String>,
    /// OpenAI API domain (defaults to `api.openai.com`)
    #[builder(default = String::from("api.openai.com"))]
    pub domain: String,
    /// Optional model identifier for model retrieval
    pub identifier: Option<String>,
    /// Optional cursor for paginated list APIs
    pub after: Option<String>,
    /// Optional page size for list APIs
    pub limit: Option<u32>,
    /// Optional ordering value for list APIs (for example, `asc` or `desc`)
    pub order: Option<String>,
    /// Optional model filter used by selected list APIs
    pub model: Option<String>,
    /// Custom API parameters to include in every request
    #[builder(default = vec![])]
    pub custom_params: Vec<Param>,
}
impl Configuration for Options {
    /// Build options from OpenAI-related environment variables.
    /// - `OPENAI_API_KEY` -> `token` (defaults to empty string when unset)
    /// - `OPENAI_SERVER_HOST` -> `domain` (defaults to api.openai.com when unset)
    fn from_env() -> Self {
        if let Err(why) = dotenvy::from_filename(".env") {
            debug!("=> {} Load .env — {why}", Label::skip());
        }
        Self {
            token: var("OPENAI_API_KEY").unwrap_or_default(),
            body: None,
            domain: var("OPENAI_SERVER_HOST").unwrap_or_else(|_| String::from("api.openai.com")),
            identifier: None,
            after: None,
            limit: None,
            order: None,
            model: None,
            custom_params: vec![],
        }
    }
    /// Return a copy of options with request body payload set
    fn with_body(self, value: impl Into<String>) -> Self {
        Self {
            body: Some(value.into()),
            ..self
        }
    }
    /// Return a copy of options with OpenAI server domain set
    fn with_domain(self, value: impl Into<String>) -> Self {
        Self {
            domain: value.into(),
            ..self
        }
    }
    /// Return a copy of options with model identifier set
    fn with_identifier(self, value: impl Into<String>) -> Self {
        Self {
            identifier: Some(value.into()),
            ..self
        }
    }
    /// Return the authentication token
    fn token(&self) -> &str {
        &self.token
    }
    /// Return the OpenAI server domain
    fn domain(&self) -> &str {
        &self.domain
    }
    /// Return the optional model identifier
    fn identifier(&self) -> Option<&str> {
        self.identifier.as_deref()
    }
    /// Return a copy of options with custom API parameters set
    fn with_params(self, params: Vec<Param>) -> Self {
        Self {
            custom_params: params,
            ..self
        }
    }
    /// Return any custom API parameters
    fn params(&self) -> &[Param] {
        &self.custom_params
    }
}
impl Options {
    /// Return a copy of options with list cursor set
    pub fn with_after(self, value: impl Into<String>) -> Self {
        Self {
            after: Some(value.into()),
            ..self
        }
    }
    /// Return a copy of options with page size set
    pub fn with_limit(self, value: u32) -> Self {
        Self { limit: Some(value), ..self }
    }
    /// Return a copy of options with model filter set
    pub fn with_model(self, value: impl Into<String>) -> Self {
        Self {
            model: Some(value.into()),
            ..self
        }
    }
    /// Return a copy of options with order value set
    pub fn with_order(self, value: impl Into<String>) -> Self {
        Self {
            order: Some(value.into()),
            ..self
        }
    }
}
/// Create a chat completion response via `POST /chat/completions`.
pub async fn chat_completion(options: &Options) -> ApiResult<ChatCompletionResponse> {
    let template = "openai::api";
    let action = "chat-completion";
    match Endpoint::from_template(template).map(|e| e.with_domain(options.domain())) {
        | Ok(endpoint) => match &options.body {
            | Some(value) if !value.is_empty() => {
                let params = Params::new()
                    .with_auth(options.token(), None)
                    .with(param!(Body, value.as_str()))
                    .with_custom(options.params())
                    .build();
                let response = endpoint.invoke(action, Some(params)).await;
                endpoint.handle_or::<ChatCompletionResponse, Fallback<ErrorResponse>>(response)
            }
            | Some(_) | None => Err(eyre!("OpenAI chat completion request body is required")),
        },
        | Err(why) => Err(why),
    }
}
/// List stored chat completions via `GET /chat/completions`.
pub async fn chat_completion_list(options: &Options) -> ApiResult<ChatCompletionListResponse> {
    let template = "openai::api";
    let action = "chat-completion::list";
    match Endpoint::from_template(template).map(|e| e.with_domain(options.domain())) {
        | Ok(endpoint) => {
            let params = Params::new()
                .with_auth(options.token(), None)
                .with_keyvalue("after", options.after.as_deref().filter(|v| !v.is_empty()))
                .with_keyvalue("limit", options.limit.map(|v| v.to_string()).as_deref())
                .with_keyvalue("order", options.order.as_deref().filter(|v| !v.is_empty()))
                .with_keyvalue("model", options.model.as_deref().filter(|v| !v.is_empty()))
                .with_custom(options.params())
                .build();
            let response = endpoint.invoke(action, Some(params)).await;
            endpoint.handle_or::<ChatCompletionListResponse, Fallback<ErrorResponse>>(response)
        }
        | Err(why) => Err(why),
    }
}
/// Delete a stored chat completion by identifier via `DELETE /chat/completions/{completion_id}`.
pub async fn chat_completion_delete(options: &Options) -> ApiResult<DeleteResponseOutput> {
    let template = "openai::api";
    let action = "chat-completion::delete";
    match Endpoint::from_template(template).map(|e| e.with_domain(options.domain())) {
        | Ok(endpoint) => match options.identifier() {
            | Some(value) if !value.is_empty() => {
                let params = Params::from_config(options).with_custom(options.params()).build();
                let response = endpoint.invoke(action, Some(params)).await;
                endpoint.handle_or::<DeleteResponseOutput, Fallback<ErrorResponse>>(response)
            }
            | Some(_) | None => Err(eyre!("OpenAI chat completion identifier is required")),
        },
        | Err(why) => Err(why),
    }
}
/// List stored chat completion messages by completion identifier.
pub async fn chat_completion_messages(options: &Options) -> ApiResult<ChatCompletionMessagesResponse> {
    let template = "openai::api";
    let action = "chat-completion::messages";
    match Endpoint::from_template(template).map(|e| e.with_domain(options.domain())) {
        | Ok(endpoint) => match &options.identifier {
            | Some(value) if !value.is_empty() => {
                let params = Params::new()
                    .with_auth(options.token(), None)
                    .with_template("identifier", Some(value))
                    .with_keyvalue("after", options.after.as_deref().filter(|v| !v.is_empty()))
                    .with_keyvalue("limit", options.limit.map(|v| v.to_string()).as_deref())
                    .with_keyvalue("order", options.order.as_deref().filter(|v| !v.is_empty()))
                    .with_custom(options.params())
                    .build();
                let response = endpoint.invoke(action, Some(params)).await;
                endpoint.handle_or::<ChatCompletionMessagesResponse, Fallback<ErrorResponse>>(response)
            }
            | Some(_) | None => Err(eyre!("OpenAI chat completion identifier is required")),
        },
        | Err(why) => Err(why),
    }
}
/// Retrieve a stored chat completion by identifier via `GET /chat/completions/{completion_id}`.
pub async fn chat_completion_retrieve(options: &Options) -> ApiResult<ChatCompletionResponse> {
    let template = "openai::api";
    let action = "chat-completion::retrieve";
    match Endpoint::from_template(template).map(|e| e.with_domain(options.domain())) {
        | Ok(endpoint) => match options.identifier() {
            | Some(value) if !value.is_empty() => {
                let params = Params::from_config(options).with_custom(options.params()).build();
                let response = endpoint.invoke(action, Some(params)).await;
                endpoint.handle_or::<ChatCompletionResponse, Fallback<ErrorResponse>>(response)
            }
            | Some(_) | None => Err(eyre!("OpenAI chat completion identifier is required")),
        },
        | Err(why) => Err(why),
    }
}
/// Update a stored chat completion by identifier via `POST /chat/completions/{completion_id}`.
pub async fn chat_completion_update(options: &Options) -> ApiResult<ChatCompletionResponse> {
    let template = "openai::api";
    let action = "chat-completion::update";
    match Endpoint::from_template(template).map(|e| e.with_domain(options.domain())) {
        | Ok(endpoint) => match (&options.identifier, &options.body) {
            | (Some(id), Some(value)) if !id.is_empty() && !value.is_empty() => {
                let params = Params::new()
                    .with_auth(options.token(), None)
                    .with_template("identifier", Some(id))
                    .with(param!(Body, value.as_str()))
                    .with_custom(options.params())
                    .build();
                let response = endpoint.invoke(action, Some(params)).await;
                endpoint.handle_or::<ChatCompletionResponse, Fallback<ErrorResponse>>(response)
            }
            | (Some(_), Some(_)) => Err(eyre!("OpenAI chat completion identifier and body are required")),
            | _ => Err(eyre!("OpenAI chat completion identifier and body are required")),
        },
        | Err(why) => Err(why),
    }
}
/// Retrieve details for a specific model identifier.
pub async fn model(options: &Options) -> ApiResult<Model> {
    let template = "openai::api";
    let action = "model";
    match Endpoint::from_template(template).map(|e| e.with_domain(options.domain())) {
        | Ok(endpoint) => match options.identifier() {
            | Some(value) if !value.is_empty() => {
                let params = Params::from_config(options).with_custom(options.params()).build();
                let response = endpoint.invoke(action, Some(params)).await;
                endpoint.handle_or::<Model, Fallback<ErrorResponse>>(response)
            }
            | Some(_) | None => Err(eyre!("OpenAI model identifier is required")),
        },
        | Err(why) => Err(why),
    }
}
/// Delete a model by identifier via `DELETE /models/{model}`.
pub async fn model_delete(options: &Options) -> ApiResult<ModelDeleteOutput> {
    let template = "openai::api";
    let action = "model::delete";
    match Endpoint::from_template(template).map(|e| e.with_domain(options.domain())) {
        | Ok(endpoint) => match options.identifier() {
            | Some(value) if !value.is_empty() => {
                let params = Params::from_config(options).with_custom(options.params()).build();
                let response = endpoint.invoke(action, Some(params)).await;
                endpoint.handle_or::<ModelDeleteOutput, Fallback<ErrorResponse>>(response)
            }
            | Some(_) | None => Err(eyre!("OpenAI model identifier is required")),
        },
        | Err(why) => Err(why),
    }
}
/// Retrieve all models available to the authenticated caller.
pub async fn models(options: &Options) -> ApiResult<ListModelsResponse> {
    let template = "openai::api";
    let action = "models";
    match Endpoint::from_template(template).map(|e| e.with_domain(options.domain())) {
        | Ok(endpoint) => {
            let params = Params::from_config(options).with_custom(options.params()).build();
            let response = endpoint.invoke(action, Some(params)).await;
            endpoint.handle_or::<ListModelsResponse, Fallback<ErrorResponse>>(response)
        }
        | Err(why) => Err(why),
    }
}
/// Create a response via `POST /responses`.
pub async fn response(options: &Options) -> ApiResult<CreateResponseOutput> {
    let template = "openai::api";
    let action = "response";
    match Endpoint::from_template(template).map(|e| e.with_domain(options.domain())) {
        | Ok(endpoint) => match &options.body {
            | Some(value) if !value.is_empty() => {
                let params = Params::new()
                    .with_auth(options.token(), None)
                    .with(param!(Body, value.as_str()))
                    .with_custom(options.params())
                    .build();
                let response = endpoint.invoke(action, Some(params)).await;
                endpoint.handle_or::<CreateResponseOutput, Fallback<ErrorResponse>>(response)
            }
            | Some(_) | None => Err(eyre!("OpenAI responses request body is required")),
        },
        | Err(why) => Err(why),
    }
}
/// Delete a response by identifier via `DELETE /responses/{response_id}`.
pub async fn response_delete(options: &Options) -> ApiResult<DeleteResponseOutput> {
    let template = "openai::api";
    let action = "response::delete";
    match Endpoint::from_template(template).map(|e| e.with_domain(options.domain())) {
        | Ok(endpoint) => match options.identifier() {
            | Some(value) if !value.is_empty() => {
                let params = Params::from_config(options).with_custom(options.params()).build();
                let response = endpoint.invoke(action, Some(params)).await;
                endpoint.handle_or::<DeleteResponseOutput, Fallback<ErrorResponse>>(response)
            }
            | Some(_) | None => Err(eyre!("OpenAI response identifier is required")),
        },
        | Err(why) => Err(why),
    }
}
/// List input items for a response by identifier via `GET /responses/{response_id}/input_items`.
pub async fn response_input_items(options: &Options) -> ApiResult<ResponseInputItemsOutput> {
    let template = "openai::api";
    let action = "response::input-items";
    match Endpoint::from_template(template).map(|e| e.with_domain(options.domain())) {
        | Ok(endpoint) => match &options.identifier {
            | Some(value) if !value.is_empty() => {
                let params = Params::new()
                    .with_auth(options.token(), None)
                    .with_template("identifier", Some(value))
                    .with_keyvalue("after", options.after.as_deref().filter(|v| !v.is_empty()))
                    .with_keyvalue("limit", options.limit.map(|v| v.to_string()).as_deref())
                    .with_keyvalue("order", options.order.as_deref().filter(|v| !v.is_empty()))
                    .with_custom(options.params())
                    .build();
                let response = endpoint.invoke(action, Some(params)).await;
                endpoint.handle_or::<ResponseInputItemsOutput, Fallback<ErrorResponse>>(response)
            }
            | Some(_) | None => Err(eyre!("OpenAI response identifier is required")),
        },
        | Err(why) => Err(why),
    }
}
/// Cancel a response by identifier via `POST /responses/{response_id}/cancel`.
pub async fn response_cancel(options: &Options) -> ApiResult<CreateResponseOutput> {
    let template = "openai::api";
    let action = "response::cancel";
    match Endpoint::from_template(template).map(|e| e.with_domain(options.domain())) {
        | Ok(endpoint) => match options.identifier() {
            | Some(value) if !value.is_empty() => {
                let params = Params::from_config(options).with_custom(options.params()).build();
                let response = endpoint.invoke(action, Some(params)).await;
                endpoint.handle_or::<CreateResponseOutput, Fallback<ErrorResponse>>(response)
            }
            | Some(_) | None => Err(eyre!("OpenAI response identifier is required")),
        },
        | Err(why) => Err(why),
    }
}
/// Retrieve a response by identifier via `GET /responses/{response_id}`.
pub async fn response_retrieve(options: &Options) -> ApiResult<CreateResponseOutput> {
    let template = "openai::api";
    let action = "response::retrieve";
    match Endpoint::from_template(template).map(|e| e.with_domain(options.domain())) {
        | Ok(endpoint) => match options.identifier() {
            | Some(value) if !value.is_empty() => {
                let params = Params::from_config(options).with_custom(options.params()).build();
                let response = endpoint.invoke(action, Some(params)).await;
                endpoint.handle_or::<CreateResponseOutput, Fallback<ErrorResponse>>(response)
            }
            | Some(_) | None => Err(eyre!("OpenAI response identifier is required")),
        },
        | Err(why) => Err(why),
    }
}