ElonMask
Explore posts from serversCComposioHQ
•Created by sensitive-blue on 3/25/2025 in #🖥│support-forum
doubts reg `entityId`
I'm trying to use Google authentication along with the Google send-mail workflow.
For authentication, I followed the example and implemented the following:
I'm confused about the entityId concept. Should it be the email the user wants to sign in with, or should I generate a random UUID that maps to the email?
My main concerns are:
- If a user provides a Gmail ID but signs in with a different one, the wrong email gets linked.
- I need a unique
entityId
per email to avoid re-authenticating every time I send an email.
- If I use the same email but w.o the await entity.getConnection()
, will it create duplicate connections?
What's the best approach to ensure each email has a consistent entityId while preventing mismatches?2 replies
TTCTheo's Typesafe Cult
•Created by ElonMask on 4/3/2024 in #questions
ai prompting doubt
so i have this requirement to get the ai to reply to 3 of my questions.
eg:
"x is something.. 1. what is x, 2. where is x, 3. who is x"
and i want the ai to stream the data, and id be passing each of these values as props to a component.
obviously json wont work w. streaming. so i updated the query for the ai to include a delimiter like "||" after each qn.
so ijust split the string by the delimiter and pass the data. but often times it misses this, and the data appears mixed. any suggestions?
also often times it does the: "sure i can answer your question" kinda messages at the beginning, how do i get the ai to not yap?
would appreciate any actually useful prompt engineering guide/vids if u guys know. thanks
4 replies
TTCTheo's Typesafe Cult
•Created by ElonMask on 2/15/2024 in #questions
using prisma along with drizzle/kysley
Prob dumb, but would i face any issues if i use both prisma and kysley/drizzle in the same app. (I wont run out of connections or anything right?).
Also assuming single prisma schema would serve for both, cba to maintain multiple schemas.
(Reason is so that i can use vercel edge runtime)
13 replies
TTCTheo's Typesafe Cult
•Created by ElonMask on 11/18/2022 in #questions
planetscale-prisma issue
any prisma-planetscale users in here?
im trynna create a new db and populate the data. (its pretty long) - like 10k links long
but im getting a (i believe) timeout error from planetscales side. The code runs fine, im able to see like 200 - 300 entries, the data until the error occures.
heres the error message im getting
also ps, i didnt set any shadow db (cause of which i could do the migrate dev command), idk what that is, but it seemed to work when i created a single entry.
i tried doing the same task using postgres on railway, i ended up getting "too many clients error"
1 replies