Limit inline comments via REVIEW_MAX_COMMENTS
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 36s
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 36s
This commit is contained in:
@@ -27,6 +27,7 @@ Create a `.env` file with the following variables:
|
||||
| `GITEA_TOKEN` | **Yes** | A Gitea Access Token. Required permissions: `repository` (Read), `issue` (Read and Write). | |
|
||||
| `GITEA_API_URL` | **Yes** | Full URL to your Gitea API (e.g., `https://git.example.com/api/v1`). | |
|
||||
| `PORT` | No | Host port to expose the webhook server on. | `3000` |
|
||||
| `REVIEW_MAX_COMMENTS` | No | Maximum number of inline comments per review. Set to `0` to disable. | `3` |
|
||||
| `OPENAI_API_KEY` | **Yes** | API Key for your LLM provider. Use `dummy` for local models if no auth needed. | |
|
||||
| `OPENAI_BASE_URL` | No | Base URL for the LLM API. Set this for Ollama/vLLM (e.g. `http://host.docker.internal:11434/v1/`). | `https://api.openai.com/v1/` |
|
||||
| `LLM_MODEL` | No | The model name to request (e.g. `gpt-4o`, `llama3.1`). | `gpt-4o` |
|
||||
|
||||
@@ -18,6 +18,8 @@ services:
|
||||
- VCS__PROVIDER=GITEA
|
||||
- VCS__HTTP_CLIENT__API_TOKEN=${GITEA_TOKEN}
|
||||
- VCS__HTTP_CLIENT__API_URL=${GITEA_API_URL}
|
||||
# Review Config
|
||||
- REVIEW__MAX_INLINE_COMMENTS=${REVIEW_MAX_COMMENTS:-3}
|
||||
volumes:
|
||||
- xai-cache:/root/.cache
|
||||
|
||||
|
||||
Reference in New Issue
Block a user