mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 10:12:51 +00:00
19 lines
527 B
Python
19 lines
527 B
Python
# Generated by Django 4.1.13 on 2024-04-24 15:36
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('dataset', '0002_image'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='document',
|
|
name='hit_handling_method',
|
|
field=models.CharField(choices=[('optimization', '模型优化'), ('directly_return', '直接返回')], default='optimization', max_length=20, verbose_name='命中处理方式'),
|
|
),
|
|
]
|