Skip to content

Commit

Permalink
Add explicit *-general options.
Browse files Browse the repository at this point in the history
Co-authored-by: Brent George <[email protected]>
  • Loading branch information
jcdyer and bd-g authored Aug 16, 2024
1 parent 159fc8b commit 27b5c97
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/common/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2227,10 +2227,10 @@ impl AsRef<str> for Model {
impl From<String> for Model {
fn from(value: String) -> Self {
match &*value {
"nova-2" => Self::Nova2,
"nova" => Self::Nova,
"enhanced" => Self::Enhanced,
"base" => Self::Base,
"nova-2" | "nova-2-general" => Self::Nova2,
"nova" | "nova-general" => Self::Nova,
"enhanced" | "enhanced-general" => Self::Enhanced,
"base" | "base-general" => Self::Base,
"nova-2-meeting" => Self::Nova2Meeting,
"nova-2-phonecall" => Self::Nova2Phonecall,
"nova-2-finance" => Self::Nova2Finance,
Expand Down

0 comments on commit 27b5c97

Please sign in to comment.