mirror of
https://github.com/openai/codex.git
synced 2026-04-24 22:54:54 +00:00
Add a new `codex app-server --analytics-default-enabled` CLI flag that controls whether analytics are enabled by default. Analytics are disabled by default for app-server. Users have to explicitly opt in via the `analytics` section in the config.toml file. However, for first-party use cases like the VSCode IDE extension, we default analytics to be enabled by default by setting this flag. Users can still opt out by setting this in their config.toml: ```toml [analytics] enabled = false ``` See https://developers.openai.com/codex/config-advanced/#metrics for more details.
18 lines
296 B
Rust
18 lines
296 B
Rust
mod account;
|
|
mod analytics;
|
|
mod config_rpc;
|
|
mod initialize;
|
|
mod model_list;
|
|
mod output_schema;
|
|
mod rate_limits;
|
|
mod review;
|
|
mod thread_archive;
|
|
mod thread_fork;
|
|
mod thread_list;
|
|
mod thread_loaded_list;
|
|
mod thread_resume;
|
|
mod thread_rollback;
|
|
mod thread_start;
|
|
mod turn_interrupt;
|
|
mod turn_start;
|