Skip to content

Commit

Permalink
Address PR comments
Browse files Browse the repository at this point in the history
Signed-off-by: Cameron Morin <[email protected]>
  • Loading branch information
cameronmorin committed Dec 11, 2024
1 parent 4c111ca commit 3ef0d7b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion comps/dataprep/opensearch/langchain/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# OpenSearch Connection Information
OPENSEARCH_HOST = os.getenv("OPENSEARCH_HOST", "localhost")
OPENSEARCH_PORT = int(os.getenv("OPENSEARCH_PORT", 9200))
OPENSEARCH_INITIAL_ADMIN_PASSWORD = os.getenv("OPENSEARCH_INITIAL_ADMIN_PASSWORD", "StRoNgOpEa0)")
OPENSEARCH_INITIAL_ADMIN_PASSWORD = os.getenv("OPENSEARCH_INITIAL_ADMIN_PASSWORD", "")


def get_boolean_env_var(var_name, default_value=False):
Expand Down
Binary file removed comps/retrievers/opensearch/data/nke-10k-2023.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion comps/retrievers/opensearch/langchain/opensearch_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def get_boolean_env_var(var_name, default_value=False):
# OpenSearch Connection Information
OPENSEARCH_HOST = os.getenv("OPENSEARCH_HOST", "localhost")
OPENSEARCH_PORT = int(os.getenv("OPENSEARCH_PORT", 9200))
OPENSEARCH_INITIAL_ADMIN_PASSWORD = os.getenv("OPENSEARCH_INITIAL_ADMIN_PASSWORD", "StRoNgOpEa0)")
OPENSEARCH_INITIAL_ADMIN_PASSWORD = os.getenv("OPENSEARCH_INITIAL_ADMIN_PASSWORD", "")


def format_opensearch_conn_from_env():
Expand Down

0 comments on commit 3ef0d7b

Please sign in to comment.