Skip to content

Commit

Permalink
fix typos and remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Ismael Cruz authored and Ismael Cruz committed Dec 5, 2024
1 parent 61bdd13 commit f9e6c4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 0 additions & 4 deletions deployment/deploy_azure.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@

container_registry = os.getenv("AZURE_CONTAINER_REGISTRY")
repo = os.getenv("AZURE_CONTAINER_REGISTRY_REPO")
print('### DEBUG ###')
print(f'container_registry: {container_registry}')
print(f'repo: {repo}')
print(f'postgres data host: {os.getenv("POSTGRES_DATA_HOST")}')

# Script is run from top directory
docker_compose_file = "docker-compose-deploy.yml"
Expand Down
4 changes: 2 additions & 2 deletions utils/recipes.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@ def initialize_vector_db():
COLLECTION_NAME = f"{mem_type}_embedding"
db[mem_type] = PGVector(
collection_name=COLLECTION_NAME,
connection_string=CONNECTION_STRING,git
connection_string=CONNECTION_STRING,
embedding_function=embedding_model,
create_extension=False
create_extension=False,
)
print(f'### {mem_type} SUCCESS ###')

Expand Down

0 comments on commit f9e6c4e

Please sign in to comment.