fix:修复ft的地址不能添加多个的问题

This commit is contained in:
GuoQing Zhang
2025-08-12 18:00:41 +08:00
parent 89719927fa
commit 4565c01108
@@ -9,7 +9,7 @@ from bisheng.database.models.base import SQLModelSerializable
class ServerBase(SQLModelSerializable):
endpoint: str = Field(index=False, unique=True)
endpoint: str = Field(index=False)
sft_endpoint: str = Field(default='', index=False, description='Finetune服务地址')
server: str = Field(index=True)
remark: Optional[str] = Field(default=None, index=False)