no message

This commit is contained in:
ACT丶流星雨 2026-03-28 01:29:25 +08:00
parent 73ce27c55d
commit ecd404e5ed

View File

@ -1,4 +1,4 @@
// @db-hash 05ecfd675f848d88631c1a546996caea // @db-hash 8e5f2b7a28d4494b291d802b055b6399
//该文件由脚本自动生成,请勿手动修改 //该文件由脚本自动生成,请勿手动修改
export interface memories { export interface memories {
@ -7,6 +7,7 @@ export interface memories {
'embedding'?: string | null; 'embedding'?: string | null;
'id'?: string; 'id'?: string;
'isolationKey': string; 'isolationKey': string;
'name'?: string | null;
'relatedMessageIds'?: string | null; 'relatedMessageIds'?: string | null;
'role'?: string | null; 'role'?: string | null;
'summarized'?: number | null; 'summarized'?: number | null;
@ -46,7 +47,6 @@ export interface o_assets {
'name'?: string | null; 'name'?: string | null;
'projectId'?: number | null; 'projectId'?: number | null;
'prompt'?: string | null; 'prompt'?: string | null;
'promptState'?: string | null;
'remark'?: string | null; 'remark'?: string | null;
'scriptId'?: number | null; 'scriptId'?: number | null;
'startTime'?: number | null; 'startTime'?: number | null;
@ -121,13 +121,11 @@ export interface o_project {
export interface o_prompt { export interface o_prompt {
'id'?: number; 'id'?: number;
'name'?: string | null; 'name'?: string | null;
'prompt'?: string | null; 'rompt'?: string | null;
} }
export interface o_script { export interface o_script {
'content'?: string | null; 'content'?: string | null;
'createTime'?: number | null; 'createTime'?: number | null;
'errorReason'?: string | null;
'extractState'?: number | null;
'id'?: number; 'id'?: number;
'name'?: string | null; 'name'?: string | null;
'projectId'?: number | null; 'projectId'?: number | null;