This adds `SetDefaultModel`, which takes `model` and `reasoning_effort` as optional fields. If set, the field will overwrite what is in the user's `config.toml`. This reuses logic that was added to support the `/model` command in the TUI: https://github.com/openai/codex/pull/2799.
15 lines
304 B
Rust
15 lines
304 B
Rust
// Aggregates all former standalone integration tests as modules.
|
|
mod archive_conversation;
|
|
mod auth;
|
|
mod codex_message_processor_flow;
|
|
mod codex_tool;
|
|
mod config;
|
|
mod create_conversation;
|
|
mod interrupt;
|
|
mod list_resume;
|
|
mod login;
|
|
mod send_message;
|
|
mod set_default_model;
|
|
mod user_agent;
|
|
mod user_info;
|