34051a4631
- Updated labels in the AI Agents dashboard for clarity, changing "流程状态" to "Playbook 状态" and "未发布流程" to "未发布 Playbook". - Introduced AI Agent rollout percentage management in channel editing, allowing users to set and rollback rollout percentages. - Added new API endpoints for rolling back AI Agent rollout and fetching agent run metrics. - Implemented new UI components for displaying agent run details, including status, duration, and input/output tokens. - Enhanced type definitions for AdminChannel and AIAgent to include rollout percentages and runtime modes. - Updated navigation to include a section for agent runs. - Added new translations for agent run features in both English and Chinese.
104 lines
3.5 KiB
Go
104 lines
3.5 KiB
Go
package repositories
|
|
|
|
import (
|
|
"agent-desk/internal/models"
|
|
|
|
"github.com/mlogclub/simple/sqls"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
var ConversationInterruptRepository = newConversationInterruptRepository()
|
|
|
|
func newConversationInterruptRepository() *conversationInterruptRepository {
|
|
return &conversationInterruptRepository{}
|
|
}
|
|
|
|
type conversationInterruptRepository struct{}
|
|
|
|
func (r *conversationInterruptRepository) Get(db *gorm.DB, id int64) *models.ConversationInterrupt {
|
|
ret := &models.ConversationInterrupt{}
|
|
if err := db.First(ret, "id = ?", id).Error; err != nil {
|
|
return nil
|
|
}
|
|
return ret
|
|
}
|
|
|
|
func (r *conversationInterruptRepository) GetByCheckPointID(db *gorm.DB, checkPointID string) *models.ConversationInterrupt {
|
|
ret := &models.ConversationInterrupt{}
|
|
if err := db.Where("check_point_id = ?", checkPointID).First(ret).Error; err != nil {
|
|
return nil
|
|
}
|
|
return ret
|
|
}
|
|
|
|
func (r *conversationInterruptRepository) FindLatestPendingByConversationID(db *gorm.DB, conversationID int64) *models.ConversationInterrupt {
|
|
ret := &models.ConversationInterrupt{}
|
|
if err := db.Where("conversation_id = ? AND status = ?", conversationID, "pending").Order("id DESC").First(ret).Error; err != nil {
|
|
return nil
|
|
}
|
|
return ret
|
|
}
|
|
|
|
func (r *conversationInterruptRepository) FindByAgentRunIDs(db *gorm.DB, agentRunIDs []int64) []models.ConversationInterrupt {
|
|
if len(agentRunIDs) == 0 {
|
|
return []models.ConversationInterrupt{}
|
|
}
|
|
var items []models.ConversationInterrupt
|
|
if err := db.Where("agent_run_id IN ?", agentRunIDs).Find(&items).Error; err != nil {
|
|
return []models.ConversationInterrupt{}
|
|
}
|
|
return items
|
|
}
|
|
|
|
func (r *conversationInterruptRepository) Find(db *gorm.DB, cnd *sqls.Cnd) (list []models.ConversationInterrupt) {
|
|
cnd.Find(db, &list)
|
|
return
|
|
}
|
|
|
|
func (r *conversationInterruptRepository) FindOne(db *gorm.DB, cnd *sqls.Cnd) *models.ConversationInterrupt {
|
|
ret := &models.ConversationInterrupt{}
|
|
if err := cnd.FindOne(db, &ret); err != nil {
|
|
return nil
|
|
}
|
|
return ret
|
|
}
|
|
|
|
func (r *conversationInterruptRepository) Create(db *gorm.DB, t *models.ConversationInterrupt) error {
|
|
return db.Create(t).Error
|
|
}
|
|
|
|
func (r *conversationInterruptRepository) Update(db *gorm.DB, t *models.ConversationInterrupt) error {
|
|
return db.Save(t).Error
|
|
}
|
|
|
|
func (r *conversationInterruptRepository) Updates(db *gorm.DB, id int64, columns map[string]any) error {
|
|
return db.Model(&models.ConversationInterrupt{}).Where("id = ?", id).Updates(columns).Error
|
|
}
|
|
|
|
func (r *conversationInterruptRepository) UpsertByCheckPointID(db *gorm.DB, item *models.ConversationInterrupt) error {
|
|
current := r.GetByCheckPointID(db, item.CheckPointID)
|
|
if current == nil {
|
|
return r.Create(db, item)
|
|
}
|
|
columns := map[string]any{
|
|
"conversation_id": item.ConversationID,
|
|
"ai_agent_id": item.AIAgentID,
|
|
"agent_run_id": item.AgentRunID,
|
|
"agent_step_id": item.AgentStepID,
|
|
"source_message_id": item.SourceMessageID,
|
|
"last_resume_message_id": item.LastResumeMessageID,
|
|
"workflow_run_id": item.WorkflowRunID,
|
|
"workflow_node_id": item.WorkflowNodeID,
|
|
"interrupt_id": item.InterruptID,
|
|
"interrupt_type": item.InterruptType,
|
|
"status": item.Status,
|
|
"prompt_text": item.PromptText,
|
|
"request_data": item.RequestData,
|
|
"check_point_data": item.CheckPointData,
|
|
"resume_count": item.ResumeCount,
|
|
"expires_at": item.ExpiresAt,
|
|
"updated_at": item.UpdatedAt,
|
|
}
|
|
return r.Updates(db, current.ID, columns)
|
|
}
|