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.
69 lines
1.9 KiB
Go
69 lines
1.9 KiB
Go
package repositories
|
|
|
|
import (
|
|
"agent-desk/internal/models"
|
|
"agent-desk/internal/pkg/httpx/params"
|
|
|
|
"github.com/mlogclub/simple/sqls"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
var AgentRunRepository = newAgentRunRepository()
|
|
|
|
func newAgentRunRepository() *agentRunRepository {
|
|
return &agentRunRepository{}
|
|
}
|
|
|
|
type agentRunRepository struct{}
|
|
|
|
func (r *agentRunRepository) Get(db *gorm.DB, id int64) *models.AgentRun {
|
|
ret := &models.AgentRun{}
|
|
if err := db.First(ret, "id = ?", id).Error; err != nil {
|
|
return nil
|
|
}
|
|
return ret
|
|
}
|
|
|
|
func (r *agentRunRepository) TakeByWorkflowRunID(db *gorm.DB, workflowRunID int64) *models.AgentRun {
|
|
if workflowRunID <= 0 {
|
|
return nil
|
|
}
|
|
ret := &models.AgentRun{}
|
|
if err := db.Where("workflow_run_id = ?", workflowRunID).Order("id DESC").First(ret).Error; err != nil {
|
|
return nil
|
|
}
|
|
return ret
|
|
}
|
|
|
|
func (r *agentRunRepository) Create(db *gorm.DB, item *models.AgentRun) error {
|
|
return db.Create(item).Error
|
|
}
|
|
|
|
func (r *agentRunRepository) FindPageByCnd(db *gorm.DB, cnd *sqls.Cnd) (list []models.AgentRun, paging *sqls.Paging) {
|
|
cnd.Find(db, &list)
|
|
return list, &sqls.Paging{Page: cnd.Paging.Page, Limit: cnd.Paging.Limit, Total: cnd.Count(db, &models.AgentRun{})}
|
|
}
|
|
|
|
func (r *agentRunRepository) FindPageByParams(db *gorm.DB, queryParams *params.QueryParams) (list []models.AgentRun, paging *sqls.Paging) {
|
|
return r.FindPageByCnd(db, &queryParams.Cnd)
|
|
}
|
|
|
|
func (r *agentRunRepository) Updates(db *gorm.DB, id int64, columns map[string]any) error {
|
|
return db.Model(&models.AgentRun{}).Where("id = ?", id).Updates(columns).Error
|
|
}
|
|
|
|
func (r *agentRunRepository) FindRecent(db *gorm.DB, aiAgentID int64, limit int) []models.AgentRun {
|
|
if limit <= 0 || limit > 5000 {
|
|
limit = 5000
|
|
}
|
|
query := db.Order("id DESC").Limit(limit)
|
|
if aiAgentID > 0 {
|
|
query = query.Where("ai_agent_id = ?", aiAgentID)
|
|
}
|
|
var items []models.AgentRun
|
|
if err := query.Find(&items).Error; err != nil {
|
|
return nil
|
|
}
|
|
return items
|
|
}
|