first commit

This commit is contained in:
2026-06-12 11:36:33 -03:00
commit 56a420f5f8
69 changed files with 5667 additions and 0 deletions

20
k8s/cronjob.yaml Normal file
View File

@@ -0,0 +1,20 @@
apiVersion: batch/v1
kind: CronJob
metadata:
name: agent-framework-evaluator
spec:
schedule: "0 2 * * *"
suspend: true
concurrencyPolicy: Forbid
jobTemplate:
spec:
template:
spec:
restartPolicy: Never
containers:
- name: evaluator
image: agent-framework-evaluator:latest
command: ["python", "-m", "evaluator.cli", "run-agents", "--source", "langfuse"]
envFrom:
- secretRef:
name: agent-framework-evaluator-env