@@ -28,21 +28,6 @@ Files can be uploaded from local machine or S3 bucket and then LLM model can be
2828 uvicorn score:app --reload
2929 ` ` `
3030
31- # ## Build
32-
33- To build all apps and packages, run the following command:
34-
35- ` ` ` bash
36- # Frontend build outputs to `apps/frontend/dist` folder.
37- yarn build
38- ` ` `
39-
40- ` ` ` bash
41- # Backend docker image
42- docker build -t imageName .
43- docker run -it -p 8000:8000 imageNmae
44- ` ` `
45-
4631# ##
4732To deploy the app and packages on Google Cloud Platform, run the following command on google cloud run:
4833` ` ` bash
@@ -81,7 +66,7 @@ KNN_MIN_SCORE = ""\
8166
8267## Functions/Modules
8368
84- # extract_graph_from_file(uri, userName, password, file_path, model):
69+ #### extract_graph_from_file(uri, userName, password, file_path, model):
8570 Extracts nodes , relationships and properties from a PDF file leveraging LLM models.
8671
8772 Args:
@@ -95,7 +80,7 @@ KNN_MIN_SCORE = ""\
9580 Json response to API with fileName, nodeCount, relationshipCount, processingTime,
9681 status and model as attributes.
9782
98- # get_source_list_from_graph(graph):
83+ #### get_source_list_from_graph(graph):
9984
10085 Creates a list of sources
10186
@@ -105,7 +90,7 @@ KNN_MIN_SCORE = ""\
10590 Returns a list of sources that are in the database by querying the graph and
10691 sorting the list by the last updated date.
10792
108- # create_source_node_graph(uri, userName, password, file):
93+ #### create_source_node_graph(uri, userName, password, file):
10994
11095 Creates a source node in Neo4jGraph and sets properties.
11196
0 commit comments