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.
25 lines
844 B
SQL
25 lines
844 B
SQL
DROP TABLE IF EXISTS user_settings;
|
|
DROP TABLE IF EXISTS subagents;
|
|
DROP TABLE IF EXISTS schedule;
|
|
DROP TABLE IF EXISTS lifecycle_events;
|
|
DROP TABLE IF EXISTS container_versions;
|
|
DROP TABLE IF EXISTS snapshots;
|
|
DROP TABLE IF EXISTS containers;
|
|
DROP TABLE IF EXISTS channel_sessions;
|
|
DROP TABLE IF EXISTS contact_bind_tokens;
|
|
DROP TABLE IF EXISTS contact_channels;
|
|
DROP TABLE IF EXISTS contacts;
|
|
DROP TABLE IF EXISTS bot_channel_configs;
|
|
DROP TABLE IF EXISTS user_channel_bindings;
|
|
DROP TABLE IF EXISTS history;
|
|
DROP TABLE IF EXISTS conversations;
|
|
DROP TABLE IF EXISTS bot_model_configs;
|
|
DROP TABLE IF EXISTS bot_settings;
|
|
DROP TABLE IF EXISTS bot_members;
|
|
DROP TABLE IF EXISTS bots;
|
|
DROP TABLE IF EXISTS model_variants;
|
|
DROP TABLE IF EXISTS models;
|
|
DROP TABLE IF EXISTS llm_providers;
|
|
DROP TABLE IF EXISTS users;
|
|
DROP TYPE IF EXISTS user_role;
|