From 77189b61143692951a4c2d7f39dcf02ddafe6222 Mon Sep 17 00:00:00 2001 From: Richard Palethorpe Date: Mon, 14 Apr 2025 16:35:19 +0100 Subject: [PATCH] fix(test): Encourage LLM to plan multiple searches (#36) Signed-off-by: Richard Palethorpe --- core/agent/agent_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/agent/agent_test.go b/core/agent/agent_test.go index 8f00fbc..2f06c30 100644 --- a/core/agent/agent_test.go +++ b/core/agent/agent_test.go @@ -238,7 +238,7 @@ var _ = Describe("Agent test", func() { defer agent.Stop() result := agent.Ask( - types.WithText("plan a trip to San Francisco from Venice, Italy"), + types.WithText("Thoroughly plan a trip to San Francisco from Venice, Italy; check flight times, visa requirements and whether electrical items are allowed in cabin luggage."), ) Expect(len(result.State)).To(BeNumerically(">", 1))