提交

examples: add smallest first agent (#3920)

Co-authored-by: Codex <codex@openai.com>
这个提交包含在:
Asim Aslam
2026-07-04 12:13:08 +01:00
提交者 GitHub
父节点 100c7e11b9
当前提交 ebc315505b
修改 6 个文件,包含 208 行新增10 行删除
+9
查看文件
@@ -0,0 +1,9 @@
package main
import "testing"
func TestRunFirstAgent(t *testing.T) {
if err := runFirstAgent(); err != nil {
t.Fatalf("first-agent example failed: %v", err)
}
}