agent/pkg/agentic/dispatch_sync_example_test.go
Virgil 130b2c84d1 fix(agentic): align workspace mount and repo sync
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-31 14:54:32 +00:00

14 lines
324 B
Go

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