refactor: update embedding model ID references in knowledge.py and dataset_lark_serializer.py

This commit is contained in:
CaptainB 2025-06-18 18:46:41 +08:00
parent 63d8906639
commit 89023d14fe

View File

@ -480,7 +480,7 @@ class KnowledgeSerializer(serializers.Serializer):
user_id=self.data.get('user_id'),
scope=self.data.get('scope', KnowledgeScope.WORKSPACE),
folder_id=folder_id,
embedding_model_id=instance.get('embedding'),
embedding_model_id=instance.get('embedding_model_id'),
meta=instance.get('meta', {}),
)
@ -542,11 +542,11 @@ class KnowledgeSerializer(serializers.Serializer):
scope=self.data.get('scope', KnowledgeScope.WORKSPACE),
folder_id=folder_id,
workspace_id=self.data.get('workspace_id'),
embedding_model_id=instance.get('embedding'),
embedding_model_id=instance.get('embedding_model_id'),
meta={
'source_url': instance.get('source_url'),
'selector': instance.get('selector'),
'embedding_model_id': instance.get('embedding')
'embedding_model_id': instance.get('embedding_model_id')
},
)
knowledge.save()