objectiveai-api 2.0.5

ObjectiveAI API Server
1
2
3
4
5
6
7
8
9
10
//! Usage reporting options for OpenRouter requests.

use serde::{Deserialize, Serialize};

/// Configuration for usage reporting in the response.
#[derive(Debug, Clone, Copy, PartialEq, Serialize, Deserialize)]
pub struct Usage {
    /// Whether to include usage statistics in the response.
    pub include: bool,
}