From 7ded339ba0d9a061003d5b11a44a5cc4da3886ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Banaszewski?= Date: Wed, 28 Jan 2026 12:30:39 +0000 Subject: [PATCH] fix: add missing pass through paths --- provider/anthropic.go | 1 + provider/copilot.go | 1 + 2 files changed, 2 insertions(+) diff --git a/provider/anthropic.go b/provider/anthropic.go index 129badf..1c58636 100644 --- a/provider/anthropic.go +++ b/provider/anthropic.go @@ -72,6 +72,7 @@ func (p *Anthropic) PassthroughRoutes() []string { "/v1/models", "/v1/models/", // See https://pkg.go.dev/net/http#hdr-Trailing_slash_redirection-ServeMux. "/v1/messages/count_tokens", + "/api/event_logging/", } } diff --git a/provider/copilot.go b/provider/copilot.go index dae8f54..195361a 100644 --- a/provider/copilot.go +++ b/provider/copilot.go @@ -87,6 +87,7 @@ func (p *Copilot) PassthroughRoutes() []string { "/models/", "/agents/", "/mcp/", + "/.well-known/", } }