From 8f3d97fea146548771760910a74f292752293925 Mon Sep 17 00:00:00 2001 From: Kevin Backhouse Date: Wed, 3 Dec 2025 11:34:45 +0000 Subject: [PATCH] Fix a few places where it should have said AI_API_TOKEN, not AI_API_ENDPOINT. --- .github/workflows/smoketest.yaml | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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"