Compare commits

..

1 Commits

Author SHA1 Message Date
Richard Palethorpe
62e08bf900 fix(ui): Proxy avatars endpoint in dev mode
Signed-off-by: Richard Palethorpe <io@richiejp.com>
2025-04-14 11:55:02 +01:00
2 changed files with 2 additions and 1 deletions

View File

@@ -238,7 +238,7 @@ var _ = Describe("Agent test", func() {
defer agent.Stop()
result := agent.Ask(
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."),
types.WithText("plan a trip to San Francisco from Venice, Italy"),
)
Expect(len(result.State)).To(BeNumerically(">", 1))

View File

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