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
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
mod private
{
  //! Input validation for XAI API requests.
  //!
  //! This module provides comprehensive client-side validation of request
  //! parameters before sending them to the XAI API. Early validation helps:
  //!
  //! 1. **Catch Errors Early**: Detect invalid parameters before API calls
  //! 2. **Better Error Messages**: Provide clear, actionable feedback
  //! 3. **Cost Savings**: Avoid wasting API calls on invalid requests
  //! 4. **Type Safety**: Enforce constraints beyond Rust's type system
  //!
  //! # Design Decisions
  //!
  //! ## Why Client-Side Validation?
  //!
  //! While the XAI API performs server-side validation, client-side validation:
  //!
  //! 1. **Faster Feedback**: Immediate errors without network round-trip
  //! 2. **Better UX**: Clear error messages vs generic API errors
  //! 3. **Cost Reduction**: Avoid API calls for obviously invalid requests
  //! 4. **Offline Development**: Validate without network access
  //!
  //! ## What is Validated?
  //!
  //! - **Model Names**: Only valid XAI models (grok-2-1212, grok-2-1212, grok-2)
  //! - **Messages**: Non-empty arrays, non-empty content
  //! - **Temperature**: Range [0.0, 2.0]
  //! - **Max Tokens**: Positive values within context window
  //! - **Top P**: Range [0.0, 1.0]
  //! - **Frequency/Presence Penalty**: Range [-2.0, 2.0]
  //! - **Tool Schemas**: Valid JSON schemas for function calling
  //!
  //! ## Validation Philosophy
  //!
  //! Validation is **explicit** and **opt-in**:
  //!
  //! 1. **Not Automatic**: Validation must be called explicitly
  //! 2. **Feature Gated**: Can be disabled for zero-cost abstraction
  //! 3. **Non-Mutating**: Validation never modifies requests
  //! 4. **Fail Fast**: Returns first error encountered

  use crate::{ ChatCompletionRequest, Message, Tool, Function };
  use crate::error::{ XaiError, Result };

  /// Validates a chat completion request.
  ///
  /// Performs comprehensive validation of all request parameters,
  /// returning the first error encountered.
  ///
  /// # Validation Rules
  ///
  /// - **Model**: Must be a valid XAI model name
  /// - **Messages**: Must be non-empty with non-empty content
  /// - **Temperature**: Must be in [0.0, 2.0]
  /// - **Max Tokens**: Must be positive
  /// - **Top P**: Must be in [0.0, 1.0]
  /// - **Penalties**: Must be in [-2.0, 2.0]
  /// - **Tools**: Must have valid schemas
  ///
  /// # Arguments
  ///
  /// * `request` - The chat completion request to validate
  ///
  /// # Returns
  ///
  /// `Ok(())` if validation passes, error otherwise.
  ///
  /// # Errors
  ///
  /// Returns `XaiError::InvalidParameter` or `XaiError::InvalidModel`
  /// for validation failures.
  ///
  /// # Examples
  ///
  /// ```
  /// # #[ cfg( feature = "input_validation") ]
  /// # {
  /// use api_xai::{ validate_request, ChatCompletionRequest, Message };
  ///
  /// let request = ChatCompletionRequest::former()
  ///   .model( "grok-2-1212".to_string() )
  ///   .messages( vec![ Message::user( "Hello!" ) ] )
  ///   .temperature( 0.7 )
  ///   .form();
  ///
  /// // Validation passes
  /// assert!( validate_request( &request ).is_ok() );
  ///
  /// let bad_request = ChatCompletionRequest::former()
  ///   .model( "grok-2-1212".to_string() )
  ///   .messages( vec![ Message::user( "Hello!" ) ] )
  ///   .temperature( 3.0 ) // Invalid!
  ///   .form();
  ///
  /// // Validation fails
  /// assert!( validate_request( &bad_request ).is_err() );
  /// # }
  /// ```
  #[ cfg( feature = "input_validation" ) ]
  pub fn validate_request( request : &ChatCompletionRequest ) -> Result< () >
  {
    validate_model( &request.model )?;
    validate_messages( &request.messages )?;
    validate_temperature( request.temperature )?;
    validate_max_tokens( request.max_tokens )?;
    validate_top_p( request.top_p )?;
    validate_frequency_penalty( request.frequency_penalty )?;
    validate_presence_penalty( request.presence_penalty )?;

    if let Some( ref tools ) = request.tools
    {
      validate_tools( tools )?;
    }

    Ok( () )
  }

  /// Validates that the model name is supported.
  ///
  /// # Valid Models
  ///
  /// - `grok-2-1212` - Latest Grok model
  /// - `grok-2-1212` - Beta version
  /// - `grok-2` - Previous version
  ///
  /// # Arguments
  ///
  /// * `model` - The model name to validate
  ///
  /// # Errors
  ///
  /// Returns `XaiError::InvalidModel` if the model is not recognized.
  #[ cfg( feature = "input_validation" ) ]
  pub fn validate_model( model : &str ) -> Result< () >
  {
    const VALID_MODELS : &[ &str ] = &[ "grok-2-1212", "grok-2-1212", "grok-2" ];

    if !VALID_MODELS.contains( &model )
    {
      return Err
      (
        XaiError::InvalidModel
        (
          format!
          (
            "Unknown model : '{}'. Valid models : {}",
            model,
            VALID_MODELS.join( ", " )
          )
        ).into()
      );
    }

    Ok( () )
  }

  /// Validates that messages array is non-empty with valid content.
  ///
  /// # Validation Rules
  ///
  /// - Messages array must not be empty
  /// - Each message with content must have non-empty content
  /// - System messages are allowed
  ///
  /// # Arguments
  ///
  /// * `messages` - The messages array to validate
  ///
  /// # Errors
  ///
  /// Returns `XaiError::InvalidParameter` if validation fails.
  #[ cfg( feature = "input_validation" ) ]
  pub fn validate_messages( messages : &[ Message ] ) -> Result< () >
  {
    if messages.is_empty()
    {
      return Err
      (
        XaiError::InvalidParameter
        (
          "messages array cannot be empty".to_string()
        ).into()
      );
    }

    for ( idx, message ) in messages.iter().enumerate()
    {
      if let Some( ref content ) = message.content
      {
        if content.trim().is_empty()
        {
          return Err
          (
            XaiError::InvalidParameter
            (
              format!( "message[{idx}] content cannot be empty or whitespace-only" )
            ).into()
          );
        }
      }
    }

    Ok( () )
  }

  /// Validates that temperature is within valid range [0.0, 2.0].
  ///
  /// # Arguments
  ///
  /// * `temperature` - The temperature value to validate
  ///
  /// # Errors
  ///
  /// Returns `XaiError::InvalidParameter` if outside range.
  #[ cfg( feature = "input_validation" ) ]
  pub fn validate_temperature( temperature : Option< f32 > ) -> Result< () >
  {
    if let Some( temp ) = temperature
    {
      if !( 0.0..=2.0 ).contains( &temp )
      {
        return Err
        (
          XaiError::InvalidParameter
          (
            format!
            (
              "temperature must be between 0.0 and 2.0, got : {temp}"
            )
          ).into()
        );
      }
    }

    Ok( () )
  }

  /// Validates that `max_tokens` is positive.
  ///
  /// # Arguments
  ///
  /// * `max_tokens` - The `max_tokens` value to validate
  ///
  /// # Errors
  ///
  /// Returns `XaiError::InvalidParameter` if non-positive.
  #[ cfg( feature = "input_validation" ) ]
  pub fn validate_max_tokens( max_tokens : Option< u32 > ) -> Result< () >
  {
    if let Some( tokens ) = max_tokens
    {
      if tokens == 0
      {
        return Err
        (
          XaiError::InvalidParameter
          (
            "max_tokens must be positive (> 0)".to_string()
          ).into()
        );
      }
    }

    Ok( () )
  }

  /// Validates that `top_p` is within valid range [0.0, 1.0].
  ///
  /// # Arguments
  ///
  /// * `top_p` - The `top_p` value to validate
  ///
  /// # Errors
  ///
  /// Returns `XaiError::InvalidParameter` if outside range.
  #[ cfg( feature = "input_validation" ) ]
  pub fn validate_top_p( top_p : Option< f32 > ) -> Result< () >
  {
    if let Some( p ) = top_p
    {
      if !( 0.0..=1.0 ).contains( &p )
      {
        return Err
        (
          XaiError::InvalidParameter
          (
            format!
            (
              "top_p must be between 0.0 and 1.0, got : {p}"
            )
          ).into()
        );
      }
    }

    Ok( () )
  }

  /// Validates that `frequency_penalty` is within valid range [-2.0, 2.0].
  ///
  /// # Arguments
  ///
  /// * `frequency_penalty` - The `frequency_penalty` value to validate
  ///
  /// # Errors
  ///
  /// Returns `XaiError::InvalidParameter` if outside range.
  #[ cfg( feature = "input_validation" ) ]
  pub fn validate_frequency_penalty( frequency_penalty : Option< f32 > ) -> Result< () >
  {
    if let Some( penalty ) = frequency_penalty
    {
      if !( -2.0..=2.0 ).contains( &penalty )
      {
        return Err
        (
          XaiError::InvalidParameter
          (
            format!
            (
              "frequency_penalty must be between -2.0 and 2.0, got : {penalty}"
            )
          ).into()
        );
      }
    }

    Ok( () )
  }

  /// Validates that `presence_penalty` is within valid range [-2.0, 2.0].
  ///
  /// # Arguments
  ///
  /// * `presence_penalty` - The `presence_penalty` value to validate
  ///
  /// # Errors
  ///
  /// Returns `XaiError::InvalidParameter` if outside range.
  #[ cfg( feature = "input_validation" ) ]
  pub fn validate_presence_penalty( presence_penalty : Option< f32 > ) -> Result< () >
  {
    if let Some( penalty ) = presence_penalty
    {
      if !( -2.0..=2.0 ).contains( &penalty )
      {
        return Err
        (
          XaiError::InvalidParameter
          (
            format!
            (
              "presence_penalty must be between -2.0 and 2.0, got : {penalty}"
            )
          ).into()
        );
      }
    }

    Ok( () )
  }

  /// Validates tool definitions (function calling schemas).
  ///
  /// # Validation Rules
  ///
  /// - Each tool must have a valid function definition
  /// - Function names must be non-empty
  /// - Function descriptions should be non-empty (warning only)
  /// - Parameters must be valid JSON schemas
  ///
  /// # Arguments
  ///
  /// * `tools` - The tools array to validate
  ///
  /// # Errors
  ///
  /// Returns `XaiError::InvalidParameter` if validation fails.
  #[ cfg( feature = "input_validation" ) ]
  pub fn validate_tools( tools : &[ Tool ] ) -> Result< () >
  {
    for ( idx, tool ) in tools.iter().enumerate()
    {
      validate_function_definition( &tool.function, idx )?;
    }

    Ok( () )
  }

  /// Validates a function definition.
  ///
  /// # Arguments
  ///
  /// * `function` - The function definition to validate
  /// * `idx` - Index in tools array (for error messages)
  ///
  /// # Errors
  ///
  /// Returns `XaiError::InvalidParameter` if validation fails.
  #[ cfg( feature = "input_validation" ) ]
  fn validate_function_definition
  (
    function : &Function,
    idx : usize
  )
  -> Result< () >
  {
    // Function name must be non-empty
    if function.name.trim().is_empty()
    {
      return Err
      (
        XaiError::InvalidParameter
        (
          format!( "tool[{idx}] function name cannot be empty" )
        ).into()
      );
    }

    // Description should be non-empty (best practice, not enforced)
    if function.description.trim().is_empty()
    {
      // Note : This is a warning, not an error
      // The API will accept it, but it's not recommended
    }

    // Parameters must be valid JSON schema
    // Try to serialize to ensure it's valid JSON
    serde_json::to_string( &function.parameters )
      .map_err
      (
        | e |
        {
          XaiError::InvalidParameter
          (
            format!( "tool[{idx}] parameters are not valid JSON: {e}" )
          )
        }
      )?;

    Ok( () )
  }
}

#[ cfg( feature = "input_validation" ) ]
crate::mod_interface!
{
  exposed use
  {
    validate_request,
    validate_model,
    validate_messages,
    validate_temperature,
    validate_max_tokens,
    validate_top_p,
    validate_frequency_penalty,
    validate_presence_penalty,
    validate_tools,
  };
}