Only run AI agent on dev and preview

This commit is contained in:
Nathan Sobo 2023-05-24 10:58:33 -06:00
parent 35f9996a4f
commit d495c1b804

View file

@ -13,6 +13,7 @@ use std::cell::RefCell;
use std::fs;
use std::rc::Rc;
use std::{io, sync::Arc};
use util::channel::{ReleaseChannel, RELEASE_CHANNEL};
use util::{ResultExt, TryFutureExt};
actions!(ai, [Assist]);
@ -85,6 +86,10 @@ struct OpenAIChoice {
}
pub fn init(cx: &mut AppContext) {
if *RELEASE_CHANNEL == ReleaseChannel::Stable {
return;
}
let assistant = Rc::new(Assistant::default());
cx.add_action({
let assistant = assistant.clone();