// Code scaffolded by goctl. Safe to edit. // goctl 1.10.1 package chat import ( "net/http" "cursor-api-proxy/internal/logic/chat" "cursor-api-proxy/internal/svc" "cursor-api-proxy/internal/types" "github.com/zeromicro/go-zero/rest/httpx" ) func AnthropicMessagesHandler(svcCtx *svc.ServiceContext) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { var req types.AnthropicRequest if err := httpx.Parse(r, &req); err != nil { httpx.ErrorCtx(r.Context(), w, err) return } l := chat.NewAnthropicMessagesLogic(r.Context(), svcCtx) err := l.AnthropicMessages(&req) if err != nil { httpx.ErrorCtx(r.Context(), w, err) } else { httpx.Ok(w) } } }