@@ -101,7 +101,7 @@ def run(log_file, provider, model, query, output, format, interactive, debug_mod
101101 console .print (f"\n [red]Error:[/red] { str (e )} " )
102102
103103 if query :
104- process_query (provider , query , output , format , debug_mode , reasoning_enabled )
104+ process_query (provider , model , query , output , format , debug_mode , reasoning_enabled )
105105
106106
107107def run_interactive_mode (provider : str , model : str , output : str = None , format : str = 'text' ,
@@ -139,10 +139,11 @@ def run_interactive_mode(provider: str, model: str, output: str = None, format:
139139 try :
140140 response = execute_master_agent (provider = provider , model_str = model , user_query = user_input ,
141141 debug_mode = debug_mode , reasoning = reasoning_enabled )
142- console .print (Panel .fit (
143- f"[bold yellow]Assistant:[/bold yellow] [dim]{ response } [/dim]" ,
144- border_style = "yellow"
145- ))
142+ # If needed enable for the assistant response in md format
143+ # console.print(Panel.fit(
144+ # f"[bold yellow]Assistant:[/bold yellow] [dim]{response}[/dim]",
145+ # border_style="yellow"
146+ # ))
146147
147148 # Save to output file if specified
148149 if output :
@@ -172,10 +173,11 @@ def process_query(provider: str, model: str, query: str, output: str = None, for
172173 try :
173174 response = execute_master_agent (provider = provider , model_str = model , user_query = query ,
174175 debug_mode = debug_mode , reasoning = reasoning_enabled )
175- console .print (Panel .fit (
176- f"[bold yellow]Assistant:[/bold yellow] [dim]{ response } [/dim]" ,
177- border_style = "yellow"
178- ))
176+ # If needed enable for the assistant response in md format
177+ # console.print(Panel.fit(
178+ # f"[bold yellow]Assistant:[/bold yellow] [dim]{response}[/dim]",
179+ # border_style="yellow"
180+ # ))
179181
180182 if output :
181183 save_to_file (output , query , response , format )
0 commit comments