- Remove embedding model from Catalog. We use Mistral's embedding.

This commit is contained in:
Josako
2025-03-07 15:06:51 +01:00
parent 9e03af45e1
commit e088ef7e4e
3 changed files with 29 additions and 7 deletions

View File

@@ -12,8 +12,6 @@ class Catalog(db.Model):
description = db.Column(db.Text, nullable=True)
type = db.Column(db.String(50), nullable=False, default="STANDARD_CATALOG")
embedding_model = db.Column(db.String(50), nullable=True)
min_chunk_size = db.Column(db.Integer, nullable=True, default=1500)
max_chunk_size = db.Column(db.Integer, nullable=True, default=2500)