(w http.ResponseWriter, r *http.Request)
| 285 | } |
| 286 | |
| 287 | func (s *Server) handleResponses(w http.ResponseWriter, r *http.Request) { |
| 288 | pproflabel.Do(r.Context(), pproflabel.Service("llm-mock"), func(ctx context.Context) { |
| 289 | s.handleResponsesWithLabels(w, r.WithContext(ctx)) |
| 290 | }) |
| 291 | } |
| 292 | |
| 293 | func (s *Server) handleResponsesWithLabels(w http.ResponseWriter, r *http.Request) { |
| 294 | s.logger.Debug(r.Context(), "handling OpenAI responses request") |
nothing calls this directly
no test coverage detected