This PR introduces a few components for the model selector pickers. Given we're still maintaining two flavors of it due to one of them being wired through ACP and the other through the language model registry, having one source of truth for the UI should help with maintenance moving forward, considering that despite the internal differences, they look and behave the same from the standpoint of the UI. Release Notes: - N/A
20 lines
510 B
Rust
20 lines
510 B
Rust
mod acp_onboarding_modal;
|
|
mod agent_notification;
|
|
mod burn_mode_tooltip;
|
|
mod claude_code_onboarding_modal;
|
|
mod end_trial_upsell;
|
|
mod hold_for_default;
|
|
mod model_selector_components;
|
|
mod onboarding_modal;
|
|
mod usage_callout;
|
|
|
|
pub use acp_onboarding_modal::*;
|
|
pub use agent_notification::*;
|
|
pub use burn_mode_tooltip::*;
|
|
pub use claude_code_onboarding_modal::*;
|
|
pub use end_trial_upsell::*;
|
|
pub use hold_for_default::*;
|
|
pub use model_selector_components::*;
|
|
pub use onboarding_modal::*;
|
|
pub use usage_callout::*;
|