15 lines
308 B
Go
15 lines
308 B
Go
|
|
// SPDX-License-Identifier: EUPL-1.2
|
||
|
|
|
||
|
|
package agentic
|
||
|
|
|
||
|
|
import core "dappco.re/go/core"
|
||
|
|
|
||
|
|
func Example_containerCommand() {
|
||
|
|
cmd, args := containerCommand("codex", "codex", []string{"--model", "gpt-5.4"}, "/workspace", "/meta")
|
||
|
|
core.Println(cmd)
|
||
|
|
core.Println(len(args) > 0)
|
||
|
|
// Output:
|
||
|
|
// docker
|
||
|
|
// true
|
||
|
|
}
|