Begin process of getting text responses from an LLM.

This commit is contained in:
Eli Ribble 2026-01-26 20:29:04 +00:00
parent c276cbac0b
commit 6070d50a58
No known key found for this signature in database
18 changed files with 639 additions and 22 deletions

View file

@ -0,0 +1,17 @@
-- TextsBySenders
SELECT
id,
content,
created,
source,
destination,
is_welcome,
origin
FROM
comms.text_log
WHERE
(source = :src AND destination = :dst)
OR
(source = :dst AND destination = :src)
ORDER BY
created ASC;