File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 77import os
88import re
99from typing import TextIO , Union
10- from llm_change_agent . cli import execute
10+
1111import click
12+ from llm_change_agent .cli import execute
1213
1314from ontobot_change_agent import __version__
1415from ontobot_change_agent .api import (
@@ -236,8 +237,10 @@ def process_issue(
236237 ctx .params ["provider" ] = "cborg"
237238 ctx .params ["model" ] = "google/gemini:latest"
238239 response = execute .invoke (ctx )
239- KGCL_COMMANDS = [command .replace ('"' ,"'" ) for command in ast .literal_eval (response )]
240-
240+ KGCL_COMMANDS = [
241+ command .replace ('"' , "'" ) for command in ast .literal_eval (response )
242+ ]
243+
241244 if len (KGCL_COMMANDS ) > 0 :
242245 click .echo (f"llm-change-agent result: { response } " )
243246 formatted_body = "The following commands were executed: </br> "
You can’t perform that action at this time.
0 commit comments