11
11
from langchain_google_vertexai import ChatVertexAI
12
12
from src .api_response import create_api_response
13
13
from src .graphDB_dataAccess import graphDBdataAccess
14
- from src .graph_query import get_graph_results ,get_chunktext_results
14
+ from src .graph_query import get_graph_results ,get_chunktext_results , visualize_schema
15
15
from src .chunkid_entities import get_entities_from_chunkids
16
16
from src .post_processing import create_vector_fulltext_indexes , create_entity_embedding , graph_schema_consolidation
17
17
from sse_starlette .sse import EventSourceResponse
@@ -82,7 +82,7 @@ async def __call__(self, scope: Scope, receive: Receive, send: Send):
82
82
app = FastAPI ()
83
83
app .add_middleware (XContentTypeOptions )
84
84
app .add_middleware (XFrame , Option = {'X-Frame-Options' : 'DENY' })
85
- app .add_middleware (CustomGZipMiddleware , minimum_size = 1000 , compresslevel = 5 ,paths = ["/sources_list" ,"/url/scan" ,"/extract" ,"/chat_bot" ,"/chunk_entities" ,"/get_neighbours" ,"/graph_query" ,"/schema" ,"/populate_graph_schema" ,"/get_unconnected_nodes_list" ,"/get_duplicate_nodes" ,"/fetch_chunktext" ])
85
+ app .add_middleware (CustomGZipMiddleware , minimum_size = 1000 , compresslevel = 5 ,paths = ["/sources_list" ,"/url/scan" ,"/extract" ,"/chat_bot" ,"/chunk_entities" ,"/get_neighbours" ,"/graph_query" ,"/schema" ,"/populate_graph_schema" ,"/get_unconnected_nodes_list" ,"/get_duplicate_nodes" ,"/fetch_chunktext" , "/schema_visualization" ])
86
86
app .add_middleware (
87
87
CORSMiddleware ,
88
88
allow_origins = ["*" ],
@@ -1033,6 +1033,32 @@ async def backend_connection_configuration():
1033
1033
return create_api_response (job_status , message = message , error = error_message .rstrip ('.' ) + ', or fill from the login dialog.' , data = graph_connection )
1034
1034
finally :
1035
1035
gc .collect ()
1036
-
1036
+
1037
+ @app .post ("/schema_visualization" )
1038
+ async def get_schema_visualization (uri = Form (None ), userName = Form (None ), password = Form (None ), database = Form (None )):
1039
+ try :
1040
+ start = time .time ()
1041
+ result = await asyncio .to_thread (visualize_schema ,
1042
+ uri = uri ,
1043
+ userName = userName ,
1044
+ password = password ,
1045
+ database = database )
1046
+ if result :
1047
+ logging .info ("Graph schema visualization query successful" )
1048
+ end = time .time ()
1049
+ elapsed_time = end - start
1050
+ logging .info (f'Schema result from DB: { result } ' )
1051
+ json_obj = {'api_name' :'schema_visualization' ,'db_url' :uri , 'userName' :userName , 'database' :database , 'logging_time' : formatted_time (datetime .now (timezone .utc )), 'elapsed_api_time' :f'{ elapsed_time :.2f} ' }
1052
+ logger .log_struct (json_obj , "INFO" )
1053
+ return create_api_response ('Success' , data = result ,message = f"Total elapsed API time { elapsed_time :.2f} " )
1054
+ except Exception as e :
1055
+ message = "Unable to get schema visualization from neo4j database"
1056
+ error_message = str (e )
1057
+ logging .info (message )
1058
+ logging .exception (f'Exception:{ error_message } ' )
1059
+ return create_api_response ("Failed" , message = message , error = error_message )
1060
+ finally :
1061
+ gc .collect ()
1062
+
1037
1063
if __name__ == "__main__" :
1038
1064
uvicorn .run (app )
0 commit comments