Lesson command runs prompts from YAML definitions with state tracking, sandwich signing, and interactive review mode. Sequence command runs multiple lessons in order (vertical/strict or horizontal/flexible). State files enable resume after interruption. Both output chat JSONL compatible with 'core ml train'. Co-Authored-By: Virgil <virgil@lethean.io>
8 lines
116 B
Go
8 lines
116 B
Go
//go:build darwin && arm64
|
|
|
|
package ml
|
|
|
|
func init() {
|
|
mlCmd.AddCommand(lessonCmd)
|
|
mlCmd.AddCommand(sequenceCmd)
|
|
}
|