Skip to content

Commit f9e6c4e

Browse files
Ismael CruzIsmael Cruz
authored andcommitted
fix typos and remove comments
1 parent 61bdd13 commit f9e6c4e

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

deployment/deploy_azure.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,6 @@
1919

2020
container_registry = os.getenv("AZURE_CONTAINER_REGISTRY")
2121
repo = os.getenv("AZURE_CONTAINER_REGISTRY_REPO")
22-
print('### DEBUG ###')
23-
print(f'container_registry: {container_registry}')
24-
print(f'repo: {repo}')
25-
print(f'postgres data host: {os.getenv("POSTGRES_DATA_HOST")}')
2622

2723
# Script is run from top directory
2824
docker_compose_file = "docker-compose-deploy.yml"

utils/recipes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,9 @@ def initialize_vector_db():
9898
COLLECTION_NAME = f"{mem_type}_embedding"
9999
db[mem_type] = PGVector(
100100
collection_name=COLLECTION_NAME,
101-
connection_string=CONNECTION_STRING,git
101+
connection_string=CONNECTION_STRING,
102102
embedding_function=embedding_model,
103-
create_extension=False
103+
create_extension=False,
104104
)
105105
print(f'### {mem_type} SUCCESS ###')
106106

0 commit comments

Comments
 (0)