Compare commits

..

1 Commits

Author SHA1 Message Date
Richard Palethorpe
6c67a66677 fix(test): Encourage LLM to plan multiple searches
Signed-off-by: Richard Palethorpe <io@richiejp.com>
2025-04-14 15:31:53 +01:00
2 changed files with 1 additions and 2 deletions

View File

@@ -238,7 +238,7 @@ var _ = Describe("Agent test", func() {
defer agent.Stop() defer agent.Stop()
result := agent.Ask( 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)) Expect(len(result.State)).To(BeNumerically(">", 1))

View File

@@ -30,7 +30,6 @@ export default defineConfig(({ mode }) => {
'/status': backendUrl, '/status': backendUrl,
'/action': backendUrl, '/action': backendUrl,
'/actions': backendUrl, '/actions': backendUrl,
'/avatars': backendUrl
} }
} }
} }