use std::{fmt, str::FromStr};
use serde::{Deserialize, Serialize};
use thiserror::Error;
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Deserialize, Serialize)]
#[serde(rename_all = "lowercase")]
pub enum ReasoningLevel {
Off,
Minimal,
Low,
#[default]
Medium,
High,
Xhigh,
}
#[derive(Clone, Debug, Error, PartialEq, Eq)]
#[error("invalid reasoning level '{0}'; expected one of: off, minimal, low, medium, high, xhigh")]
pub struct ParseReasoningLevelError(String);
impl ReasoningLevel {
pub fn next(self) -> Self {
match self {
Self::Off => Self::Minimal,
Self::Minimal => Self::Low,
Self::Low => Self::Medium,
Self::Medium => Self::High,
Self::High => Self::Xhigh,
Self::Xhigh => Self::Off,
}
}
pub fn effort(self) -> Option<&'static str> {
match self {
Self::Off => None,
Self::Minimal => Some("low"),
Self::Low => Some("low"),
Self::Medium => Some("medium"),
Self::High => Some("high"),
Self::Xhigh => Some("xhigh"),
}
}
pub fn summary(self) -> Option<&'static str> {
self.effort().map(|_| "auto")
}
}
impl fmt::Display for ReasoningLevel {
fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
let value = match self {
Self::Off => "off",
Self::Minimal => "minimal",
Self::Low => "low",
Self::Medium => "medium",
Self::High => "high",
Self::Xhigh => "xhigh",
};
formatter.write_str(value)
}
}
impl FromStr for ReasoningLevel {
type Err = ParseReasoningLevelError;
fn from_str(value: &str) -> Result<Self, Self::Err> {
match value.trim().to_ascii_lowercase().as_str() {
"off" | "none" | "" => Ok(Self::Off),
"minimal" => Ok(Self::Minimal),
"low" => Ok(Self::Low),
"medium" => Ok(Self::Medium),
"high" => Ok(Self::High),
"xhigh" => Ok(Self::Xhigh),
other => Err(ParseReasoningLevelError(other.to_string())),
}
}
}