diff --git a/.github/workflows/build-and-push-image.yaml b/.github/workflows/build-and-push-image.yaml index 943af5526685d50a7937be8687dc9ffe54e1bea3..6be26613ce5f58c9ae89c13fa703eef565094a7a 100644 --- a/.github/workflows/build-and-push-image.yaml +++ b/.github/workflows/build-and-push-image.yaml @@ -8,6 +8,7 @@ on: - 'cloud-deployments/*' - 'images/*' - '.vscode/*' + - '.env.example' jobs: push_to_registries: diff --git a/docker/.env.example b/docker/.env.example index 1a1511f68a9add787e5071d32a4289afe7ff78b4..9b2b24c3faabe6769bcb5e510e218e7453e679c3 100644 --- a/docker/.env.example +++ b/docker/.env.example @@ -53,7 +53,7 @@ GID='1000' # EMBEDDING_MODEL_PREF='my-embedder-model' # This is the "deployment" on Azure you want to use for embeddings. Not the base model. Valid base model is text-embedding-ada-002 # EMBEDDING_ENGINE='localai' -# EMBEDDING_BASE_PATH='https://localhost:8080/v1' +# EMBEDDING_BASE_PATH='http://localhost:8080/v1' # EMBEDDING_MODEL_PREF='text-embedding-ada-002' # EMBEDDING_MODEL_MAX_CHUNK_LENGTH=1000 # The max chunk size in chars a string to embed can be diff --git a/server/.env.example b/server/.env.example index 93a1d7664f3769f2b45afb27fa47c2fb906b4c1e..5b159a03d0e3d4ffe94f9889dc9ceadb44be5d22 100644 --- a/server/.env.example +++ b/server/.env.example @@ -50,7 +50,7 @@ JWT_SECRET="my-random-string-for-seeding" # Please generate random string at lea # EMBEDDING_MODEL_PREF='my-embedder-model' # This is the "deployment" on Azure you want to use for embeddings. Not the base model. Valid base model is text-embedding-ada-002 # EMBEDDING_ENGINE='localai' -# EMBEDDING_BASE_PATH='https://localhost:8080/v1' +# EMBEDDING_BASE_PATH='http://localhost:8080/v1' # EMBEDDING_MODEL_PREF='text-embedding-ada-002' # EMBEDDING_MODEL_MAX_CHUNK_LENGTH=1000 # The max chunk size in chars a string to embed can be