1 Commits

Author SHA1 Message Date
Ben
ff469f84f1 docs: trigger AI review attempt 2 2026-01-01 05:30:11 +00:00
2 changed files with 1 additions and 7 deletions

View File

@@ -12,7 +12,7 @@ A webhook-based service that automatically generates AI code reviews for Gitea P
## Deployment ## Deployment
### Docker Compose ### Docker Compose
Run the container using the provided `compose.yaml`. Run the container using the provided `compose.yaml`. This will start the service in daemon mode.
```bash ```bash
docker compose up -d docker compose up -d
@@ -27,8 +27,6 @@ Create a `.env` file with the following variables:
| `GITEA_TOKEN` | **Yes** | A Gitea Access Token. Required permissions: `repository` (Read), `issue` (Read and Write). | | | `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`). | | | `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` | | `PORT` | No | Host port to expose the webhook server on. | `3000` |
| `REVIEW_MAX_COMMENTS` | No | Maximum total AI comments per PR (context review). Set to `0` to disable. | `3` |
| `REVIEW_MAX_INLINE_COMMENTS` | No | Maximum inline comments per file. 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_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/` | | `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` | | `LLM_MODEL` | No | The model name to request (e.g. `gpt-4o`, `llama3.1`). | `gpt-4o` |

View File

@@ -11,7 +11,6 @@ services:
# LLM Configuration # LLM Configuration
- LLM__PROVIDER=${LLM_PROVIDER:-OPENAI} - LLM__PROVIDER=${LLM_PROVIDER:-OPENAI}
- LLM__META__MODEL=${LLM_MODEL:-gpt-4o} - LLM__META__MODEL=${LLM_MODEL:-gpt-4o}
- LLM__META__TEMPERATURE=${LLM_TEMPERATURE:-0.2}
# OpenAI / Compatible API Config # OpenAI / Compatible API Config
- LLM__HTTP_CLIENT__API_TOKEN=${OPENAI_API_KEY} - LLM__HTTP_CLIENT__API_TOKEN=${OPENAI_API_KEY}
- LLM__HTTP_CLIENT__API_URL=${OPENAI_BASE_URL:-https://api.openai.com/v1/} - LLM__HTTP_CLIENT__API_URL=${OPENAI_BASE_URL:-https://api.openai.com/v1/}
@@ -19,9 +18,6 @@ services:
- VCS__PROVIDER=GITEA - VCS__PROVIDER=GITEA
- VCS__HTTP_CLIENT__API_TOKEN=${GITEA_TOKEN} - VCS__HTTP_CLIENT__API_TOKEN=${GITEA_TOKEN}
- VCS__HTTP_CLIENT__API_URL=${GITEA_API_URL} - VCS__HTTP_CLIENT__API_URL=${GITEA_API_URL}
# Review Config (inline=per file, context=per MR total)
- REVIEW__MAX_INLINE_COMMENTS=${REVIEW_MAX_INLINE_COMMENTS:-3}
- REVIEW__MAX_CONTEXT_COMMENTS=${REVIEW_MAX_COMMENTS:-3}
volumes: volumes:
- xai-cache:/root/.cache - xai-cache:/root/.cache