From cf7d41cec2e2a6d5ea879ece7034be944000da4a Mon Sep 17 00:00:00 2001 From: Andrej Milicevic Date: Tue, 26 Aug 2025 09:35:53 +0200 Subject: [PATCH] Fix --- .github/workflows/basic_tests.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/basic_tests.yml b/.github/workflows/basic_tests.yml index 2173b228e..e2264da3d 100644 --- a/.github/workflows/basic_tests.yml +++ b/.github/workflows/basic_tests.yml @@ -103,6 +103,16 @@ jobs: integration-tests: name: Run Integration Tests runs-on: ubuntu-22.04 + env: + LLM_PROVIDER: openai + LLM_MODEL: ${{ secrets.LLM_MODEL }} + LLM_ENDPOINT: ${{ secrets.LLM_ENDPOINT }} + LLM_API_KEY: ${{ secrets.LLM_API_KEY }} + LLM_API_VERSION: ${{ secrets.LLM_API_VERSION }} + EMBEDDING_MODEL: ${{ secrets.EMBEDDING_MODEL }} + EMBEDDING_ENDPOINT: ${{ secrets.EMBEDDING_ENDPOINT }} + EMBEDDING_API_KEY: ${{ secrets.EMBEDDING_API_KEY }} + EMBEDDING_API_VERSION: ${{ secrets.EMBEDDING_API_VERSION }} steps: - name: Check out repository uses: actions/checkout@v4