Clarify listener wording: Ollama-compatible clients, not Ollama-facing
This commit is contained in:
@@ -438,7 +438,7 @@ func isLLMRequest(r *http.Request) bool {
|
||||
return r.Method == http.MethodPost && llmPaths[r.URL.Path]
|
||||
}
|
||||
|
||||
// OllamaHandler serves the Ollama-facing listener.
|
||||
// OllamaHandler serves the listener for Ollama-compatible clients.
|
||||
func (s *Server) OllamaHandler() http.Handler {
|
||||
return s.logRequests("ollama", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
switch r.URL.Path {
|
||||
@@ -485,7 +485,7 @@ func (s *Server) OllamaHandler() http.Handler {
|
||||
}))
|
||||
}
|
||||
|
||||
// ComfyHandler serves the ComfyUI-facing listener.
|
||||
// ComfyHandler serves the listener for ComfyUI clients.
|
||||
func (s *Server) ComfyHandler() http.Handler {
|
||||
return s.logRequests("comfy", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
switch r.URL.Path {
|
||||
|
||||
Reference in New Issue
Block a user