Add chat_completions to InstanceTogglableFeatures

Signed-off-by: Martin Tzvetanov Grigorov <mgrigorov@apache.org>
This commit is contained in:
Martin Tzvetanov Grigorov 2025-06-25 09:44:49 +03:00
parent da5f0de153
commit fe7245af20
No known key found for this signature in database
GPG key ID: 3194FD8C1AE300EF
6 changed files with 5 additions and 25 deletions

View file

@ -237,7 +237,6 @@ pub fn setup_meilisearch(opt: &Opt) -> anyhow::Result<(Arc<IndexScheduler>, Arc<
auto_upgrade: opt.experimental_dumpless_upgrade,
embedding_cache_cap: opt.experimental_embedding_cache_entries,
experimental_no_snapshot_compaction: opt.experimental_no_snapshot_compaction,
experimental_chat_completions: opt.experimental_chat_completions,
};
let binary_version = (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH);

View file

@ -729,6 +729,7 @@ impl Opt {
metrics: self.experimental_enable_metrics,
logs_route: self.experimental_enable_logs_route,
contains_filter: self.experimental_contains_filter,
chat_completions: self.experimental_chat_completions,
}
}
}