revert fix(agentic): harden TODO workspace write Co-Authored-By: Virgil <virgil@lethean.io>
15 lines
232 B
Go
15 lines
232 B
Go
// SPDX-License-Identifier: EUPL-1.2
|
|
|
|
package agentic
|
|
|
|
import (
|
|
core "dappco.re/go/core"
|
|
)
|
|
|
|
func Example_baseAgent() {
|
|
core.Println(baseAgent("codex:gpt-5.4"))
|
|
core.Println(baseAgent("claude"))
|
|
// Output:
|
|
// codex
|
|
// claude
|
|
}
|