agent/pkg/agentic/state_example_test.go
Virgil c27af1435d feat(agentic): add session replay and shared state tools
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-31 13:39:24 +00:00

14 lines
215 B
Go

// SPDX-License-Identifier: EUPL-1.2
package agentic
import (
"fmt"
core "dappco.re/go/core"
)
func Example_statePath() {
fmt.Println(core.PathBase(statePath("ax-follow-up")))
// Output: ax-follow-up.json
}