package proxy import ( "bytes" "context" "encoding/json" "fmt" "io" "net/http" "os" "os/exec" "strings" "sync" "syscall" "time" ) type ProxyManager struct { sync.Mutex config *Config currentCmd *exec.Cmd currentConfig ModelConfig } func New(config *Config) *ProxyManager { return &ProxyManager{config: config} } func (pm *ProxyManager) HandleFunc(w http.ResponseWriter, r *http.Request) { // https://github.com/ggerganov/llama.cpp/blob/master/examples/server/README.md#api-endpoints if r.URL.Path == "/v1/chat/completions" { // extracts the `model` from json body pm.proxyChatRequest(w, r) } else { pm.proxyRequest(w, r) } } func (pm *ProxyManager) swapModel(requestedModel string) error { pm.Lock() defer pm.Unlock() // find the model configuration matching requestedModel modelConfig, found := pm.config.FindConfig(requestedModel) if !found { return fmt.Errorf("could not find configuration for %s", requestedModel) } // no need to swap llama.cpp instances if pm.currentConfig.Cmd == modelConfig.Cmd { return nil } // kill the current running one to swap it if pm.currentCmd != nil { pm.currentCmd.Process.Signal(syscall.SIGTERM) // wait for it to end pm.currentCmd.Process.Wait() } pm.currentConfig = modelConfig args := strings.Fields(modelConfig.Cmd) cmd := exec.Command(args[0], args[1:]...) cmd.Stdout = os.Stdout cmd.Stderr = os.Stderr cmd.Env = modelConfig.Env err := cmd.Start() if err != nil { return err } pm.currentCmd = cmd if err := pm.checkHealthEndpoint(); err != nil { return err } return nil } func (pm *ProxyManager) checkHealthEndpoint() error { if pm.currentConfig.Proxy == "" { return fmt.Errorf("no upstream available to check /health") } proxyTo := pm.currentConfig.Proxy maxDuration := time.Second * time.Duration(pm.config.HealthCheckTimeout) healthURL := proxyTo + "/health" client := &http.Client{} startTime := time.Now() for { req, err := http.NewRequest("GET", healthURL, nil) if err != nil { return err } ctx, cancel := context.WithTimeout(req.Context(), 250*time.Millisecond) defer cancel() req = req.WithContext(ctx) resp, err := client.Do(req) if err != nil { if strings.Contains(err.Error(), "connection refused") { // if TCP dial can't connect any HTTP response after 5 seconds // exit quickly. if time.Since(startTime) > 5*time.Second { return fmt.Errorf("/healthy endpoint took more than 5 seconds to respond") } } if time.Since(startTime) >= maxDuration { return fmt.Errorf("failed to check /healthy from: %s", healthURL) } time.Sleep(time.Second) continue } defer resp.Body.Close() if resp.StatusCode == http.StatusOK { return nil } if time.Since(startTime) >= maxDuration { return fmt.Errorf("failed to check /healthy from: %s", healthURL) } time.Sleep(time.Second) } } func (pm *ProxyManager) proxyChatRequest(w http.ResponseWriter, r *http.Request) { bodyBytes, err := io.ReadAll(r.Body) if err != nil { http.Error(w, "Invalid JSON", http.StatusBadRequest) return } var requestBody map[string]interface{} if err := json.Unmarshal(bodyBytes, &requestBody); err != nil { http.Error(w, "Invalid JSON", http.StatusBadRequest) return } model, ok := requestBody["model"].(string) if !ok { http.Error(w, "Missing or invalid 'model' key", http.StatusBadRequest) return } if err := pm.swapModel(model); err != nil { http.Error(w, fmt.Sprintf("unable to swap to model: %s", err.Error()), http.StatusNotFound) return } r.Body = io.NopCloser(bytes.NewBuffer(bodyBytes)) pm.proxyRequest(w, r) } func (pm *ProxyManager) proxyRequest(w http.ResponseWriter, r *http.Request) { if pm.currentConfig.Proxy == "" { http.Error(w, "No upstream proxy", http.StatusInternalServerError) return } proxyTo := pm.currentConfig.Proxy client := &http.Client{} req, err := http.NewRequest(r.Method, proxyTo+r.URL.String(), r.Body) if err != nil { http.Error(w, err.Error(), http.StatusInternalServerError) return } req.Header = r.Header resp, err := client.Do(req) if err != nil { http.Error(w, err.Error(), http.StatusBadGateway) return } defer resp.Body.Close() for k, vv := range resp.Header { for _, v := range vv { w.Header().Add(k, v) } } w.WriteHeader(resp.StatusCode) // faster than io.Copy when streaming buf := make([]byte, 32*1024) for { n, err := resp.Body.Read(buf) if n > 0 { if _, writeErr := w.Write(buf[:n]); writeErr != nil { http.Error(w, writeErr.Error(), http.StatusInternalServerError) return } if flusher, ok := w.(http.Flusher); ok { flusher.Flush() } } if err == io.EOF { break } if err != nil { http.Error(w, err.Error(), http.StatusBadGateway) return } } }