This adds support for the `--disable-response-storage` flag across our multiple Rust CLIs to support customers who have opted into Zero-Data Retention (ZDR). The analogous changes to the TypeScript CLI were: * https://github.com/openai/codex/pull/481 * https://github.com/openai/codex/pull/543 For a client using ZDR, `previous_response_id` will never be available, so the `input` field of an API request must include the full transcript of the conversation thus far. As such, this PR changes the type of `Prompt.input` from `Vec<ResponseInputItem>` to `Vec<ResponseItem>`. Practically speaking, `ResponseItem` was effectively a "superset" of `ResponseInputItem` already. The main difference for us is that `ResponseItem` includes the `FunctionCall` variant that we have to include as part of the conversation history in the ZDR case. Another key change in this PR is modifying `try_run_turn()` so that it returns the `Vec<ResponseItem>` for the turn in addition to the `Vec<ResponseInputItem>` produced by `try_run_turn()`. This is because the caller of `run_turn()` needs to record the `Vec<ResponseItem>` when ZDR is enabled. To that end, this PR introduces `ZdrTranscript` (and adds `zdr_transcript: Option<ZdrTranscript>` to `struct State` in `codex.rs`) to take responsibility for maintaining the conversation transcript in the ZDR case.
65 lines
2.3 KiB
Rust
65 lines
2.3 KiB
Rust
use clap::ArgAction;
|
||
use clap::Parser;
|
||
use codex_core::ApprovalModeCliArg;
|
||
use codex_core::SandboxModeCliArg;
|
||
use std::path::PathBuf;
|
||
|
||
/// Command‑line arguments.
|
||
#[derive(Debug, Parser)]
|
||
#[command(
|
||
author,
|
||
version,
|
||
about = "Interactive Codex CLI that streams all agent actions."
|
||
)]
|
||
pub struct Cli {
|
||
/// User prompt to start the session.
|
||
pub prompt: Option<String>,
|
||
|
||
/// Override the default model from ~/.codex/config.toml.
|
||
#[arg(short, long)]
|
||
pub model: Option<String>,
|
||
|
||
/// Optional images to attach to the prompt.
|
||
#[arg(long, value_name = "FILE")]
|
||
pub images: Vec<PathBuf>,
|
||
|
||
/// Increase verbosity (-v info, -vv debug, -vvv trace).
|
||
///
|
||
/// The flag may be passed up to three times. Without any -v the CLI only prints warnings and errors.
|
||
#[arg(short, long, action = ArgAction::Count)]
|
||
pub verbose: u8,
|
||
|
||
/// Don't use colored ansi output for verbose logging
|
||
#[arg(long)]
|
||
pub no_ansi: bool,
|
||
|
||
/// Configure when the model requires human approval before executing a command.
|
||
#[arg(long = "ask-for-approval", short = 'a', value_enum, default_value_t = ApprovalModeCliArg::OnFailure)]
|
||
pub approval_policy: ApprovalModeCliArg,
|
||
|
||
/// Configure the process restrictions when a command is executed.
|
||
///
|
||
/// Uses OS-specific sandboxing tools; Seatbelt on OSX, landlock+seccomp on Linux.
|
||
#[arg(long = "sandbox", short = 's', value_enum, default_value_t = SandboxModeCliArg::NetworkAndFileWriteRestricted)]
|
||
pub sandbox_policy: SandboxModeCliArg,
|
||
|
||
/// Allow running Codex outside a Git repository. By default the CLI
|
||
/// aborts early when the current working directory is **not** inside a
|
||
/// Git repo because most agents rely on `git` for interacting with the
|
||
/// code‑base. Pass this flag if you really know what you are doing.
|
||
#[arg(long, action = ArgAction::SetTrue, default_value_t = false)]
|
||
pub allow_no_git_exec: bool,
|
||
|
||
/// Disable server‑side response storage (sends the full conversation context with every request)
|
||
#[arg(long = "disable-response-storage", default_value_t = false)]
|
||
pub disable_response_storage: bool,
|
||
|
||
/// Record submissions into file as JSON
|
||
#[arg(short = 'S', long)]
|
||
pub record_submissions: Option<String>,
|
||
|
||
/// Record events into file as JSON
|
||
#[arg(short = 'E', long)]
|
||
pub record_events: Option<String>,
|
||
}
|