Merge pull request #6477 from menloresearch/fix/valdidate-mmproj
fix: validate mmproj from general basename
This commit is contained in:
commit
93807745cd
@ -10,7 +10,7 @@ import {
|
|||||||
import { Button } from '@/components/ui/button'
|
import { Button } from '@/components/ui/button'
|
||||||
import { Switch } from '@/components/ui/switch'
|
import { Switch } from '@/components/ui/switch'
|
||||||
import { useServiceHub } from '@/hooks/useServiceHub'
|
import { useServiceHub } from '@/hooks/useServiceHub'
|
||||||
import { useState } from 'react'
|
import { useState, useEffect, useCallback } from 'react'
|
||||||
import { toast } from 'sonner'
|
import { toast } from 'sonner'
|
||||||
import {
|
import {
|
||||||
IconLoader2,
|
IconLoader2,
|
||||||
@ -44,7 +44,7 @@ export const ImportVisionModelDialog = ({
|
|||||||
>(null)
|
>(null)
|
||||||
const [isValidatingMmproj, setIsValidatingMmproj] = useState(false)
|
const [isValidatingMmproj, setIsValidatingMmproj] = useState(false)
|
||||||
|
|
||||||
const validateGgufFile = async (
|
const validateGgufFile = useCallback(async (
|
||||||
filePath: string,
|
filePath: string,
|
||||||
fileType: 'model' | 'mmproj'
|
fileType: 'model' | 'mmproj'
|
||||||
): Promise<void> => {
|
): Promise<void> => {
|
||||||
@ -57,8 +57,6 @@ export const ImportVisionModelDialog = ({
|
|||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
console.log(`Reading GGUF metadata for ${fileType}:`, filePath)
|
|
||||||
|
|
||||||
// Handle validation differently for model files vs mmproj files
|
// Handle validation differently for model files vs mmproj files
|
||||||
if (fileType === 'model') {
|
if (fileType === 'model') {
|
||||||
// For model files, use the standard validateGgufFile method
|
// For model files, use the standard validateGgufFile method
|
||||||
@ -66,16 +64,16 @@ export const ImportVisionModelDialog = ({
|
|||||||
const result = await serviceHub.models().validateGgufFile(filePath)
|
const result = await serviceHub.models().validateGgufFile(filePath)
|
||||||
|
|
||||||
if (result.metadata) {
|
if (result.metadata) {
|
||||||
// Log full metadata for debugging
|
|
||||||
console.log(
|
|
||||||
`Full GGUF metadata for ${fileType}:`,
|
|
||||||
JSON.stringify(result.metadata, null, 2)
|
|
||||||
)
|
|
||||||
|
|
||||||
// Check architecture from metadata
|
// Check architecture from metadata
|
||||||
const architecture =
|
const architecture =
|
||||||
result.metadata.metadata?.['general.architecture']
|
result.metadata.metadata?.['general.architecture']
|
||||||
console.log(`${fileType} architecture:`, architecture)
|
|
||||||
|
// Extract baseName and use it as model name if available
|
||||||
|
const baseName = result.metadata.metadata?.['general.basename']
|
||||||
|
|
||||||
|
if (baseName) {
|
||||||
|
setModelName(baseName)
|
||||||
|
}
|
||||||
|
|
||||||
// Model files should NOT be clip
|
// Model files should NOT be clip
|
||||||
if (architecture === 'clip') {
|
if (architecture === 'clip') {
|
||||||
@ -86,11 +84,6 @@ export const ImportVisionModelDialog = ({
|
|||||||
'CLIP architecture detected in model file:',
|
'CLIP architecture detected in model file:',
|
||||||
architecture
|
architecture
|
||||||
)
|
)
|
||||||
} else {
|
|
||||||
console.log(
|
|
||||||
'Model validation passed. Architecture:',
|
|
||||||
architecture
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -109,16 +102,15 @@ export const ImportVisionModelDialog = ({
|
|||||||
path: filePath,
|
path: filePath,
|
||||||
})
|
})
|
||||||
|
|
||||||
console.log(
|
|
||||||
`Full GGUF metadata for ${fileType}:`,
|
|
||||||
JSON.stringify(metadata, null, 2)
|
|
||||||
)
|
|
||||||
|
|
||||||
// Check if architecture matches expected type
|
// Check if architecture matches expected type
|
||||||
const architecture = (
|
const architecture = (
|
||||||
metadata as { metadata?: Record<string, string> }
|
metadata as { metadata?: Record<string, string> }
|
||||||
).metadata?.['general.architecture']
|
).metadata?.['general.architecture']
|
||||||
console.log(`${fileType} architecture:`, architecture)
|
|
||||||
|
// Get general.baseName from metadata
|
||||||
|
const baseName = (metadata as { metadata?: Record<string, string> })
|
||||||
|
.metadata?.['general.basename']
|
||||||
|
|
||||||
// MMProj files MUST be clip
|
// MMProj files MUST be clip
|
||||||
if (architecture !== 'clip') {
|
if (architecture !== 'clip') {
|
||||||
@ -128,11 +120,19 @@ export const ImportVisionModelDialog = ({
|
|||||||
'Non-CLIP architecture detected in mmproj file:',
|
'Non-CLIP architecture detected in mmproj file:',
|
||||||
architecture
|
architecture
|
||||||
)
|
)
|
||||||
} else {
|
} else if (
|
||||||
console.log(
|
baseName &&
|
||||||
'MMProj validation passed. Architecture:',
|
modelName &&
|
||||||
architecture
|
!modelName.toLowerCase().includes(baseName.toLowerCase()) &&
|
||||||
)
|
!baseName.toLowerCase().includes(modelName.toLowerCase())
|
||||||
|
) {
|
||||||
|
// Validate that baseName and model name are compatible (one should contain the other)
|
||||||
|
const errorMessage = `MMProj file baseName "${baseName}" does not match model name "${modelName}". The MMProj file should be compatible with the selected model.`
|
||||||
|
setMmprojValidationError(errorMessage)
|
||||||
|
console.error('BaseName mismatch in mmproj file:', {
|
||||||
|
baseName,
|
||||||
|
modelName,
|
||||||
|
})
|
||||||
}
|
}
|
||||||
} catch (directError) {
|
} catch (directError) {
|
||||||
console.error('Failed to validate mmproj file directly:', directError)
|
console.error('Failed to validate mmproj file directly:', directError)
|
||||||
@ -158,15 +158,15 @@ export const ImportVisionModelDialog = ({
|
|||||||
setIsValidatingMmproj(false)
|
setIsValidatingMmproj(false)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}, [modelName, serviceHub])
|
||||||
|
|
||||||
const validateModelFile = async (filePath: string): Promise<void> => {
|
const validateModelFile = useCallback(async (filePath: string): Promise<void> => {
|
||||||
await validateGgufFile(filePath, 'model')
|
await validateGgufFile(filePath, 'model')
|
||||||
}
|
}, [validateGgufFile])
|
||||||
|
|
||||||
const validateMmprojFile = async (filePath: string): Promise<void> => {
|
const validateMmprojFile = useCallback(async (filePath: string): Promise<void> => {
|
||||||
await validateGgufFile(filePath, 'mmproj')
|
await validateGgufFile(filePath, 'mmproj')
|
||||||
}
|
}, [validateGgufFile])
|
||||||
|
|
||||||
const handleFileSelect = async (type: 'model' | 'mmproj') => {
|
const handleFileSelect = async (type: 'model' | 'mmproj') => {
|
||||||
const selectedFile = await serviceHub.dialog().open({
|
const selectedFile = await serviceHub.dialog().open({
|
||||||
@ -179,14 +179,14 @@ export const ImportVisionModelDialog = ({
|
|||||||
|
|
||||||
if (type === 'model') {
|
if (type === 'model') {
|
||||||
setModelFile(selectedFile)
|
setModelFile(selectedFile)
|
||||||
// Auto-generate model name from GGUF file
|
// Set temporary model name from filename (will be overridden by baseName from metadata if available)
|
||||||
const sanitizedName = fileName
|
const sanitizedName = fileName
|
||||||
.replace(/\s/g, '-')
|
.replace(/\s/g, '-')
|
||||||
.replace(/\.(gguf|GGUF)$/, '')
|
.replace(/\.(gguf|GGUF)$/, '')
|
||||||
.replace(/[^a-zA-Z0-9/_.-]/g, '') // Remove any characters not allowed in model IDs
|
.replace(/[^a-zA-Z0-9/_.-]/g, '') // Remove any characters not allowed in model IDs
|
||||||
setModelName(sanitizedName)
|
setModelName(sanitizedName)
|
||||||
|
|
||||||
// Validate the selected model file
|
// Validate the selected model file (this will update model name with baseName from metadata)
|
||||||
await validateModelFile(selectedFile)
|
await validateModelFile(selectedFile)
|
||||||
} else {
|
} else {
|
||||||
setMmProjFile(selectedFile)
|
setMmProjFile(selectedFile)
|
||||||
@ -272,6 +272,13 @@ export const ImportVisionModelDialog = ({
|
|||||||
setIsValidatingMmproj(false)
|
setIsValidatingMmproj(false)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Re-validate MMProj file when model name changes
|
||||||
|
useEffect(() => {
|
||||||
|
if (mmProjFile && modelName && isVisionModel) {
|
||||||
|
validateMmprojFile(mmProjFile)
|
||||||
|
}
|
||||||
|
}, [modelName, mmProjFile, isVisionModel, validateMmprojFile])
|
||||||
|
|
||||||
const handleOpenChange = (newOpen: boolean) => {
|
const handleOpenChange = (newOpen: boolean) => {
|
||||||
if (!importing) {
|
if (!importing) {
|
||||||
setOpen(newOpen)
|
setOpen(newOpen)
|
||||||
|
|||||||
@ -83,6 +83,7 @@ function ProviderDetail() {
|
|||||||
const [refreshingModels, setRefreshingModels] = useState(false)
|
const [refreshingModels, setRefreshingModels] = useState(false)
|
||||||
const [isCheckingBackendUpdate, setIsCheckingBackendUpdate] = useState(false)
|
const [isCheckingBackendUpdate, setIsCheckingBackendUpdate] = useState(false)
|
||||||
const [isInstallingBackend, setIsInstallingBackend] = useState(false)
|
const [isInstallingBackend, setIsInstallingBackend] = useState(false)
|
||||||
|
const [importingModel, setImportingModel] = useState<string | null>(null)
|
||||||
const { checkForUpdate: checkForBackendUpdate, installBackend } =
|
const { checkForUpdate: checkForBackendUpdate, installBackend } =
|
||||||
useBackendUpdater()
|
useBackendUpdater()
|
||||||
const { providerName } = useParams({ from: Route.id })
|
const { providerName } = useParams({ from: Route.id })
|
||||||
@ -102,6 +103,11 @@ function ProviderDetail() {
|
|||||||
)
|
)
|
||||||
|
|
||||||
const handleModelImportSuccess = async (importedModelName?: string) => {
|
const handleModelImportSuccess = async (importedModelName?: string) => {
|
||||||
|
if (importedModelName) {
|
||||||
|
setImportingModel(importedModelName)
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
// Refresh the provider to update the models list
|
// Refresh the provider to update the models list
|
||||||
await serviceHub.providers().getProviders().then(setProviders)
|
await serviceHub.providers().getProviders().then(setProviders)
|
||||||
|
|
||||||
@ -155,6 +161,9 @@ function ProviderDetail() {
|
|||||||
console.error('Error checking mmproj existence after import:', error)
|
console.error('Error checking mmproj existence after import:', error)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} finally {
|
||||||
|
// The importing state will be cleared by the useEffect when model appears in list
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
@ -175,6 +184,29 @@ function ProviderDetail() {
|
|||||||
return () => clearInterval(intervalId)
|
return () => clearInterval(intervalId)
|
||||||
}, [serviceHub, setActiveModels])
|
}, [serviceHub, setActiveModels])
|
||||||
|
|
||||||
|
// Clear importing state when model appears in the provider's model list
|
||||||
|
useEffect(() => {
|
||||||
|
if (importingModel && provider?.models) {
|
||||||
|
const modelExists = provider.models.some(
|
||||||
|
(model) => model.id === importingModel
|
||||||
|
)
|
||||||
|
if (modelExists) {
|
||||||
|
setImportingModel(null)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}, [importingModel, provider?.models])
|
||||||
|
|
||||||
|
// Fallback: Clear importing state after 10 seconds to prevent infinite loading
|
||||||
|
useEffect(() => {
|
||||||
|
if (importingModel) {
|
||||||
|
const timeoutId = setTimeout(() => {
|
||||||
|
setImportingModel(null)
|
||||||
|
}, 10000) // 10 seconds fallback
|
||||||
|
|
||||||
|
return () => clearTimeout(timeoutId)
|
||||||
|
}
|
||||||
|
}, [importingModel])
|
||||||
|
|
||||||
// Auto-refresh provider settings to get updated backend configuration
|
// Auto-refresh provider settings to get updated backend configuration
|
||||||
const refreshSettings = useCallback(async () => {
|
const refreshSettings = useCallback(async () => {
|
||||||
if (!provider) return
|
if (!provider) return
|
||||||
@ -831,6 +863,28 @@ function ProviderDetail() {
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
{/* Show importing skeleton first if there's one */}
|
||||||
|
{importingModel && (
|
||||||
|
<CardItem
|
||||||
|
key="importing-skeleton"
|
||||||
|
title={
|
||||||
|
<div className="flex items-center gap-2">
|
||||||
|
<div className="flex items-center gap-2 animate-pulse">
|
||||||
|
<div className="bg-accent/20 flex gap-2 text-accent px-2 py-1 rounded-full text-xs">
|
||||||
|
<IconLoader
|
||||||
|
size={16}
|
||||||
|
className="animate-spin text-accent"
|
||||||
|
/>
|
||||||
|
Importing...
|
||||||
|
</div>
|
||||||
|
<h1 className="font-medium line-clamp-1">
|
||||||
|
{importingModel}
|
||||||
|
</h1>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
</Card>
|
</Card>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user