mirror of
https://github.com/memohai/Memoh.git
synced 2026-04-27 07:16:19 +09:00
6aebbe9279
Major changes: 1. Core Architecture: Decoupled Bots from Users. Bots now have independent lifecycles, member management (bot_members), and dedicated configurations. 2. Channel Gateway: - Implemented a unified Channel Manager supporting Feishu, Telegram, and Local (Web/CLI) adapters. - Added message processing pipeline to normalize interactions across different platforms. - Introduced a Contact system for identity binding and guest access policies. 3. Database & Tooling: - Consolidated all migrations into 0001_init with updated schema for bots, channels, and contacts. - Optimized sqlc.yaml to automatically track the migrations directory. 4. Agent Enhancements: - Introduced ToolContext to provide Agents with platform-aware execution capabilities (e.g., messaging, contact lookups). - Added tool logging and fallback mechanisms for toolChoice execution. 5. UI & Docs: Updated frontend stores, UI components, and Swagger documentation to align with the new Bot-centric model.
47 lines
1.5 KiB
SQL
47 lines
1.5 KiB
SQL
-- name: CreateSubagent :one
|
|
INSERT INTO subagents (name, description, bot_id, messages, metadata, skills)
|
|
VALUES ($1, $2, $3, $4, $5, $6)
|
|
RETURNING id, name, description, created_at, updated_at, deleted, deleted_at, bot_id, messages, metadata, skills;
|
|
|
|
-- name: GetSubagentByID :one
|
|
SELECT id, name, description, created_at, updated_at, deleted, deleted_at, bot_id, messages, metadata, skills
|
|
FROM subagents
|
|
WHERE id = $1 AND deleted = false;
|
|
|
|
-- name: ListSubagentsByBot :many
|
|
SELECT id, name, description, created_at, updated_at, deleted, deleted_at, bot_id, messages, metadata, skills
|
|
FROM subagents
|
|
WHERE bot_id = $1 AND deleted = false
|
|
ORDER BY created_at DESC;
|
|
|
|
-- name: UpdateSubagent :one
|
|
UPDATE subagents
|
|
SET name = $2,
|
|
description = $3,
|
|
metadata = $4,
|
|
updated_at = now()
|
|
WHERE id = $1 AND deleted = false
|
|
RETURNING id, name, description, created_at, updated_at, deleted, deleted_at, bot_id, messages, metadata, skills;
|
|
|
|
-- name: UpdateSubagentMessages :one
|
|
UPDATE subagents
|
|
SET messages = $2,
|
|
updated_at = now()
|
|
WHERE id = $1 AND deleted = false
|
|
RETURNING id, name, description, created_at, updated_at, deleted, deleted_at, bot_id, messages, metadata, skills;
|
|
|
|
-- name: UpdateSubagentSkills :one
|
|
UPDATE subagents
|
|
SET skills = $2,
|
|
updated_at = now()
|
|
WHERE id = $1 AND deleted = false
|
|
RETURNING id, name, description, created_at, updated_at, deleted, deleted_at, bot_id, messages, metadata, skills;
|
|
|
|
-- name: SoftDeleteSubagent :exec
|
|
UPDATE subagents
|
|
SET deleted = true,
|
|
deleted_at = now(),
|
|
updated_at = now()
|
|
WHERE id = $1 AND deleted = false;
|
|
|