feat(bot): add topic history-aware assistant replies

This commit is contained in:
2026-03-12 19:06:51 +04:00
parent 5ebae7714c
commit 23faeef738
19 changed files with 4274 additions and 28 deletions

View File

@@ -19,6 +19,7 @@
"0015_white_owl.sql": "a9dec4c536c660d7eb0fcea42a3bedb1301408551977d098dff8324d7d5b26bd",
"0016_equal_susan_delgado.sql": "1698bf0516d16d2d7929dcb1bd2bb76d5a629eaba3d0bb2533c1ae926408de7a",
"0017_gigantic_selene.sql": "232d61b979675ddb97c9d69d14406dc15dd095ee6a332d3fa71d10416204fade",
"0018_nimble_kojori.sql": "818738e729119c6de8049dcfca562926a5dc6e321ecbbf9cf38e02bc70b5a0dc"
"0018_nimble_kojori.sql": "818738e729119c6de8049dcfca562926a5dc6e321ecbbf9cf38e02bc70b5a0dc",
"0019_faithful_madame_masque.sql": "38711341799b04a7c47fcc64fd19faf5b26e6f183d6a4c01d492b9929cd63641"
}
}

View File

@@ -0,0 +1,20 @@
CREATE TABLE "topic_messages" (
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
"household_id" uuid NOT NULL,
"telegram_chat_id" text NOT NULL,
"telegram_thread_id" text,
"telegram_message_id" text,
"telegram_update_id" text,
"sender_telegram_user_id" text,
"sender_display_name" text,
"is_bot" integer DEFAULT 0 NOT NULL,
"raw_text" text NOT NULL,
"message_sent_at" timestamp with time zone,
"created_at" timestamp with time zone DEFAULT now() NOT NULL
);
--> statement-breakpoint
ALTER TABLE "topic_messages" ADD CONSTRAINT "topic_messages_household_id_households_id_fk" FOREIGN KEY ("household_id") REFERENCES "public"."households"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint
CREATE INDEX "topic_messages_household_thread_sent_idx" ON "topic_messages" USING btree ("household_id","telegram_chat_id","telegram_thread_id","message_sent_at");--> statement-breakpoint
CREATE INDEX "topic_messages_household_chat_sent_idx" ON "topic_messages" USING btree ("household_id","telegram_chat_id","message_sent_at");--> statement-breakpoint
CREATE UNIQUE INDEX "topic_messages_household_tg_message_unique" ON "topic_messages" USING btree ("household_id","telegram_chat_id","telegram_message_id");--> statement-breakpoint
CREATE UNIQUE INDEX "topic_messages_household_tg_update_unique" ON "topic_messages" USING btree ("household_id","telegram_update_id");

File diff suppressed because it is too large Load Diff

View File

@@ -134,6 +134,13 @@
"when": 1773252000000,
"tag": "0018_nimble_kojori",
"breakpoints": true
},
{
"idx": 19,
"version": "7",
"when": 1773327708167,
"tag": "0019_faithful_madame_masque",
"breakpoints": true
}
]
}

View File

@@ -499,6 +499,48 @@ export const processedBotMessages = pgTable(
})
)
export const topicMessages = pgTable(
'topic_messages',
{
id: uuid('id').defaultRandom().primaryKey(),
householdId: uuid('household_id')
.notNull()
.references(() => households.id, { onDelete: 'cascade' }),
telegramChatId: text('telegram_chat_id').notNull(),
telegramThreadId: text('telegram_thread_id'),
telegramMessageId: text('telegram_message_id'),
telegramUpdateId: text('telegram_update_id'),
senderTelegramUserId: text('sender_telegram_user_id'),
senderDisplayName: text('sender_display_name'),
isBot: integer('is_bot').default(0).notNull(),
rawText: text('raw_text').notNull(),
messageSentAt: timestamp('message_sent_at', { withTimezone: true }),
createdAt: timestamp('created_at', { withTimezone: true }).defaultNow().notNull()
},
(table) => ({
householdThreadSentIdx: index('topic_messages_household_thread_sent_idx').on(
table.householdId,
table.telegramChatId,
table.telegramThreadId,
table.messageSentAt
),
householdChatSentIdx: index('topic_messages_household_chat_sent_idx').on(
table.householdId,
table.telegramChatId,
table.messageSentAt
),
householdMessageUnique: uniqueIndex('topic_messages_household_tg_message_unique').on(
table.householdId,
table.telegramChatId,
table.telegramMessageId
),
householdUpdateUnique: uniqueIndex('topic_messages_household_tg_update_unique').on(
table.householdId,
table.telegramUpdateId
)
})
)
export const anonymousMessages = pgTable(
'anonymous_messages',
{
@@ -682,6 +724,7 @@ export type BillingCycleExchangeRate = typeof billingCycleExchangeRates.$inferSe
export type UtilityBill = typeof utilityBills.$inferSelect
export type PurchaseEntry = typeof purchaseEntries.$inferSelect
export type PurchaseMessage = typeof purchaseMessages.$inferSelect
export type TopicMessage = typeof topicMessages.$inferSelect
export type AnonymousMessage = typeof anonymousMessages.$inferSelect
export type PaymentConfirmation = typeof paymentConfirmations.$inferSelect
export type PaymentRecord = typeof paymentRecords.$inferSelect