@@ -357,7 +357,7 @@ def auth_scope():
357357 payload = jwt .decode (token , options = {"verify_signature" : False })
358358 sem_scopes = payload .get ("semantic_scopes" , [])
359359
360- table = Table (title = "[ONTOLOGY] Semantic Access Scopes" , box = rich . box .DOUBLE_EDGE )
360+ table = Table (title = "[ONTOLOGY] Semantic Access Scopes" , box = box .DOUBLE_EDGE )
361361 table .add_column ("Scope Identifier" , style = "cyan" )
362362 table .add_column ("Ontology Context" , style = "magenta" )
363363 table .add_column ("Capability" , style = "green" )
@@ -881,7 +881,7 @@ def heal_status(
881881 data = ctx .request ("GET" , "/api/v1/reconciliation/status" )
882882
883883 # Table 1: Drifts
884- drift_table = Table (title = "[SEARCH] Semantic Drift Analysis" , border_style = "bold yellow" , box = rich . box .ROUNDED )
884+ drift_table = Table (title = "[SEARCH] Semantic Drift Analysis" , border_style = "bold yellow" , box = box .ROUNDED )
885885 drift_table .add_column ("Source Protocol" , style = "cyan" )
886886 drift_table .add_column ("Field Drift" , style = "magenta" )
887887 drift_table .add_column ("Ontology Match" , style = "green" )
@@ -909,7 +909,7 @@ def heal_status(
909909 ctx .console .print (drift_table )
910910
911911 # Table 2: Active Mappings
912- mapping_table = Table (title = "[LINK] Persistent Semantic Mappings" , border_style = "bold green" , box = rich . box .ROUNDED )
912+ mapping_table = Table (title = "[LINK] Persistent Semantic Mappings" , border_style = "bold green" , box = box .ROUNDED )
913913 mapping_table .add_column ("Route" , style = "cyan" )
914914 mapping_table .add_column ("Current Mappings (Source -> Target)" , style = "white" )
915915 mapping_table .add_column ("Ver." , style = "dim" )
@@ -1008,7 +1008,7 @@ def route_test(
10081008 rprint (Panel (panel_content , title = "[START] Optimal Routing Decision" , border_style = "bold cyan" , expand = False ))
10091009
10101010 # Comparison Table
1011- table = Table (title = "[STATS] Alternative Backends Comparison" , box = rich . box .SIMPLE )
1011+ table = Table (title = "[STATS] Alternative Backends Comparison" , box = box .SIMPLE )
10121012 table .add_column ("Backend" , style = "cyan" )
10131013 table .add_column ("Score" , style = "yellow" )
10141014 table .add_column ("Sim." , style = "dim" )
@@ -1039,7 +1039,7 @@ def route_list():
10391039 try :
10401040 results = ctx .request ("GET" , "/api/v1/routing/list" )
10411041
1042- table = Table (title = "[GRAPH] Global Tool Performance Stats" , box = rich . box .DOUBLE_EDGE , border_style = "blue" )
1042+ table = Table (title = "[GRAPH] Global Tool Performance Stats" , box = box .DOUBLE_EDGE , border_style = "blue" )
10431043 table .add_column ("Tool Name" , style = "cyan" , no_wrap = True )
10441044 table .add_column ("Backend" , style = "magenta" )
10451045 table .add_column ("Avg Latency" , style = "yellow" , justify = "right" )
0 commit comments