Remove PythonPath references from MlxServerOptions and related configurations

This commit is contained in:
2025-09-17 21:59:55 +02:00
parent 587be68077
commit 5121f0e302
4 changed files with 2 additions and 15 deletions

View File

@@ -90,11 +90,6 @@ const basicMlxFieldsConfig: Record<string, {
description: 'The path to the MLX model weights, tokenizer, and config',
required: true
},
python_path: {
label: 'Python Virtual Environment Path',
placeholder: '/path/to/venv',
description: 'Path to Python virtual environment (optional)'
},
temp: {
label: 'Temperature',
placeholder: '0.0',

View File

@@ -176,7 +176,6 @@ export const MlxBackendOptionsSchema = z.object({
model: z.string().optional(),
host: z.string().optional(),
port: z.number().optional(),
python_path: z.string().optional(),
// Model and adapter options
adapter_path: z.string().optional(),