(c *gin.Context)
| 296 | } |
| 297 | |
| 298 | func isOpenAICompatiblePath(c *gin.Context) bool { |
| 299 | if c == nil || c.Request == nil || c.Request.URL == nil { |
| 300 | return false |
| 301 | } |
| 302 | return strings.HasPrefix(c.Request.URL.Path, "/api/openai/") |
| 303 | } |
no outgoing calls
no test coverage detected