From 64f12e3d2dbae027206617043674b4d13c6a1647 Mon Sep 17 00:00:00 2001 From: vansangpfiev Date: Thu, 24 Oct 2024 06:27:57 +0700 Subject: [PATCH] fix: remove embeddings from CLI help --- engine/cli/command_line_parser.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/engine/cli/command_line_parser.cc b/engine/cli/command_line_parser.cc index 23b4c263f..c40c90a9e 100644 --- a/engine/cli/command_line_parser.cc +++ b/engine/cli/command_line_parser.cc @@ -153,9 +153,9 @@ void CommandLineParser::SetupCommonCommands() { } void CommandLineParser::SetupInferenceCommands() { - auto embeddings_cmd = app_.add_subcommand( - "embeddings", "Creates an embedding vector representing the input text"); - embeddings_cmd->group(kInferenceGroup); + // auto embeddings_cmd = app_.add_subcommand( + // "embeddings", "Creates an embedding vector representing the input text"); + // embeddings_cmd->group(kInferenceGroup); } void CommandLineParser::SetupModelCommands() {