diff --git a/.github/workflows/smoketest.yaml b/.github/workflows/smoketest.yaml index 90d78b4..29c9edd 100644 --- a/.github/workflows/smoketest.yaml +++ b/.github/workflows/smoketest.yaml @@ -52,7 +52,7 @@ jobs: - name: Run tests env: - AI_API_ENDPOINT: ${{ secrets.AI_API_ENDPOINT }} + AI_API_TOKEN: ${{ secrets.AI_API_TOKEN }} GITHUB_AUTH_HEADER: "Bearer ${{ secrets.GITHUB_TOKEN }}" run: | diff --git a/README.md b/README.md index 725e15c..2cafec0 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Python >= 3.9 or Docker ## Configuration -Provide a GitHub token for an account that is entitled to use [GitHub Models](https://models.github.ai) via the `AI_API_ENDPOINT` environment variable. Further configuration is use case dependent, i.e. pending which MCP servers you'd like to use in your taskflows. +Provide a GitHub token for an account that is entitled to use [GitHub Models](https://models.github.ai) via the `AI_API_TOKEN` environment variable. Further configuration is use case dependent, i.e. pending which MCP servers you'd like to use in your taskflows. You can set persisting environment variables via an `.env` file in the project root. @@ -44,7 +44,7 @@ Example: ```sh # Tokens -AI_API_ENDPOINT= +AI_API_TOKEN= # MCP configs GITHUB_PERSONAL_ACCESS_TOKEN= CODEQL_DBS_BASE_PATH="/app/my_data/codeql_databases"