mirror of
https://github.com/flipped-aurora/gin-vue-admin.git
synced 2026-09-25 13:51:00 +00:00
* feat: 调整AI工作模式,更符合harness基准 * feat: 添加BusinessDB字段到PluginInitializeGorm结构体,并增加相关测试用例 * [middleware/jwt.go]: fix #2192 issues bug * docs: add auto plugin design spec * chore: ignore worktrees directory * feat: 调整代码辅助能力至插件 * feat: 添加警告条组件,提示授权用户访问限制 * fix: 修正商业用途版权声明链接 * feat: 调整agent.md 更加节省token * fix: 修改casbin版本为v3 * feat: 更新JSONMap和JSONSlice类型,优化GORM数据类型处理 * feat: 添加数据库就绪通知机制,优化插件注册流程 * feat: 重构API路径和描述,优化代码生成器和模板配置分组 * feat: 优化 person 页面的 css 作用域限制 * feat: 更新 vite 至 vite8 * 新增:MCP工具为指定URL的角色ID授权 * fix: 增加文件名合法性检查,拒绝包含非法字符的文件写入 * chore: 更新CI配置,升级Node.js和Go版本,调整checkout和setup动作版本 * feat: 为数据库连接增加最大复用时间配置 * feat: 为各数据库连接配置增加最大连接生命周期设置 * feat: 更新插件注册逻辑并优化API和菜单组件的标签显示 * feat: 更新版本号至v2.9.2并添加新插件路径信息 --------- Co-authored-by: taincheng <zhangtc@gmail.com> Co-authored-by: Azir-11 <2075125282@qq.com> Co-authored-by: lanxi <1220lanxi@gmail.com>
38 lines
1.9 KiB
Go
38 lines
1.9 KiB
Go
package model
|
|
|
|
import (
|
|
"github.com/flipped-aurora/gin-vue-admin/server/global"
|
|
common "github.com/flipped-aurora/gin-vue-admin/server/model/common"
|
|
)
|
|
|
|
type AIWorkflowMessage struct {
|
|
ID string `json:"id"`
|
|
Role string `json:"role"`
|
|
Content string `json:"content"`
|
|
Snapshot common.JSONMap `json:"snapshot"`
|
|
ConversationID string `json:"conversationId"`
|
|
MessageID string `json:"messageId"`
|
|
CreatedAt string `json:"createdAt"`
|
|
}
|
|
|
|
type AIWorkflowMessages = common.JSONSlice[AIWorkflowMessage]
|
|
|
|
type SysAIWorkflowSession struct {
|
|
global.GVA_MODEL
|
|
UserID uint `json:"userId" gorm:"column:user_id;index;comment:用户ID"`
|
|
Tab string `json:"tab" gorm:"column:tab;size:32;index;comment:会话类型"`
|
|
Title string `json:"title" gorm:"column:title;size:255;comment:会话标题"`
|
|
Summary string `json:"summary" gorm:"column:summary;type:text;comment:摘要"`
|
|
ConversationID string `json:"conversationId" gorm:"column:conversation_id;size:255;comment:Dify会话ID"`
|
|
MessageID string `json:"messageId" gorm:"column:message_id;size:255;comment:Dify消息ID"`
|
|
CurrentNodeID string `json:"currentNodeId" gorm:"column:current_node_id;size:64;comment:当前选中节点ID"`
|
|
Settings common.JSONMap `json:"settings" gorm:"column:settings;comment:页面设置"`
|
|
FormData common.JSONMap `json:"formData" gorm:"column:form_data;comment:表单数据"`
|
|
ResultData common.JSONMap `json:"resultData" gorm:"column:result_data;comment:当前展示结果"`
|
|
Messages AIWorkflowMessages `json:"messages" gorm:"column:messages;comment:会话消息"`
|
|
}
|
|
|
|
func (s *SysAIWorkflowSession) TableName() string {
|
|
return "sys_ai_workflow_sessions"
|
|
}
|