mirror of
https://github.com/open-webui/pipelines
synced 2025-05-11 16:10:45 +00:00
Merge pull request #139 from justinh-rahb/mlx-manifold
feat: Add MLX Manifold Pipeline
This commit is contained in:
commit
98604da8ec
211
examples/pipelines/providers/mlx_manifold_pipeline.py
Normal file
211
examples/pipelines/providers/mlx_manifold_pipeline.py
Normal file
@ -0,0 +1,211 @@
|
||||
"""
|
||||
title: MLX Manifold Pipeline
|
||||
author: justinh-rahb
|
||||
date: 2024-05-28
|
||||
version: 2.0
|
||||
license: MIT
|
||||
description: A pipeline for generating text using Apple MLX Framework with dynamic model loading.
|
||||
requirements: requests, mlx-lm, huggingface-hub, psutil
|
||||
"""
|
||||
|
||||
from typing import List, Union, Generator, Iterator
|
||||
from schemas import OpenAIChatMessage
|
||||
from pydantic import BaseModel
|
||||
import requests
|
||||
import subprocess
|
||||
import logging
|
||||
from huggingface_hub import login
|
||||
import time
|
||||
import psutil
|
||||
|
||||
class Pipeline:
|
||||
class Valves(BaseModel):
|
||||
MLX_DEFAULT_MODEL: str = "mlx-community/Meta-Llama-3-8B-Instruct-8bit"
|
||||
MLX_MODEL_FILTER: str = "mlx-community"
|
||||
MLX_STOP: str = "<|start_header_id|>,<|end_header_id|>,<|eot_id|>"
|
||||
MLX_CHAT_TEMPLATE: str | None = None
|
||||
MLX_USE_DEFAULT_CHAT_TEMPLATE: bool | None = False
|
||||
HUGGINGFACE_TOKEN: str | None = None
|
||||
|
||||
def __init__(self):
|
||||
# Pipeline identification
|
||||
self.type = "manifold"
|
||||
self.id = "mlx"
|
||||
self.name = "MLX/"
|
||||
|
||||
# Initialize valves and update them
|
||||
self.valves = self.Valves()
|
||||
self.update_valves()
|
||||
|
||||
# Server configuration
|
||||
self.host = "localhost" # Always use localhost for security
|
||||
self.port = None # Port will be dynamically assigned
|
||||
|
||||
# Model management
|
||||
self.models = self.get_mlx_models()
|
||||
self.current_model = None
|
||||
self.server_process = None
|
||||
|
||||
# Start the MLX server with the default model
|
||||
self.start_mlx_server(self.valves.MLX_DEFAULT_MODEL)
|
||||
|
||||
def update_valves(self):
|
||||
"""Update pipeline configuration based on valve settings."""
|
||||
if self.valves.HUGGINGFACE_TOKEN:
|
||||
login(self.valves.HUGGINGFACE_TOKEN)
|
||||
self.stop_sequence = self.valves.MLX_STOP.split(",")
|
||||
|
||||
def get_mlx_models(self):
|
||||
"""Fetch available MLX models based on the specified pattern."""
|
||||
try:
|
||||
cmd = [
|
||||
'mlx_lm.manage',
|
||||
'--scan',
|
||||
'--pattern', self.valves.MLX_MODEL_FILTER,
|
||||
]
|
||||
result = subprocess.run(cmd, capture_output=True, text=True)
|
||||
lines = result.stdout.strip().split('\n')
|
||||
|
||||
content_lines = [line for line in lines if line and not line.startswith('-')]
|
||||
|
||||
models = []
|
||||
for line in content_lines[2:]: # Skip header lines
|
||||
parts = line.split()
|
||||
if len(parts) >= 2:
|
||||
repo_id = parts[0]
|
||||
models.append({
|
||||
"id": f"{repo_id.split('/')[-1].lower()}",
|
||||
"name": repo_id
|
||||
})
|
||||
if not models:
|
||||
# Add default model if no models are found
|
||||
models.append({
|
||||
"id": f"mlx.{self.valves.MLX_DEFAULT_MODEL.split('/')[-1].lower()}",
|
||||
"name": self.valves.MLX_DEFAULT_MODEL
|
||||
})
|
||||
return models
|
||||
except Exception as e:
|
||||
logging.error(f"Error fetching MLX models: {e}")
|
||||
# Return default model on error
|
||||
return [{
|
||||
"id": f"mlx.{self.valves.MLX_DEFAULT_MODEL.split('/')[-1].lower()}",
|
||||
"name": self.valves.MLX_DEFAULT_MODEL
|
||||
}]
|
||||
|
||||
def pipelines(self) -> List[dict]:
|
||||
"""Return the list of available models as pipelines."""
|
||||
return self.models
|
||||
|
||||
def start_mlx_server(self, model_name):
|
||||
"""Start the MLX server with the specified model."""
|
||||
model_id = f"mlx.{model_name.split('/')[-1].lower()}"
|
||||
if self.current_model == model_id and self.server_process and self.server_process.poll() is None:
|
||||
logging.info(f"MLX server already running with model {model_name}")
|
||||
return
|
||||
|
||||
self.stop_mlx_server()
|
||||
|
||||
self.port = self.find_free_port()
|
||||
|
||||
command = [
|
||||
"mlx_lm.server",
|
||||
"--model", model_name,
|
||||
"--port", str(self.port),
|
||||
]
|
||||
|
||||
# Add chat template options if specified
|
||||
if self.valves.MLX_CHAT_TEMPLATE:
|
||||
command.extend(["--chat-template", self.valves.MLX_CHAT_TEMPLATE])
|
||||
elif self.valves.MLX_USE_DEFAULT_CHAT_TEMPLATE:
|
||||
command.append("--use-default-chat-template")
|
||||
|
||||
logging.info(f"Starting MLX server with command: {' '.join(command)}")
|
||||
self.server_process = subprocess.Popen(command)
|
||||
self.current_model = model_id
|
||||
logging.info(f"Started MLX server for model {model_name} on port {self.port}")
|
||||
time.sleep(5) # Give the server some time to start up
|
||||
|
||||
def stop_mlx_server(self):
|
||||
"""Stop the currently running MLX server."""
|
||||
if self.server_process:
|
||||
try:
|
||||
process = psutil.Process(self.server_process.pid)
|
||||
for proc in process.children(recursive=True):
|
||||
proc.terminate()
|
||||
process.terminate()
|
||||
process.wait(timeout=10) # Wait for the process to terminate
|
||||
except psutil.NoSuchProcess:
|
||||
pass # Process already terminated
|
||||
except psutil.TimeoutExpired:
|
||||
logging.warning("Timeout while terminating MLX server process")
|
||||
finally:
|
||||
self.server_process = None
|
||||
self.current_model = None
|
||||
self.port = None
|
||||
logging.info("Stopped MLX server")
|
||||
|
||||
def find_free_port(self):
|
||||
"""Find and return a free port to use for the MLX server."""
|
||||
import socket
|
||||
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
||||
s.bind(("", 0))
|
||||
port = s.getsockname()[1]
|
||||
s.close()
|
||||
return port
|
||||
|
||||
async def on_startup(self):
|
||||
"""Perform any necessary startup operations."""
|
||||
logging.info(f"on_startup:{__name__}")
|
||||
|
||||
async def on_shutdown(self):
|
||||
"""Perform cleanup operations on shutdown."""
|
||||
self.stop_mlx_server()
|
||||
|
||||
async def on_valves_updated(self):
|
||||
"""Handle updates to the pipeline configuration."""
|
||||
self.update_valves()
|
||||
self.models = self.get_mlx_models()
|
||||
self.start_mlx_server(self.valves.MLX_DEFAULT_MODEL)
|
||||
|
||||
def pipe(
|
||||
self, user_message: str, model_id: str, messages: List[dict], body: dict
|
||||
) -> Union[str, Generator, Iterator]:
|
||||
"""Process a request through the MLX pipeline."""
|
||||
logging.info(f"pipe:{__name__}")
|
||||
|
||||
# Switch model if necessary
|
||||
if model_id != self.current_model:
|
||||
model_name = next((model['name'] for model in self.models if model['id'] == model_id), self.valves.MLX_DEFAULT_MODEL)
|
||||
self.start_mlx_server(model_name)
|
||||
|
||||
url = f"http://{self.host}:{self.port}/v1/chat/completions"
|
||||
headers = {"Content-Type": "application/json"}
|
||||
|
||||
# Prepare the payload for the MLX server
|
||||
max_tokens = body.get("max_tokens", 4096)
|
||||
temperature = body.get("temperature", 0.8)
|
||||
repeat_penalty = body.get("repeat_penalty", 1.0)
|
||||
|
||||
payload = {
|
||||
"messages": messages,
|
||||
"max_tokens": max_tokens,
|
||||
"temperature": temperature,
|
||||
"repetition_penalty": repeat_penalty,
|
||||
"stop": self.stop_sequence,
|
||||
"stream": body.get("stream", False),
|
||||
}
|
||||
|
||||
try:
|
||||
# Send request to MLX server
|
||||
r = requests.post(
|
||||
url, headers=headers, json=payload, stream=body.get("stream", False)
|
||||
)
|
||||
r.raise_for_status()
|
||||
|
||||
# Return streamed response or full JSON response
|
||||
if body.get("stream", False):
|
||||
return r.iter_lines()
|
||||
else:
|
||||
return r.json()
|
||||
except Exception as e:
|
||||
return f"Error: {e}"
|
Loading…
Reference in New Issue
Block a user