Delete internal/multiagent directory

This commit is contained in:
公明
2026-07-11 10:45:21 +08:00
committed by GitHub
parent 612015b6d7
commit bec296ae3f
84 changed files with 0 additions and 11487 deletions
@@ -1,17 +0,0 @@
package multiagent
import "testing"
func TestUnwrapPlanExecuteUserText(t *testing.T) {
raw := `{"response": "你好!很高兴见到你。"}`
if got := UnwrapPlanExecuteUserText(raw); got != "你好!很高兴见到你。" {
t.Fatalf("got %q", got)
}
if got := UnwrapPlanExecuteUserText("plain"); got != "plain" {
t.Fatalf("got %q", got)
}
steps := `{"steps":["a","b"]}`
if got := UnwrapPlanExecuteUserText(steps); got != steps {
t.Fatalf("expected unchanged steps json, got %q", got)
}
}