pub struct CodexConfig {
pub executable: String,
pub working_directory: PathBuf,
pub base_instruction: String,
pub model_catalog: Option<PathBuf>,
}Expand description
Runtime configuration applied to every Codex app-server process.
Fields§
§executable: StringCodex or sandbox-launcher executable.
working_directory: PathBufDirectory supplied to Codex as its working directory.
base_instruction: StringFixed base instruction for every fresh or resumed thread.
model_catalog: Option<PathBuf>Optional sanitized Codex model-catalog JSON path.
Trait Implementations§
Source§impl Clone for CodexConfig
impl Clone for CodexConfig
Source§fn clone(&self) -> CodexConfig
fn clone(&self) -> CodexConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CodexConfig
impl Debug for CodexConfig
Source§impl Default for CodexConfig
impl Default for CodexConfig
impl Eq for CodexConfig
Source§impl PartialEq for CodexConfig
impl PartialEq for CodexConfig
impl StructuralPartialEq for CodexConfig
Auto Trait Implementations§
impl Freeze for CodexConfig
impl RefUnwindSafe for CodexConfig
impl Send for CodexConfig
impl Sync for CodexConfig
impl Unpin for CodexConfig
impl UnsafeUnpin for CodexConfig
impl UnwindSafe for CodexConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more