Behind a feature flag for now. <img width="576" height="234" alt="Screenshot 2025-10-01 at 9 34 16 PM" src="https://github.com/user-attachments/assets/f4e717cf-3fba-4256-af69-e3ffb5174717" /> Release Notes: - N/A
26 lines
565 B
Rust
26 lines
565 B
Rust
use crate::FeatureFlag;
|
|
|
|
pub struct PredictEditsRateCompletionsFeatureFlag;
|
|
|
|
impl FeatureFlag for PredictEditsRateCompletionsFeatureFlag {
|
|
const NAME: &'static str = "predict-edits-rate-completions";
|
|
}
|
|
|
|
pub struct NotebookFeatureFlag;
|
|
|
|
impl FeatureFlag for NotebookFeatureFlag {
|
|
const NAME: &'static str = "notebooks";
|
|
}
|
|
|
|
pub struct PanicFeatureFlag;
|
|
|
|
impl FeatureFlag for PanicFeatureFlag {
|
|
const NAME: &'static str = "panic";
|
|
}
|
|
|
|
pub struct CodexAcpFeatureFlag;
|
|
|
|
impl FeatureFlag for CodexAcpFeatureFlag {
|
|
const NAME: &'static str = "codex-acp";
|
|
}
|