mirror of
https://github.com/langgenius/dify.git
synced 2026-03-13 19:17:43 +08:00
Extract validation logic from default.ts into shared utils.ts, enabling node card, panel, and checklist to share the same validation rules. Introduce provider-scoped model list queries to detect non-active model states (noConfigure, quotaExceeded, credentialRemoved, incompatible). Expand node card from 2 rows to 4 rows with per-row warning indicators, and add warningDot support to panel field titles.
117 lines
4.2 KiB
TypeScript
117 lines
4.2 KiB
TypeScript
import type { KnowledgeBaseNodeType } from './types'
|
|
import type { Model, ModelItem } from '@/app/components/header/account-setting/model-provider-page/declarations'
|
|
import {
|
|
ConfigurationMethodEnum,
|
|
ModelStatusEnum,
|
|
ModelTypeEnum,
|
|
} from '@/app/components/header/account-setting/model-provider-page/declarations'
|
|
import {
|
|
ChunkStructureEnum,
|
|
IndexMethodEnum,
|
|
RetrievalSearchMethodEnum,
|
|
} from './types'
|
|
import {
|
|
getKnowledgeBaseValidationIssue,
|
|
KnowledgeBaseValidationIssueCode,
|
|
} from './utils'
|
|
|
|
const makeEmbeddingModelList = (status: ModelStatusEnum): Model[] => {
|
|
return [
|
|
{
|
|
provider: 'openai',
|
|
icon_small: { en_US: '', zh_Hans: '' },
|
|
label: { en_US: 'OpenAI', zh_Hans: 'OpenAI' },
|
|
models: [{
|
|
model: 'gpt-4o',
|
|
label: { en_US: 'GPT-4o', zh_Hans: 'GPT-4o' },
|
|
model_type: ModelTypeEnum.textEmbedding,
|
|
fetch_from: ConfigurationMethodEnum.predefinedModel,
|
|
status,
|
|
model_properties: {},
|
|
load_balancing_enabled: false,
|
|
}],
|
|
status,
|
|
},
|
|
]
|
|
}
|
|
|
|
const makeEmbeddingProviderModelList = (status: ModelStatusEnum): ModelItem[] => {
|
|
return [{
|
|
model: 'gpt-4o',
|
|
label: { en_US: 'GPT-4o', zh_Hans: 'GPT-4o' },
|
|
model_type: ModelTypeEnum.textEmbedding,
|
|
fetch_from: ConfigurationMethodEnum.predefinedModel,
|
|
status,
|
|
model_properties: {},
|
|
load_balancing_enabled: false,
|
|
}]
|
|
}
|
|
|
|
const makePayload = (overrides: Partial<KnowledgeBaseNodeType> = {}): KnowledgeBaseNodeType => {
|
|
return {
|
|
index_chunk_variable_selector: ['general_chunks', 'results'],
|
|
chunk_structure: ChunkStructureEnum.general,
|
|
indexing_technique: IndexMethodEnum.QUALIFIED,
|
|
embedding_model: 'gpt-4o',
|
|
embedding_model_provider: 'openai',
|
|
keyword_number: 10,
|
|
retrieval_model: {
|
|
top_k: 3,
|
|
score_threshold_enabled: false,
|
|
score_threshold: 0.5,
|
|
search_method: RetrievalSearchMethodEnum.semantic,
|
|
},
|
|
_embeddingModelList: makeEmbeddingModelList(ModelStatusEnum.active),
|
|
_embeddingProviderModelList: makeEmbeddingProviderModelList(ModelStatusEnum.active),
|
|
_rerankModelList: [],
|
|
...overrides,
|
|
} as KnowledgeBaseNodeType
|
|
}
|
|
|
|
describe('knowledge-base validation issue', () => {
|
|
it('returns chunk structure issue when chunk structure is missing', () => {
|
|
const issue = getKnowledgeBaseValidationIssue(makePayload({ chunk_structure: undefined }))
|
|
expect(issue?.code).toBe(KnowledgeBaseValidationIssueCode.chunkStructureRequired)
|
|
})
|
|
|
|
it('returns chunks variable issue when chunks selector is empty', () => {
|
|
const issue = getKnowledgeBaseValidationIssue(makePayload({ index_chunk_variable_selector: [] }))
|
|
expect(issue?.code).toBe(KnowledgeBaseValidationIssueCode.chunksVariableRequired)
|
|
})
|
|
|
|
it('maps no-configure to not configured', () => {
|
|
const issue = getKnowledgeBaseValidationIssue(
|
|
makePayload({ _embeddingProviderModelList: makeEmbeddingProviderModelList(ModelStatusEnum.noConfigure) }),
|
|
)
|
|
expect(issue?.code).toBe(KnowledgeBaseValidationIssueCode.embeddingModelNotConfigured)
|
|
})
|
|
|
|
it('maps credential-removed to API key unavailable', () => {
|
|
const issue = getKnowledgeBaseValidationIssue(
|
|
makePayload({ _embeddingProviderModelList: makeEmbeddingProviderModelList(ModelStatusEnum.credentialRemoved) }),
|
|
)
|
|
expect(issue?.code).toBe(KnowledgeBaseValidationIssueCode.embeddingModelApiKeyUnavailable)
|
|
})
|
|
|
|
it('maps quota-exceeded to credits exhausted', () => {
|
|
const issue = getKnowledgeBaseValidationIssue(
|
|
makePayload({ _embeddingProviderModelList: makeEmbeddingProviderModelList(ModelStatusEnum.quotaExceeded) }),
|
|
)
|
|
expect(issue?.code).toBe(KnowledgeBaseValidationIssueCode.embeddingModelCreditsExhausted)
|
|
})
|
|
|
|
it('maps disabled to incompatible', () => {
|
|
const issue = getKnowledgeBaseValidationIssue(
|
|
makePayload({ _embeddingProviderModelList: makeEmbeddingProviderModelList(ModelStatusEnum.disabled) }),
|
|
)
|
|
expect(issue?.code).toBe(KnowledgeBaseValidationIssueCode.embeddingModelIncompatible)
|
|
})
|
|
|
|
it('falls back to provider model list when provider scoped model list is empty', () => {
|
|
const issue = getKnowledgeBaseValidationIssue(
|
|
makePayload({ _embeddingProviderModelList: [] }),
|
|
)
|
|
expect(issue).toBeNull()
|
|
})
|
|
})
|