sam
(Sam Saffron)
April 11, 2024, 1:49am
25
MarcP:
BTW, small bug (or not?): when u use a persona with a user set-up, the DM participants are: ai-model-bot, me and new-bot-user, strangely this caused the new-bot-user to respond with “Hey ai-model-bot”, instead of “Hey Marc” is ai-model-bot there for a reason?
Hmm this is a odd certainly something that we can fix. I wonder if the model is just confused cause we ship the user name in the prompt with the original question.
Opus seems to get this right…
AI Conversation with Claude-3-opus
sam : Hello!
SqlHelperBot : Hello! How can I assist you with querying the database today?
sam : what is my name?
SqlHelperBot : To find your name, we can query the users table like this:
To find your name, we can query the users table like this:
SELECT name
FROM users
WHERE username = 'sam'
This query selects the name column from the users table where the username is ‘sam’.
The key steps are:
Select the name column since that contains the user’s name
Filter the rows to only the one where username matches ‘sam’
Th...
Read full transcript
1 Like