fix:numpy构建报错

This commit is contained in:
xiamuceer
2025-11-04 16:01:48 +08:00
parent e4f90d5da0
commit e524e9e0ed
5 changed files with 13 additions and 12 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ class Settings(Base):
api_provider = Column(String(50), default="openai", comment="API提供商")
api_key = Column(String(500), comment="API密钥")
api_base_url = Column(String(500), comment="自定义API地址")
model_name = Column(String(100), default="gpt-4", comment="模型名称")
llm_model = Column(String(100), default="gpt-4", comment="模型名称")
temperature = Column(Float, default=0.7, comment="温度参数")
max_tokens = Column(Integer, default=2000, comment="最大token数")
preferences = Column(Text, comment="其他偏好设置(JSON)")