三亩地 三亩地SAN MU DI · CODE DIARY
ARTICLE DETAIL

日记详情

真实记录编程学习的某一天,欢迎挑你感兴趣的翻一翻。

LobeChat数据库设计:完整表结构关系模型解析

LobeChat数据库设计:完整表结构关系模型解析

LobeChat数据库设计:完整表结构关系模型解析

【免费下载链接】lobehubThe ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.项目地址: https://gitcode.com/GitHub_Trending/lo/lobehub

LobeChat作为一款强大的AI协作平台,其高效运行离不开精心设计的数据库架构。本文将深入解析LobeChat的数据库设计,包括核心表结构、关系模型以及设计亮点,帮助开发者和用户更好地理解其数据组织方式。

数据库架构概览

LobeChat的数据库设计采用了模块化思想,将不同功能模块的数据存储分离,同时通过合理的关联关系保证数据一致性。数据库模式定义在docs/development/database-schema.dbml文件中,采用DBML(Database Markup Language)格式,清晰描述了表结构和关系。

核心表结构解析

1. 智能体相关表

智能体(Agents)是LobeChat的核心功能,相关表结构设计如下:

agents表:存储智能体基本信息

table agents { id text [pk, not null] slug varchar(100) title varchar(255) description varchar(1000) tags jsonb [default: `[]`] editor_data jsonb avatar text background_color text user_id text [not null] model text provider text system_role text pinned boolean created_at "timestamp with time zone" [not null, default: `now()`] updated_at "timestamp with time zone" [not null, default: `now()`] }

agent_skills表:存储智能体技能信息

table agent_skills { id text [pk, not null] name text [not null] description text [not null] identifier text [not null] source text [not null] manifest jsonb [not null, default: `{}`] user_id text [not null] created_at "timestamp with time zone" [not null, default: `now()`] updated_at "timestamp with time zone" [not null, default: `now()`] }

2. 对话相关表

messages表:存储对话消息

table messages { id text [pk, not null] role varchar(255) [not null] content text summary text model text provider text user_id text [not null] topic_id text parent_id text agent_id text created_at "timestamp with time zone" [not null, default: `now()`] updated_at "timestamp with time zone" [not null, default: `now()`] }

topics表:存储对话主题

table topics { id text [pk, not null] title text user_id text [not null] agent_id text chat_group_id text created_at "timestamp with time zone" [not null, default: `now()`] updated_at "timestamp with time zone" [not null, default: `now()`] }

3. 文件与知识库表

files表:存储用户上传文件

table files { id text [pk, not null] user_id text [not null] file_type varchar(255) [not null] name text [not null] size integer [not null] url text [not null] created_at "timestamp with time zone" [not null, default: `now()`] }

knowledge_bases表:存储知识库信息

table knowledge_bases { id text [pk, not null] name text [not null] description text user_id text [not null] is_public boolean [default: false] created_at "timestamp with time zone" [not null, default: `now()`] updated_at "timestamp with time zone" [not null, default: `now()`] }

表关系模型

LobeChat数据库中主要表之间的关系如下:

  1. 用户-智能体关系:一个用户可以拥有多个智能体(1:N)

    • 通过agents表的user_id字段关联users表
  2. 智能体-技能关系:一个智能体可以拥有多个技能,一个技能可以被多个智能体使用(N:M)

    • 通过agent_skills_mappings中间表关联
  3. 智能体-对话关系:一个智能体可以参与多个对话(1:N)

    • 通过topics表的agent_id字段关联
  4. 对话-消息关系:一个对话包含多个消息(1:N)

    • 通过messages表的topic_id字段关联
  5. 用户-文件关系:一个用户可以上传多个文件(1:N)

    • 通过files表的user_id字段关联

设计亮点

1. JSONB类型的广泛应用

LobeChat数据库大量使用PostgreSQL的JSONB类型存储半结构化数据,如:

  • agents表的tags、editor_data字段
  • agent_skills表的manifest字段
  • messages表的metadata、tools字段

这种设计提供了灵活性,能适应AI应用中频繁变化的数据结构需求。

2. 合理的索引设计

数据库针对常用查询路径建立了完善的索引,如:

  • agents表:(user_id), (title), (description)索引
  • messages表:(topic_id), (created_at), (user_id)索引
  • knowledge_bases表:(user_id), (client_id, user_id)唯一索引

这些索引大大提升了查询性能,特别是在处理大量对话历史和智能体数据时。

3. 时间戳跟踪

几乎所有表都包含created_at和updated_at字段,部分表还包含accessed_at字段,便于跟踪数据生命周期和进行数据分析。

总结

LobeChat的数据库设计充分考虑了AI协作平台的特点,通过模块化表结构、灵活的JSONB类型、完善的索引设计和合理的关系模型,为系统提供了高效、可靠的数据存储支撑。无论是智能体管理、对话记录、文件存储还是知识库管理,都能在这一架构下高效运行。

对于开发者而言,理解这一数据库设计有助于更好地扩展和定制LobeChat功能;对于用户而言,了解数据组织方式也能更清晰地理解平台的功能边界和数据安全特性。

【免费下载链接】lobehubThe ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.项目地址: https://gitcode.com/GitHub_Trending/lo/lobehub

创作声明:本文部分内容由AI辅助生成(AIGC),仅供参考

← 返回列表