Files
codex/codex-rs/core/src/function_tool.rs
2026-01-08 15:07:30 +00: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),
}