api_openai 0.3.0

OpenAI's API for accessing large language models (LLMs).
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
//! Streaming Control Module
//!
//! This module provides stateless streaming control utilities for `OpenAI` API responses.
//! Following the "Thin Client, Rich API" principle, this module offers control patterns
//! and cancellation tokens without maintaining persistent stream state.

mod private
{
  use std::
  {
    sync ::Arc,
    time ::Instant,
  };
  use core::
  {
    sync ::atomic::{ AtomicBool, Ordering },
    time ::Duration,
  };
  use serde::{ Deserialize, Serialize };
  use tokio::{ sync::mpsc, time };

  /// Stream control state for tracking operations
  #[ derive( Debug, Clone, PartialEq, Serialize, Deserialize ) ]
  pub enum StreamState
  {
    /// Stream is actively running
    Running,
    /// Stream is paused (buffering)
    Paused,
    /// Stream is cancelled
    Cancelled,
    /// Stream completed normally
    Completed,
    /// Stream encountered an error
    Error( String ),
  }

  /// Cancellation token for controlling streaming operations
  #[ derive( Debug, Clone ) ]
  pub struct CancellationToken
  {
    /// Internal cancellation flag
    cancelled : Arc< AtomicBool >,
  }

  impl CancellationToken
  {
    /// Create a new cancellation token
    #[ inline ]
    #[ must_use ]
    pub fn new() -> Self
    {
      Self
      {
        cancelled : Arc::new( AtomicBool::new( false ) ),
      }
    }

    /// Cancel the operation
    #[ inline ]
    pub fn cancel( &self )
    {
      self.cancelled.store( true, Ordering::SeqCst );
    }

    /// Check if operation is cancelled
    #[ inline ]
    #[ must_use ]
    pub fn is_cancelled( &self ) -> bool
    {
      self.cancelled.load( Ordering::SeqCst )
    }

    /// Wait for cancellation or timeout
    #[ inline ]
    pub async fn wait_for_cancellation( &self, timeout : Duration ) -> bool
    {
      let start = Instant::now();
      while start.elapsed() < timeout
      {
        if self.is_cancelled()
        {
          return true;
        }
        time ::sleep( Duration::from_millis( 10 ) ).await;
      }
      false
    }
  }

  impl Default for CancellationToken
  {
    #[ inline ]
    fn default() -> Self
    {
      Self::new()
    }
  }

  /// Stream control handle for managing streaming operations
  #[ derive( Debug ) ]
  pub struct StreamControl
  {
    /// Current state of the stream
    state : StreamState,
    /// Cancellation token
    token : CancellationToken,
    /// Creation timestamp
    created_at : Instant,
  }

  impl StreamControl
  {
    /// Create a new stream control handle
    #[ inline ]
    #[ must_use ]
    pub fn new() -> Self
    {
      Self
      {
        state : StreamState::Running,
        token : CancellationToken::new(),
        created_at : Instant::now(),
      }
    }

    /// Get current stream state
    #[ inline ]
    #[ must_use ]
    pub fn state( &self ) -> &StreamState
    {
      &self.state
    }

    /// Get cancellation token
    #[ inline ]
    #[ must_use ]
    pub fn cancellation_token( &self ) -> &CancellationToken
    {
      &self.token
    }

    /// Get elapsed time since creation
    #[ inline ]
    #[ must_use ]
    pub fn elapsed( &self ) -> Duration
    {
      self.created_at.elapsed()
    }

    /// Update stream state
    #[ inline ]
    pub fn set_state( &mut self, state : StreamState )
    {
      self.state = state;
    }

    /// Cancel the stream
    #[ inline ]
    pub fn cancel( &mut self )
    {
      self.token.cancel();
      self.state = StreamState::Cancelled;
    }

    /// Check if stream is active (not cancelled, completed, or errored)
    #[ inline ]
    #[ must_use ]
    pub fn is_active( &self ) -> bool
    {
      matches!( self.state, StreamState::Running | StreamState::Paused )
    }
  }

  impl Default for StreamControl
  {
    #[ inline ]
    fn default() -> Self
    {
      Self::new()
    }
  }

  /// Configuration for streaming control behavior
  #[ derive( Debug, Clone, Serialize, Deserialize ) ]
  pub struct StreamControlConfig
  {
    /// Maximum pause duration before automatic timeout
    pub max_pause_duration : Duration,
    /// Buffer size for paused streams
    pub pause_buffer_size : usize,
    /// Timeout for control operations
    pub control_timeout : Duration,
  }

  impl Default for StreamControlConfig
  {
    #[ inline ]
    fn default() -> Self
    {
      Self
      {
        max_pause_duration : Duration::from_secs( 300 ), // 5 minutes
        pause_buffer_size : 1024 * 1024, // 1MB
        control_timeout : Duration::from_secs( 5 ),
      }
    }
  }

  /// Stream control utilities
  #[ derive( Debug ) ]
  pub struct StreamControlManager;

  impl StreamControlManager
  {
    /// Create a controlled stream processing function
    /// This returns a function that can process stream items with control
    #[ inline ]
    pub fn create_controlled_processor< T >(
      control : StreamControl,
    ) -> impl Fn( T ) -> Option< T >
    where
      T : Send + 'static,
    {
      move | item : T | -> Option< T >
      {
        // Check cancellation before processing
        if control.token.is_cancelled()
        {
          return None;
        }

        // For stateless operation, we process immediately
        // In a real streaming scenario, this would integrate with the actual stream
        Some( item )
      }
    }

    /// Create a cancellable async operation
    ///
    /// # Errors
    ///
    /// Returns an error if the operation is cancelled.
    #[ inline ]
    pub async fn with_cancellation< T, F, Fut >(
      token : CancellationToken,
      operation : F,
    ) -> Result< T, &'static str >
    where
      F : FnOnce() -> Fut,
      Fut : core::future::Future< Output = T >,
    {
      let operation_future = operation();

      tokio ::select!
      {
        result = operation_future =>
        {
          if token.is_cancelled()
          {
            Err( "Operation was cancelled" )
          }
          else
          {
            Ok( result )
          }
        }
        () = Self::wait_for_cancellation( &token ) =>
        {
          Err( "Operation was cancelled" )
        }
      }
    }

    /// Wait for cancellation token to be triggered
    async fn wait_for_cancellation( token : &CancellationToken )
    {
      while !token.is_cancelled()
      {
        time ::sleep( Duration::from_millis( 10 ) ).await;
      }
    }

    /// Create a timeout-based cancellation token
    #[ inline ]
    #[ must_use ]
    pub fn create_timeout_token( timeout : Duration ) -> CancellationToken
    {
      let token = CancellationToken::new();
      let token_clone = token.clone();

      tokio ::spawn( async move
      {
        time ::sleep( timeout ).await;
        token_clone.cancel();
      });

      token
    }

    /// Combine multiple cancellation tokens (any cancellation triggers all)
    #[ inline ]
    #[ must_use ]
    pub fn combine_tokens( tokens : Vec< CancellationToken > ) -> CancellationToken
    {
      let combined = CancellationToken::new();
      let combined_clone = combined.clone();

      tokio ::spawn( async move
      {
        loop
        {
          if tokens.iter().any( CancellationToken::is_cancelled )
          {
            combined_clone.cancel();
            break;
          }
          time ::sleep( Duration::from_millis( 10 ) ).await;
        }
      });

      combined
    }

    /// Create a manual control channel for external control
    #[ inline ]
    #[ must_use ]
    pub fn create_control_channel() -> ( StreamControlSender, StreamControlReceiver )
    {
      let ( tx, rx ) = mpsc::unbounded_channel();
      ( StreamControlSender { sender : tx }, StreamControlReceiver { receiver : rx } )
    }
  }

  /// Sender for stream control commands
  #[ derive( Debug ) ]
  pub struct StreamControlSender
  {
    sender : mpsc::UnboundedSender< StreamControlCommand >,
  }

  impl StreamControlSender
  {
    /// Send a pause command
    ///
    /// # Errors
    ///
    /// Returns an error if the command cannot be sent.
    #[ inline ]
    pub fn pause( &self ) -> Result< (), &'static str >
    {
      self.sender.send( StreamControlCommand::Pause )
        .map_err( | _ | "Failed to send pause command" )
    }

    /// Send a resume command
    ///
    /// # Errors
    ///
    /// Returns an error if the command cannot be sent.
    #[ inline ]
    pub fn resume( &self ) -> Result< (), &'static str >
    {
      self.sender.send( StreamControlCommand::Resume )
        .map_err( | _ | "Failed to send resume command" )
    }

    /// Send a cancel command
    ///
    /// # Errors
    ///
    /// Returns an error if the command cannot be sent.
    #[ inline ]
    pub fn cancel( &self ) -> Result< (), &'static str >
    {
      self.sender.send( StreamControlCommand::Cancel )
        .map_err( | _ | "Failed to send cancel command" )
    }
  }

  /// Receiver for stream control commands
  #[ derive( Debug ) ]
  pub struct StreamControlReceiver
  {
    receiver : mpsc::UnboundedReceiver< StreamControlCommand >,
  }

  impl StreamControlReceiver
  {
    /// Try to receive a control command (non-blocking)
    #[ inline ]
    pub fn try_recv( &mut self ) -> Option< StreamControlCommand >
    {
      self.receiver.try_recv().ok()
    }

    /// Receive next control command (blocking)
    #[ inline ]
    pub async fn recv( &mut self ) -> Option< StreamControlCommand >
    {
      self.receiver.recv().await
    }
  }

  /// Commands for controlling stream operations
  #[ derive( Debug, Clone, PartialEq ) ]
  pub enum StreamControlCommand
  {
    /// Pause the stream
    Pause,
    /// Resume the stream
    Resume,
    /// Cancel the stream
    Cancel,
  }
}

crate ::mod_interface!
{
  exposed use private::StreamState;
  exposed use private::CancellationToken;
  exposed use private::StreamControl;
  exposed use private::StreamControlConfig;
  exposed use private::StreamControlManager;
  exposed use private::StreamControlSender;
  exposed use private::StreamControlReceiver;
  exposed use private::StreamControlCommand;
}