Files
codex/codex-rs/core/src/function_tool.rs
2026-05-06 11:08:56 -07:00

12 lines
271 B
Rust

use thiserror::Error;
#[derive(Debug, Error, PartialEq)]
pub enum FunctionCallError {
#[error("{0}")]
RespondToModel(String),
#[error("LocalShellCall without call_id or id")]
MissingLocalShellCallId,
#[error("Fatal error: {0}")]
Fatal(String),
}