[全量] 初始化项目代码、配置、文档及Agent协同harness

This commit is contained in:
2026-04-02 11:36:05 +08:00
parent 0553309cdf
commit 87e571d9ec
1133 changed files with 221948 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
create table chat_gpt.gpt_knowledge (
id bigint auto_increment comment '主键' ,
nick_name varchar(300) not null comment '知识库昵称',
knowledge_name varchar(300) not null comment '知识库名称',
deleted int(1) default 0 not null comment '是否删除 0->未删除;1->已删除',
primary key (id)
) engine=innodb charset = utf8 comment = '知识库信息表';
commit;