File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
crates/rullm-cli/src/commands Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -23,18 +23,20 @@ impl InfoArgs {
2323 let config_path = cli_config. config_base_path . join ( CONFIG_FILE_NAME ) ;
2424 let models_path = cli_config. data_base_path . join ( MODEL_FILE_NAME ) ;
2525 let keys_path = cli_config. config_base_path . join ( KEYS_CONFIG_FILE ) ;
26+ let templates_path = cli_config. config_base_path . join ( TEMPLATES_DIR_NAME ) ;
2627
2728 // crate::output::heading("Config files:", output_level);
2829 crate :: output:: note (
29- & format ! ( "config file = {}" , config_path. display( ) ) ,
30+ & format ! ( "config file: {}" , config_path. display( ) ) ,
3031 output_level,
3132 ) ;
33+ crate :: output:: note ( & format ! ( "keys file: {}" , keys_path. display( ) ) , output_level) ;
3234 crate :: output:: note (
33- & format ! ( "keys file = {}" , keys_path . display( ) ) ,
35+ & format ! ( "models cache file: {}" , models_path . display( ) ) ,
3436 output_level,
3537 ) ;
3638 crate :: output:: note (
37- & format ! ( "models cache file = {}" , models_path . display( ) ) ,
39+ & format ! ( "templates dir: {}" , templates_path . display( ) ) ,
3840 output_level,
3941 ) ;
4042
You can’t perform that action at this time.
0 commit comments