-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Correcting tests and adjusting code for toml-based shared DTO object
- Loading branch information
Showing
15 changed files
with
129 additions
and
130 deletions.
There are no files selected for viewing
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
|
||
[settings] | ||
db_engine = "neo4j" | ||
|
||
[OCR] | ||
TESSERACT_PATH = "/usr/bin/tesseract" | ||
POPPLER_PATH = "/usr/bin/pdftotext" | ||
|
||
[neo4j] | ||
NEO4J_URI = "neo4j://database:7687" | ||
NEO4J_USER = "neo4j" | ||
NEO4J_PASSWORD = "StrongPsPsP5" | ||
|
||
[qdrant] | ||
in_memory = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
|
||
from .communicator import Communicator | ||
from .communicator import CommAdapterNeo | ||
|
||
__all__ = ["Communicator"] | ||
__all__ = ["CommAdapterNeo"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,9 @@ | ||
from .config_variables import ( | ||
get_OCR_variables, | ||
get_neo4j_variables, | ||
set_env_variables_from_config | ||
EnvInterface | ||
) | ||
from .logger_setup import setup_logger | ||
|
||
__all__ = [ | ||
"get_OCR_variables", | ||
"get_neo4j_variables", | ||
"set_env_variables_from_config", | ||
"EnvInterface", | ||
"setup_logger" | ||
] |
Oops, something went wrong.