2 Commits

Author SHA1 Message Date
Ben
a152406475 Fix API URL slash suffix
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 36s
2026-01-01 05:20:29 +00:00
Ben
c815464849 docs: test AI review trigger 2026-01-01 05:17:04 +00:00
2 changed files with 2 additions and 1 deletions

View File

@@ -4,6 +4,7 @@
A webhook-based service that automatically generates AI code reviews for Gitea Pull Requests using [xai-review](https://github.com/Nikita-Filonov/ai-review).
## Features
* **Integrated with AI**: Uses advanced LLMs for code analysis.
* **Zero-config per repository**: Works via a single Gitea System Webhook (or per-repo webhook).
* **Custom LLM Support**: Configuring it to use OpenAI, Ollama, vLLM, or any OpenAI-compatible endpoint.
* **Secure**: Runs in an isolated Docker container with strict context passed via environment variables.

View File

@@ -17,7 +17,7 @@ services:
# VCS Config
- VCS__PROVIDER=GITEA
- VCS__HTTP_CLIENT__API_TOKEN=${GITEA_TOKEN}
- VCS__HTTP_CLIENT__API_URL=${GITEA_API_URL:-http://gitea-server:3000/api/v1}
- VCS__HTTP_CLIENT__API_URL=${GITEA_API_URL:-http://gitea-server:3000/api/v1/}
volumes:
- xai-cache:/root/.cache