Turn verified runs into reusable guidanceYou accumulate situational guidance from live feedback or a verified task set. Evolution keeps grounded advice that improves performance without unacceptable held-out regression.pythonacademyacademy/topics/playbook-learningwebsite/content-src/academy/course.mjsacademyTurn verified runs into reusable guidance
You accumulate situational guidance from live feedback or a verified task set. Evolution keeps grounded advice that improves performance without unacceptable held-out regression.
playbook()9 focused minutesNot started
Worked example
See the idea in context
from axllm import playbook
pb = playbook(program, {"studentAI": student_ai})
pb.evolve(examples, metric) # grow a playbook offline from examples
pb.update({"example": ex, "prediction": pred, "feedback": "..."}) # refine online
pb.apply_to(program)