You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: backend/database/db_models.py
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -132,6 +132,7 @@ class ModelRecord(TableBase):
132
132
used_token=Column(Integer, doc="Number of tokens already used by the model in Q&A")
133
133
display_name=Column(String(100), doc="Model name directly displayed on the frontend, customized by the user")
134
134
connect_status=Column(String(100), doc="Model connectivity status of the latest detection. Optional values: Detecting, Available, Unavailable")
135
+
is_deep_thinking=Column(Boolean, doc="Whether the model opens up deep thinking")
135
136
tenant_id=Column(String(100), doc="Tenant ID for filtering")
136
137
create_time=Column(TIMESTAMP(timezone=False), server_default=func.now(), doc="Creation time, audit field")
137
138
delete_flag=Column(String(1), default="N", doc="After the user deletes it on the frontend, the deletion flag will be set to \"Y\" for soft deletion. Optional values: Y/N")
0 commit comments