diff --git a/router/router.go b/router/router.go index 7cc7108..7a1e6b0 100644 --- a/router/router.go +++ b/router/router.go @@ -16,6 +16,7 @@ import ( "net/http/httputil" "net/url" "opencatd-open/pkg/azureopenai" + "opencatd-open/pkg/claude" "opencatd-open/store" "os" "path/filepath" @@ -472,6 +473,9 @@ func HandleProy(c *gin.Context) { if c.Request.URL.Path == "/v1/audio/transcriptions" { WhisperProxy(c) return + } else if c.Request.URL.Path == "/v1/complete" { + claude.ClaudeProxy(c) + return } if c.Request.URL.Path == "/v1/chat/completions" && localuser {