Begin process of getting text responses from an LLM.
This commit is contained in:
parent
c276cbac0b
commit
6070d50a58
18 changed files with 639 additions and 22 deletions
17
tools/texts_by_senders.sql
Normal file
17
tools/texts_by_senders.sql
Normal 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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue