diff --git a/.github/workflows/cli-release.yml b/.github/workflows/cli-release.yml index f532ee4e3..0cc223ba7 100644 --- a/.github/workflows/cli-release.yml +++ b/.github/workflows/cli-release.yml @@ -135,7 +135,7 @@ jobs: echo "Extracted version: $VERSION" - name: Create Release id: create_the_release - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2.0.0 with: tag_name: v${{ steps.get_version.outputs.version }} name: Release v${{ steps.get_version.outputs.version }} diff --git a/docker-compose.yml b/docker-compose.yml index 59e766174..5987dab23 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -33,6 +33,12 @@ services: - EMBEDDING_MODEL=${EMBEDDING_MODEL} - COHERE_API_KEY=${COHERE_API_KEY} - ENVIRONMENT=${ENVIRONMENT} + - LOG_LEVEL=${LOG_LEVEL} + - RERANK_API_KEY=${RERANK_API_KEY} + - RERANK_MODEL=${RERANK_MODEL} + - RERANK_BASE_URL=${RERANK_BASE_URL} + - LLM_API_KEY=${LLM_API_KEY} + - LLM_BASE_URL=${LLM_BASE_URL} ports: - "3001:3001" - "3000:3000"