> For the complete documentation index, see [llms.txt](https://docs.layerlens.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.layerlens.ai/6.-build-wire-your-code/integration-gitlab-ci.md).

# GitLab CI

Recipe — GitLab CI evaluation gate.

```yaml
ai-eval:
 image: python:3.11
 rules:
 - changes: ["src/prompts/**/*"]
 script:
 - pip install layerlens --extra-index-url https://sdk.layerlens.ai/package
 - python scripts/ci-eval.py
 variables:
 LAYERLENS_STRATIX_API_KEY: $LAYERLENS_STRATIX_API_KEY
```

## See also

* [Tutorial 3: CI/CD gates](/6.-build-wire-your-code/03-cicd-gates.md)
