some fixes + gliner first implementation
This commit is contained in:
parent
b9d5f41bbd
commit
a8ff3442ff
36 changed files with 1079 additions and 73 deletions
|
|
@ -1,3 +1,4 @@
|
|||
use jarvis_core::slots;
|
||||
use parking_lot::RwLock;
|
||||
use std::sync::Arc;
|
||||
use std::sync::atomic::{AtomicBool, Ordering};
|
||||
|
|
@ -105,6 +106,9 @@ fn main() -> Result<(), String> {
|
|||
}
|
||||
});
|
||||
|
||||
// init slots parsing engine
|
||||
slots::init().map_err(|e| error!("Slot extraction init failed: {}", e)).ok();
|
||||
|
||||
// init audio processing
|
||||
info!("Initializing audio processing...");
|
||||
if let Err(e) = audio_processing::init() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue