api_xai 0.3.0

X.AI Grok API client 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
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
mod private
{
  use std::sync::{ Arc, Mutex };
  use std::time::{ Duration, Instant };
  use crate::error::{ XaiError, Result };

  /// Circuit breaker states.
  ///
  /// The circuit breaker transitions between states based on success/failure patterns:
  /// - **Closed**: Normal operation, requests pass through
  /// - **Open**: Too many failures, requests rejected immediately
  /// - **`HalfOpen`**: Testing recovery, limited requests allowed
  #[ derive( Debug, Clone, Copy, PartialEq, Eq ) ]
  pub enum CircuitState
  {
    /// Circuit is closed, requests pass through normally.
    Closed,

    /// Circuit is open, requests are rejected immediately.
    Open,

    /// Circuit is testing recovery, allowing limited requests.
    HalfOpen,
  }

  /// Circuit breaker configuration.
  ///
  /// Configures the thresholds and timeouts for circuit breaker behavior.
  ///
  /// # Examples
  ///
  /// ```
  /// use api_xai::CircuitBreakerConfig;
  /// use std::time::Duration;
  ///
  /// let config = CircuitBreakerConfig::default()
  ///   .with_failure_threshold( 5 )
  ///   .with_timeout( Duration::from_secs( 30 ) )
  ///   .with_success_threshold( 2 );
  /// ```
  #[ derive( Debug, Clone ) ]
  pub struct CircuitBreakerConfig
  {
    /// Number of consecutive failures before opening circuit.
    pub failure_threshold : usize,

    /// Duration to wait before moving from `Open` to `HalfOpen`.
    pub timeout : Duration,

    /// Number of consecutive successes in `HalfOpen` before closing.
    pub success_threshold : usize,
  }

  impl Default for CircuitBreakerConfig
  {
    fn default() -> Self
    {
      Self
      {
        failure_threshold : 5,
        timeout : Duration::from_secs( 30 ),
        success_threshold : 2,
      }
    }
  }

  impl CircuitBreakerConfig
  {
    /// Sets the failure threshold.
    ///
    /// Number of consecutive failures before the circuit opens.
    #[ must_use ]
    pub fn with_failure_threshold( mut self, threshold : usize ) -> Self
    {
      self.failure_threshold = threshold;
      self
    }

    /// Sets the timeout duration.
    ///
    /// Time to wait before transitioning from `Open` to `HalfOpen`.
    #[ must_use ]
    pub fn with_timeout( mut self, timeout : Duration ) -> Self
    {
      self.timeout = timeout;
      self
    }

    /// Sets the success threshold.
    ///
    /// Number of consecutive successes in `HalfOpen` before closing circuit.
    #[ must_use ]
    pub fn with_success_threshold( mut self, threshold : usize ) -> Self
    {
      self.success_threshold = threshold;
      self
    }
  }

  /// Circuit breaker for protecting against cascading failures.
  ///
  /// Monitors request failures and temporarily blocks requests when failure
  /// rate exceeds thresholds, preventing resource exhaustion.
  ///
  /// # State Transitions
  ///
  /// ```text
  /// Closed --[failures >= threshold]--> Open
  /// Open --[timeout elapsed]--> HalfOpen
  /// HalfOpen --[success]--> Closed
  /// HalfOpen --[failure]--> Open
  /// ```
  ///
  /// # Examples
  ///
  /// ```
  /// use api_xai::{ CircuitBreaker, CircuitBreakerConfig };
  ///
  /// let breaker = CircuitBreaker::new( CircuitBreakerConfig::default() );
  ///
  /// // Check if request is allowed
  /// if breaker.is_request_allowed() {
  ///   // Execute request
  ///   match perform_request() {
  ///     Ok( result ) => {
  ///       breaker.record_success();
  ///       // Use result
  ///     }
  ///     Err( e ) => {
  ///       breaker.record_failure();
  ///       // Handle error
  ///     }
  ///   }
  /// }
  ///
  /// # fn perform_request() -> Result< (), Box< dyn std::error::Error > > { Ok( () ) }
  /// ```
  #[ derive( Debug, Clone ) ]
  pub struct CircuitBreaker
  {
    config : CircuitBreakerConfig,
    state : Arc< Mutex< CircuitBreakerState > >,
  }

  #[ derive( Debug ) ]
  struct CircuitBreakerState
  {
    current_state : CircuitState,
    failure_count : usize,
    success_count : usize,
    last_failure_time : Option< Instant >,
  }

  impl CircuitBreaker
  {
    /// Creates a new circuit breaker with the given configuration.
    ///
    /// # Examples
    ///
    /// ```
    /// use api_xai::{ CircuitBreaker, CircuitBreakerConfig };
    ///
    /// let breaker = CircuitBreaker::new( CircuitBreakerConfig::default() );
    /// ```
    pub fn new( config : CircuitBreakerConfig ) -> Self
    {
      Self
      {
        config,
        state : Arc::new( Mutex::new( CircuitBreakerState
        {
          current_state : CircuitState::Closed,
          failure_count : 0,
          success_count : 0,
          last_failure_time : None,
        } ) ),
      }
    }

    /// Checks if a request is allowed based on current circuit state.
    ///
    /// # Returns
    ///
    /// `true` if the request should proceed, `false` if it should be rejected.
    ///
    /// # Examples
    ///
    /// ```
    /// use api_xai::CircuitBreaker;
    ///
    /// let breaker = CircuitBreaker::default();
    ///
    /// if breaker.is_request_allowed() {
    ///   // Proceed with request
    /// } else {
    ///   // Circuit is open, reject request
    /// }
    /// ```
    ///
    /// # Panics
    ///
    /// Panics if the internal mutex is poisoned.
    pub fn is_request_allowed( &self ) -> bool
    {
      let mut state = self.state.lock().unwrap();

      match state.current_state
      {
        CircuitState::Closed | CircuitState::HalfOpen => true,
        CircuitState::Open =>
        {
          // Check if timeout has elapsed
          if let Some( last_failure ) = state.last_failure_time
          {
            if last_failure.elapsed() >= self.config.timeout
            {
              // Transition to HalfOpen
              state.current_state = CircuitState::HalfOpen;
              state.success_count = 0;
              true
            }
            else
            {
              false
            }
          }
          else
          {
            false
          }
        }
      }
    }

    /// Records a successful request.
    ///
    /// In `HalfOpen` state, enough successes will close the circuit.
    ///
    /// # Examples
    ///
    /// ```
    /// use api_xai::CircuitBreaker;
    ///
    /// let breaker = CircuitBreaker::default();
    ///
    /// // After successful request
    /// breaker.record_success();
    /// ```
    ///
    /// # Panics
    ///
    /// Panics if the internal mutex is poisoned.
    pub fn record_success( &self )
    {
      let mut state = self.state.lock().unwrap();

      match state.current_state
      {
        CircuitState::HalfOpen =>
        {
          state.success_count += 1;

          if state.success_count >= self.config.success_threshold
          {
            // Enough successes, close the circuit
            state.current_state = CircuitState::Closed;
            state.failure_count = 0;
            state.success_count = 0;
          }
        }
        CircuitState::Closed =>
        {
          // Reset failure count on success
          state.failure_count = 0;
        }
        CircuitState::Open => {}
      }
    }

    /// Records a failed request.
    ///
    /// Increments failure counter and may open the circuit if threshold is reached.
    ///
    /// # Examples
    ///
    /// ```
    /// use api_xai::CircuitBreaker;
    ///
    /// let breaker = CircuitBreaker::default();
    ///
    /// // After failed request
    /// breaker.record_failure();
    /// ```
    ///
    /// # Panics
    ///
    /// Panics if the internal mutex is poisoned.
    pub fn record_failure( &self )
    {
      let mut state = self.state.lock().unwrap();

      match state.current_state
      {
        CircuitState::Closed =>
        {
          state.failure_count += 1;

          if state.failure_count >= self.config.failure_threshold
          {
            // Too many failures, open the circuit
            state.current_state = CircuitState::Open;
            state.last_failure_time = Some( Instant::now() );
          }
        }
        CircuitState::HalfOpen =>
        {
          // Any failure in HalfOpen reopens the circuit
          state.current_state = CircuitState::Open;
          state.failure_count = 0;
          state.success_count = 0;
          state.last_failure_time = Some( Instant::now() );
        }
        CircuitState::Open =>
        {
          // Update last failure time
          state.last_failure_time = Some( Instant::now() );
        }
      }
    }

    /// Returns the current state of the circuit breaker.
    ///
    /// # Examples
    ///
    /// ```
    /// use api_xai::{ CircuitBreaker, CircuitState };
    ///
    /// let breaker = CircuitBreaker::default();
    /// assert_eq!( breaker.state(), CircuitState::Closed );
    /// ```
    ///
    /// # Panics
    ///
    /// Panics if the internal mutex is poisoned.
    pub fn state( &self ) -> CircuitState
    {
      self.state.lock().unwrap().current_state
    }

    /// Executes a function with circuit breaker protection.
    ///
    /// Checks if request is allowed, executes function, and records result.
    ///
    /// # Errors
    ///
    /// Returns `XaiError::CircuitBreakerOpen` if circuit is open.
    /// Returns the function's error if execution fails.
    ///
    /// # Examples
    ///
    /// ```no_run
    /// use api_xai::CircuitBreaker;
    ///
    /// # async fn example() -> Result< (), Box< dyn std::error::Error > > {
    /// let breaker = CircuitBreaker::default();
    ///
    /// let result = breaker.call( || async {
    ///   // Your API call here
    ///   Ok( "response" )
    /// } ).await?;
    /// # Ok( () )
    /// # }
    /// ```
    pub async fn call< F, Fut, T >( &self, f : F ) -> Result< T >
    where
      F : FnOnce() -> Fut,
      Fut : std::future::Future< Output = Result< T > >,
    {
      if !self.is_request_allowed()
      {
        return Err( XaiError::CircuitBreakerOpen(
          "Circuit breaker is open, request rejected".to_string()
        ).into() );
      }

      match f().await
      {
        Ok( result ) =>
        {
          self.record_success();
          Ok( result )
        }
        Err( err ) =>
        {
          self.record_failure();
          Err( err )
        }
      }
    }

    /// Resets the circuit breaker to Closed state.
    ///
    /// Clears all counters and state. Use with caution.
    ///
    /// # Examples
    ///
    /// ```
    /// use api_xai::CircuitBreaker;
    ///
    /// let breaker = CircuitBreaker::default();
    /// breaker.reset();
    /// ```
    ///
    /// # Panics
    ///
    /// Panics if the internal mutex is poisoned.
    pub fn reset( &self )
    {
      let mut state = self.state.lock().unwrap();
      state.current_state = CircuitState::Closed;
      state.failure_count = 0;
      state.success_count = 0;
      state.last_failure_time = None;
    }
  }

  impl Default for CircuitBreaker
  {
    fn default() -> Self
    {
      Self::new( CircuitBreakerConfig::default() )
    }
  }
}

crate::mod_interface!
{
  exposed use
  {
    CircuitState,
    CircuitBreakerConfig,
    CircuitBreaker,
  };
}