agent/pkg/agentic/prep_example_test.go
Virgil 6c246a7165 docs(ax): add remaining usage examples
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-30 00:20:03 +00:00

23 lines
423 B
Go

// SPDX-License-Identifier: EUPL-1.2
package agentic
import core "dappco.re/go/core"
func ExampleAgentOptions() {
opts := AgentOptions{}
core.Println(opts == AgentOptions{})
// Output: true
}
func ExamplePrepInput() {
input := PrepInput{Repo: "go-io", Issue: 42}
core.Println(input.Repo, input.Issue)
// Output: go-io 42
}
func ExampleNewPrep() {
prep := NewPrep()
core.Println(prep != nil)
// Output: true
}