update: pipeline, search, clip, embedding fixes
This commit is contained in:
@@ -191,6 +191,14 @@ pub mod llm {
|
||||
});
|
||||
}
|
||||
|
||||
pub static SFTPGO_BASE_URL: Lazy<String> = Lazy::new(|| {
|
||||
env::var("SFTPGO_BASE_URL").unwrap_or_else(|_| "http://127.0.0.1:8080".to_string())
|
||||
});
|
||||
|
||||
pub static JWT_SECRET: Lazy<String> = Lazy::new(|| {
|
||||
env::var("JWT_SECRET").unwrap_or_else(|_| "momentry_default_jwt_secret_change_me".to_string())
|
||||
});
|
||||
|
||||
pub mod tmdb {
|
||||
use super::*;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user