You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
const prompt = `You are a helpful stream coordinator for Open Source Friday. Create a 2-3 sentence personalized welcome message for this guest:
82
-
83
-
Guest Name: ${guestName}
84
-
Project: ${projectName}
85
-
Project Repo: ${projectRepo}
86
-
Guest Background: ${guestBackground}
87
-
88
-
Write a warm, encouraging message that acknowledges their specific project and shows genuine excitement to have them on the stream. Keep it concise and authentic. Do not use markdown formatting or special characters. `;
78
+
const prompt = [
79
+
'You are a helpful stream coordinator for Open Source Friday.',
80
+
'Create a 2-3 sentence personalized welcome message for this guest:',
81
+
'',
82
+
'Guest Name: ' + guestName,
83
+
'Project: ' + projectName,
84
+
'Project Repo: ' + projectRepo,
85
+
'Guest Background: ' + guestBackground,
86
+
'',
87
+
'Write a warm, encouraging message that acknowledges their specific project.',
88
+
'Show genuine excitement to have them on the stream.',
89
+
'Keep it concise and authentic.',
90
+
'Do not use markdown formatting or special characters.'
91
+
]. join('\n');
89
92
90
93
let personalizedMessage = '';
91
94
let client;
@@ -106,48 +109,51 @@ Write a warm, encouraging message that acknowledges their specific project and s
personalizedMessage = 'We are thrilled to have ' + guestName + ' joining us to talk about ' + projectName + '! This is going to be a fantastic session. ';
0 commit comments