AppFlowy-IO / AppFlowy-Cloud

AppFlowy is an open-source alternative to Notion. You are in charge of your data and customizations. Built with Flutter and Rust.
GNU Affero General Public License v3.0
524 stars 145 forks source link

feat: support switch model #641

Closed appflowy closed 1 week ago

appflowy commented 1 week ago

Support switching ai model:

pub enum AIModel {
  #[default]
  GPT35 = 0,
  GPT4o = 1,
  Claude3Sonnet = 2,
  Claude3Opus = 3,
  Local = 4,
}