fix: removed stale embeddings handler

This commit is contained in:
Per Stark
2025-11-29 20:07:48 +01:00
parent 1039ec32a4
commit 2939e4c2a4
6 changed files with 3 additions and 226 deletions

View File

@@ -439,7 +439,6 @@ impl Config {
pub struct ParsedArgs {
pub config: Config,
pub show_help: bool,
}
pub fn parse() -> Result<ParsedArgs> {
@@ -447,7 +446,6 @@ pub fn parse() -> Result<ParsedArgs> {
config.finalize()?;
Ok(ParsedArgs {
config,
show_help: false, // Clap handles help automatically
})
}