For the complete documentation index, see llms.txt. This page is also available as Markdown.

Jenkins

Recipe — Jenkins evaluation gate.

pipeline {
 agent any
 environment { LAYERLENS_STRATIX_API_KEY = credentials('layerlens-key') }
 stages {
 stage('AI Eval') {
 steps {
 sh 'pip install layerlens --extra-index-url https://sdk.layerlens.ai/package'
 sh 'python scripts/ci-eval.py'
 }
 }
 }
}

See also

Last updated

Was this helpful?